Viewing 15 posts - 17,371 through 17,385 (of 26,484 total)
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
Try this:
ROUND(Col1 * Col2, 8)
January 19, 2010 at 8:39 am
Krasavita (1/19/2010)
I created store procedure:
BEGIN
SET ROWCOUNT 1000000;
...
January 19, 2010 at 7:17 am
itsmeman (1/18/2010)
January 18, 2010 at 6:59 pm
Viewing 15 posts - 17,371 through 17,385 (of 26,484 total)