Viewing 15 posts - 17,371 through 17,385 (of 26,489 total)
jcrawf02 (1/19/2010)
(which she totally doesn't get - "I thought you were a computer guy...." etc)
I get this one at home myself all the time... 😛
January 19, 2010 at 11:56 am
scott williams-465021 (1/19/2010)
" The operating system returned error 21 (The device is not ready.) to sql server during a read at...
January 19, 2010 at 11:29 am
Following on with PaulB, was the database using FULL or BULK_LOGGED model?
If so, were you able to complete a tail-log backup?
If so, you may need to try 1) Restarting SQL...
January 19, 2010 at 11:23 am
Ramji29 (1/19/2010)
USE master
EXEC sp_configure 'show advanced option', '1'
go
RECONFIGURE WITH OVERRIDE
go
EXEC sp_configure 'allow updates', '1'
go
RECONFIGURE WITH OVERRIDE
go
--Now update the table u wanna update
begin tran
update master.sys.sysdatabases set status = 16 where...
January 19, 2010 at 11:17 am
Oh, there is a way to update the system tables in SQL Server 2005, here's how. Let us know if it works for you. No warning about NOT...
January 19, 2010 at 10:59 am
Best suggestion, tail-log backup, then restore the database.
January 19, 2010 at 10:53 am
I have to question updating the system tables to begin with. This isn't something that should be done without a lot of thought and testing. The fact that...
January 19, 2010 at 10:50 am
It would help to see all the code, not just a snippet. Based on the snippet alone, hard to say as there are variables being used in the INSERT...
January 19, 2010 at 10:45 am
First, and most importantly, do you have current backups? Was the log file on the same drive? If not, you may want to do a tail log backup....
January 19, 2010 at 10:42 am
Who decides what is right (or better, when it is right), the developer or the client/stakeholder/user?
January 19, 2010 at 9:31 am
How many XML indexes can you have on a table with no XML columns?
To be honest, when asked about number of indexes, unless specifically asked about FTI and XML indexes,...
January 19, 2010 at 9:14 am
I can't really figure out what you want. Please take your sample data and show me what the correct output would be. Also, include any additional info based...
January 19, 2010 at 8:57 am
amitabhssinha (1/19/2010)
I have a table with DateTime field with millions of record. Now I want to retrieve records based on search criteria of DateTime field.
I have...
January 19, 2010 at 8:54 am
Viewing 15 posts - 17,371 through 17,385 (of 26,489 total)