Viewing 15 posts - 1 through 15 (of 22 total)
I have DBCC in the maintenance plan.
Where the DBCC output message log file will be created?
June 19, 2013 at 2:51 pm
Log Ship will be insync once you follow steps.
I suggest, pl verify on test server for surity. We always do.
February 20, 2012 at 2:42 am
Jeffrey, Gila and Paul, Thanks for your response too.
RBarryYoung, Thanks for your response and article pointer.
Now it's clear to me that adding log file will not help. Will focussed...
February 22, 2010 at 4:04 am
Jeffery and Tim,
Thanks for your response.
Please note that
1. Log file is on it's own dedicated disk.
2....
February 19, 2010 at 9:49 pm
NO NEED TO BACKUP AND RESTORE FULL DATABASE. Differential will do...
1. FULL BACKUP;
2. Let One Log Backup and Restore on Secondary;
3. DISABLE Log BACKUP (DO NOT STOP LOG SHIPPING, DO...
August 7, 2009 at 6:30 am
Thanks GURSETHI.
It works for Windows Account.
In my case I want to make it work for SQL Server Account. I mean SQL Authentication.
June 1, 2009 at 6:25 am
Follow these steps:
a. Click Start, and then click Run.
b. In the Run dialog box, type dcomcnfg.exe, and then click OK.
c. In the Component Services window, expand...
January 28, 2009 at 9:35 am
Enable Distributed COM on this Computer
January 28, 2009 at 9:32 am
Gail,
This is weekly maintenance plan and we run both DBCC command in the same job.
What do you suggest to run first? CHECKDB OR REINDEX?
September 17, 2008 at 6:50 am
For each table in the database, DBCC CHECKDB checks that:
Index and data pages are correctly linked.
Indexes are in their proper sort order.
So order can be DBCC Checkdb and DBCC...
September 17, 2008 at 12:28 am
RBarryYoung and Gail,
I got it 100 percent..... It's clear now.....:hehe:
Thanks
August 15, 2008 at 2:29 am
Gail,
Try Following:
USE MASTER
GO
CREATE PROCEDURE sp_ABC AS
print 'IS FROM Master DB'
GO
USE pubs
GO
CREATE PROCEDURE sp_ABC AS
print 'IS FROM Pubs DB'
GO
USE master
go
EXEC sp_ABC
go
USE pubs
go
EXEC sp_ABC
go
See the Output running from pubs database. My question...
August 14, 2008 at 11:17 am
Thanks and sorry for not reading your original post completely.
August 14, 2008 at 7:17 am
Check the time and reads of the seek and the time and reads for the clustered scan.
When it's doing clustered scan How can we check the time and reads of...
August 14, 2008 at 6:47 am
I agree with most of the respondent regarding Auto Update Statistics ON but I did not see any good reason to keep Auto Create Statistics ON on Production database.
Why we...
August 8, 2008 at 3:03 am
Viewing 15 posts - 1 through 15 (of 22 total)