Forum Replies Created

Viewing 15 posts - 46 through 60 (of 153 total)

  • RE: Error 22029

    Another possibility is that the account that runs the SQL Server process has no write permissions on that directory.

  • RE: Client Network Utility data storage

    It is in the registry:

    HKCU\HKEY_CURRENT_USER\Software\Microsoft\Microsoft SQL Server\80\Tools\SQLEW\Registered Servers X

    If you have a roaming profile you get the same servers on every machine.

    It is easiest to export from  current user, logged...

  • RE: SQL Server 2000 books online

    I tried it some time ago and Xandermo's suggestion will not work. I guess it needs some registry entries, probably HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft SQL Server\80\Tools\Help.

    I did not consider that practical and...

  • RE: enqueue locks

    Alpha3300's query will not work when you are waiting for a latch or anything else that is not a lock, as there is no blocking sid.

    You need:

    select spid, lastwaittype, waitresource...

  • RE: Strange T-SQL behaviour using Hungarian collation

    I tried it on SQLServer 2000 SP3, but can not reproduce it.

    Could it be that in your version SQLServer believes that in Hungarian Y is not the capital of y?

    ...

  • RE: Need help - Error: 823, Severity: 24, State: 11

    Have your or those "hardware people" looked at the OS.

    If Windows mixed up some files positions it might cause this error. A smaller file might remove the symtoms while...

  • RE: SQL 2000 LDF File Too Big

    A full backup does not decrease the logfile.

    A log backup creates empty room in the logfile, which it fills first before growing again.

    If you make no log backups set the...

  • RE: enterprise manager loses registrations

    I do not know about Enterprise Manager, but if the you change the password in the administrative tools or manage, password information on shares and some other stuff is lost...

  • RE: dead lock

    You have two transactions that lock each other. You can find out the processes by setting flag 1204. Check the books online on tips how to prevent...

  • RE: Newbie: NET STOP - Command Window Error

    On NT and Windows 2000 you can use start /wait. (On Windows 2003 that is the default.) It is meant for windows programs, not command line programs and I thought...

  • RE: Newbie: NET STOP - Command Window Error

    mstask.exe *is* the windows task scheduler. I am 100% sure.

    Apparently there is a schedule that runs runs "net stop mssqlserver"

    Every time this task runs you get another windows.

    (maybe...

  • RE: DBCC CHECKTABLE ERROR !!!

    This seems to be an index problem. Rebuild the index.

  • RE: Full Backup and Transaction log truncation

    Vambati, you are wrong. 😉

    As Nigel said, full backups and log backups are independent.

    If you do a full backup you get a backup of the database as it...

  • RE: Replay Profiler Trace Truncates Procedures

    I do not know if this is relevant, but you never know. I got the same error the first time using an sql script created by the profiler. ...

  • RE: Tracking Timeouts

    The timeout event mentions the spid. Look in the trace for the last statement from that spid.

Viewing 15 posts - 46 through 60 (of 153 total)