Viewing 15 posts - 616 through 630 (of 1,366 total)
Thanks Gail,
Can you please help me in understanding the difference? or docs or link is highly appreciated.
January 31, 2013 at 6:04 am
It is recommended to leave the system drive ,so in your case place your .mdf & .ldf files in D drive.
January 31, 2013 at 3:15 am
Thanks alot Anthony..
Those details really helps in understanding exactly what happens..
Thanks Again
January 31, 2013 at 3:13 am
Thanks Antony for the quick reply.
Is that the only advantage?
January 31, 2013 at 3:03 am
Try DBCC MEMORYSTATUS
January 31, 2013 at 1:28 am
Above script is for database User.
Below script will give you create script of all Logins
use master
DECLARE @login_name sysname
SET @login_name = null
DECLARE @name sysname
DECLARE @type varchar (1)
DECLARE @hasaccess int
DECLARE @denylogin...
January 30, 2013 at 5:39 am
Please try the below script. This will script for object access and roles,downside is u need to specify individual user name each time.
DECLARE @DatabaseUserName [sysname]
SET @DatabaseUserName = 'dbo'
SET NOCOUNT ON
DECLARE
@errStatement...
January 30, 2013 at 5:23 am
Where and which file you are trying to open??
try below tsql
SELECT * FROM fn_get_audit_file('D:\Microsoft SQL Server\*.sqlaudit',DEFAULT,default)
January 29, 2013 at 3:36 am
Yes Gail I have go through the link you provided.
Mine is SQL Server 2008 R2 SP1 & CU3 and in that post its mentioned like fix for this issue was...
January 29, 2013 at 2:51 am
SNAPSHOT CREATION FAILED WITH BELOW ERROR
--------------------------------------------------------
Msg 2601, Level 14, State 1, Procedure sp_flush_commit_table, Line 15
Cannot insert duplicate key row in object 'sys.syscommittab' with unique index 'si_xdes_id'. The duplicate key value...
January 29, 2013 at 2:30 am
Thanks for the quick reply,
Can you please provide the contact details?
January 28, 2013 at 8:33 am
Viewing 15 posts - 616 through 630 (of 1,366 total)