Viewing 15 posts - 121 through 135 (of 1,068 total)
What is the size of database files (.MDF, .NDF) and transaction log files (.LDF)?
Do you take transaction log backups regularly?
August 9, 2012 at 10:53 pm
1. Checkpoint writes dirty pages to disk. Not individual rows.
a. Did not understand the question. Eighter rollback or commit can happen. Not both.
2. When the server starts up next time,...
August 9, 2012 at 5:30 am
Just now I wrote this script. Please test it on test machine before running on production:
SET NOCOUNT ON
GO
EXEC sp_MSforeachdb 'USE [?]
select ''CREATE ROLE ['' + a.name + ''] AUTHORIZATION [''...
August 9, 2012 at 1:48 am
I have not come across script to transfer roles.
Others might pitch in
August 9, 2012 at 1:05 am
Right click on database ->Tasks -> Generate Scripts....
and select Database roles...
August 9, 2012 at 12:43 am
Please run this:
DBCC OPENTRAN()
SELECT name, log_reuse_wait_desc FROM sys.databases WHERE name = 'dbname'
August 9, 2012 at 12:37 am
You are running the wrong script (belongs to SQL 2000).
Get the right version for SQL 2005 from here http://support.microsoft.com/kb/918992
August 9, 2012 at 12:10 am
na1774 (8/8/2012)
August 9, 2012 at 12:03 am
Thanks Lavanya for sharing the solution.
Thanks Antony for leading to this solution.
August 6, 2012 at 9:14 am
SQLSACT (8/6/2012)
Is PFS, GAM, or SGAM pages only found in TempDB
No. All databases have PFS, GAM, or SGAM pages.
Also, will you only find Latch type Waits in TEMPDB?
No. Latch type...
August 6, 2012 at 6:04 am
No need to recreate the whole subscription.
You can also avoid reinitializing the subscription.
You need to identify the row in the subscriber and fix it.
August 6, 2012 at 5:28 am
anthony.green (8/6/2012)
August 6, 2012 at 5:13 am
Any weekend maintenance job like index rebuild?
August 6, 2012 at 3:09 am
Are you using UI or sp_attach_db?
Please post the query you are using.
August 6, 2012 at 12:41 am
Viewing 15 posts - 121 through 135 (of 1,068 total)