Windows Vista Tips

Windows Vista Tips > Newsgroups > Windows Update > can not write or read to datadase

Reply
Thread Tools Display Modes

can not write or read to datadase

 
 
Robert Baker
Guest
Posts: n/a

 
      10-04-2004
When installing SP2, I get an error that says can not read or write to
database. After I get the NT access server not available error report
 
Reply With Quote
 
 
 
 
Carey Frisch [MVP]
Guest
Posts: n/a

 
      10-04-2004
Troubleshooting Windows XP Service Pack 2
http://www.michna.com/kb/WxSP2.htm#C...Service_Pack_2

--
Carey Frisch
Microsoft MVP
Windows XP - Shell/User

Be Smart! Protect Your PC!
http://www.microsoft.com/athome/secu...t/default.aspx

-------------------------------------------------------------------------------

"Robert Baker" wrote:

| When installing SP2, I get an error that says can not read or write to
| database. After I get the NT access server not available error report
 
Reply With Quote
 
Robert Baker
Guest
Posts: n/a

 
      10-04-2004
says the article I am looking for is not available

"Carey Frisch [MVP]" wrote:

> Troubleshooting Windows XP Service Pack 2
> http://www.michna.com/kb/WxSP2.htm#C...Service_Pack_2
>
> --
> Carey Frisch
> Microsoft MVP
> Windows XP - Shell/User
>
> Be Smart! Protect Your PC!
> http://www.microsoft.com/athome/secu...t/default.aspx
>
> -------------------------------------------------------------------------------
>
> "Robert Baker" wrote:
>
> | When installing SP2, I get an error that says can not read or write to
> | database. After I get the NT access server not available error report
>

 
Reply With Quote
 
Robert Baker
Guest
Posts: n/a

 
      10-04-2004
I searched through the articles and did not find anything that specifically
said "Can not read or write to database".


"Carey Frisch [MVP]" wrote:

> Troubleshooting Windows XP Service Pack 2
> http://www.michna.com/kb/WxSP2.htm#C...Service_Pack_2
>
> --
> Carey Frisch
> Microsoft MVP
> Windows XP - Shell/User
>
> Be Smart! Protect Your PC!
> http://www.microsoft.com/athome/secu...t/default.aspx
>
> -------------------------------------------------------------------------------
>
> "Robert Baker" wrote:
>
> | When installing SP2, I get an error that says can not read or write to
> | database. After I get the NT access server not available error report
>

 
Reply With Quote
 
Robert Baker
Guest
Posts: n/a

 
      10-11-2004
Got the batch file from another posting and it worked great. I now have SP2
with no problems. Just did as this posting said;
Try this:

Place the text below in a .bat (batch) file (e.g. paste it into a new
notepad document and save it with e.g. the name fixdb.bat)

Then run the batch file by double clicking on it.

You should run the batch file just after a reboot of the computer (as
the first thing).

The batch file will tell you when it is finished.

Please post any result back here, good or bad :-)

Start batch file:
--------------------8<----------------------

@echo off
:: Batch file that tries to remedy error # 800710D9
:: "Unable to read from or write to the database".
:: Author: Torgeir Bakken
:: Date: 2004-08-30

:: Stop the Cryptographic service
%SystemRoot%\System32\net.exe stop CryptSvc

:: Rename all log files in the %SystemRoot%\Security folder
FOR %%a in (%SystemRoot%\Security\*.log) DO move /y %%a %%a.old

:: Rename the %SystemRoot%\System32\CatRoot2 folder
move /y %SystemRoot%\System32\CatRoot2 %SystemRoot%\System32\CatRoot2old

IF not exist %SystemRoot%\System32\CatRoot2 GOTO CONT01

:: In case the folder rename failed because of locked files
:: rename all log files in the %SystemRoot%\System32\CatRoot2 folder
FOR %%a in (%SystemRoot%\System32\CatRoot2\*.log) DO move /y %%a %%a.old
SET catroot2locked=True

:CONT01
cls
echo.
echo Please wait, this might take some time...

:: Unregister DLL files that are associated with Cryptographic Services
CD /D %SystemRoot%\System32
start /wait regsvr32.exe /s /u softpub.dll
start /wait regsvr32.exe /s /u wintrust.dll
start /wait regsvr32.exe /s /u initpki.dll
start /wait regsvr32.exe /s /u dssenh.dll
start /wait regsvr32.exe /s /u rsaenh.dll
start /wait regsvr32.exe /s /u gpkcsp.dll
start /wait regsvr32.exe /s /u sccbase.dll
start /wait regsvr32.exe /s /u slbcsp.dll
start /wait regsvr32.exe /s /u cryptdlg.dll

:: Reregister DLL files that are associated with Cryptographic Services
start /wait regsvr32.exe /s softpub.dll
start /wait regsvr32.exe /s wintrust.dll
start /wait regsvr32.exe /s initpki.dll
start /wait regsvr32.exe /s dssenh.dll
start /wait regsvr32.exe /s rsaenh.dll
start /wait regsvr32.exe /s gpkcsp.dll
start /wait regsvr32.exe /s sccbase.dll
start /wait regsvr32.exe /s slbcsp.dll
start /wait regsvr32.exe /s cryptdlg.dll

:: Configure and start the Cryptographic service
%SystemRoot%\system32\sc.exe config CryptSvc start= auto
:: Start the Cryptographic Service
%SystemRoot%\system32\net.exe start CryptSvc
cls

echo.
If "%catroot2locked%"=="True" GOTO CONT02
echo Finished, please reboot the computer and then try to install SP2 again...

GOTO END
:CONT02
echo Please run the batch file again with a newly restarted computer...
echo (but if it is newly restarted, just do a reboot and then try
echo to install SP2 again)...
GOTO END

:END
echo.
pause

--------------------8<----------------------

"Carey Frisch [MVP]" wrote:

> *** Error 0x800710D9 Unable to read from or write to the database ***
> The quickest and most thorough way to solve this problem is a batch file, written
>
> by fellow MVP Torgeir Bakken from Norway. Reboot the computer and, before
>
> running any other program, run the batch file. It will tell you when it is finished.
>
> Here it is: fixdb.bat
>
>
> Welcome to "Microsoft Windows XP Service Pack 2 (SP2) Chat".
> You can get no charge Windows XP SP2 support here:
> http://support.microsoft.com/default.aspx?pr=Wxpsp2chat
>
> --
> Carey Frisch
> Microsoft MVP
> Windows XP - Shell/User
>
> Be Smart! Protect Your PC!
> http://www.microsoft.com/athome/secu...t/default.aspx
>
> ------------------------------------------------------------------------------------
>
>
> "Robert Baker" wrote:
>
> | I searched through the articles and did not find anything that specifically
> | said "Can not read or write to database"

 
Reply With Quote
 
 
 
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Re: How to: Dual use USB drive ---> Read/Write from Computer and Read from "Stand Alone DVD Player" Richard G. Harper Windows Vista General Discussion 2 11-08-2008 10:29 AM
Re: How to: Dual use USB drive ---> Read/Write from Computer and Read from "Stand Alone DVD Player" telwat Windows Vista General Discussion 0 11-07-2008 09:36 PM
read-only contacts unwilling to switch to read-write rhett.mtg@gmail.com Windows Vista Mail 1 12-15-2007 07:23 PM
DVD read/write errors Count Windows Vista Hardware 0 10-24-2007 05:26 PM
how can I read and write data to DVD+/-RW in C++ under win 2k and zhanglr Windows Vista Drivers 0 04-26-2007 09:08 PM



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59