Viewing 15 posts - 286 through 300 (of 1,364 total)
Try to make use of message column in sysjobhistory if its capturing the warning info there.
MJ
October 15, 2009 at 4:38 pm
You need to create file named file1_error.txt under C drive before you run your code.
MJ
October 15, 2009 at 2:51 pm
Then rename that daily backup file from DBNAME_mmddyyyy.BAK to mydb.bak prior to copy step using ren command.
MJ
October 15, 2009 at 2:23 pm
Check whether disk io subsystem is busy whenever u get the alert. In case its not then increase the threshold.
Mj
October 15, 2009 at 2:08 pm
Run the same statements after running dbcc updateusage with count_rows on the 2000 database and compare them.
MJ
October 14, 2009 at 7:12 pm
Try the following:-
EXEC master.dbo.sp_serveroption @server=N'test', @optname=N'collation compatible', @optvalue=N'TRUE'
GO
HTH!
Manu
October 12, 2009 at 12:45 am
For user database read -->http://www.sqlservercentral.com/Forums/Topic800427-146-1.aspx
MJ
October 9, 2009 at 10:26 pm
SELECT *
FROM
INFORMATION_SCHEMA.COLUMNS
WHERE
COLUMNPROPERTY -- get columns where is_identity = 1
(
...
October 9, 2009 at 9:35 pm
Overview of memory dump file options for Windows Vista, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows XP, and Windows 2000
http://support.microsoft.com/kb/254649
Normally 1.5 times rule is...
October 9, 2009 at 7:44 pm
Tiggers can be disabled in 2000.
ALTER TABLE tablename DISABLE TRIGGER triggername.
MJ
October 9, 2009 at 7:12 pm
Under SSMS he can't unless he is a member of sysadmin server role.
MJ
October 8, 2009 at 8:07 pm
MJM,
Your script give error on 2005 SP2.
Msg 207, Level 16, State 1, Line 32
Invalid column name 'is_sparse'.
Msg 207, Level 16, State 1, Line 33
Invalid column name 'is_column_set'.
MJ
October 8, 2009 at 8:02 pm
Viewing 15 posts - 286 through 300 (of 1,364 total)