Viewing 15 posts - 286 through 300 (of 1,363 total)
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 required for...
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
dbcc updateusage with count_rows
sp_updatestats
Rebuild all indexes (individually)
DBCC for DATA_PURITY
Change page verification to CheckSum (from Torn page)
Create a new backup
Perform test by the application team(s)
MJ
October 8, 2009 at 7:54 pm
if there is a chaqnge in the table how will that be replicated?
Changes will be replicated based on the transactional replication schedule that you specified during configuration.
MJ
October 8, 2009 at 6:27 pm
Viewing 15 posts - 286 through 300 (of 1,363 total)