Viewing 15 posts - 1 through 15 (of 19 total)
Restart is not required to turn off C2 auditing. To stop C2 audit tracing, set 'c2 audit mode' to 0.
-Regards
March 14, 2016 at 8:28 pm
To check if C2 Audit mode is enables, use the following query:
Select value
From sys.configurations
Where name='c2 audit mode';
GO
--Value '1' indicates C2 Audit mode is turned on and '0' indicates it's...
March 14, 2016 at 6:49 pm
It could be a Stored Procedure set to start running on SQL Server Startup. Try the following query to list all Stored Procedures set to start on SQL Start up.
Select...
March 14, 2016 at 3:55 pm
May be there is a Default Trace running already? To find out default Trace file location, please try the following script:
SELECT [value]
FROM sys.fn_trace_getinfo(NULL)
WHERE property = 2
If there is one...
February 22, 2016 at 6:47 pm
Increasing query time out may not help. A Trace should help you figure out what exactly causing the issue. Is it running a Stored Procedure?
-Regards
February 22, 2016 at 12:27 pm
"Select * from Tracing table" cause Table scan which in turn cause lock escalation leading to deadlock. Please see MS article on this with much more details and examples.
https://support.microsoft.com/en-us/kb/323630
SELECT...
February 20, 2016 at 12:12 am
See this article on Hypothetical indexes >> https://msdn.microsoft.com/en-us/library/ms190172(SQL.90).aspx
Use this query to list Hypothetical indexes:
SELECT *
FROM sys.indexes
WHERE is_hypothetical = 1
-Regards
February 19, 2016 at 2:41 pm
Have you tried YourMachineName\InstanceName on sqlcmd command on job step?
-Regards
February 12, 2016 at 11:45 am
There are couple of options you can try. Please check this out:
-Regards
February 11, 2016 at 10:21 pm
Not sure which version of SQL you are using. Please see if this KB article helps:
https://support.microsoft.com/en-us/kb/934396
A race condition is an undesirable situation that occurs when a device or...
February 11, 2016 at 5:52 pm
You may want to use a WHERE CURRENT OF clause with this. Please check this out: https://technet.microsoft.com/en-us/library/ms188713%28v=sql.105%29.aspx
Please see if that helps in what you are trying to achieve.
-Regards
February 11, 2016 at 5:07 pm
See if this is what you are looking for(Suggested by
Vishal.Gajjar): http://www.sqlservercentral.com/Forums/Topic1199718-266-1.aspx
-Regards
February 5, 2016 at 7:30 pm
You may need to use a specific Database Role for this requirement.
It could be worth trying this option suggested by Roi Gavish: http://dba.stackexchange.com/questions/21733/allow-user-to-do-anything-within-his-own-schema-but-not-create-or-drop-the-schem
I haven't tested it myself. Please let us...
February 3, 2016 at 7:05 am
You may want to use a Table variable.
See M.Ali's post >> http://stackoverflow.com/questions/21760969/multiple-rows-to-one-comma-separated-value
See if it helps.
-Regards,
February 1, 2016 at 5:46 pm
Please check this out: https://support.microsoft.com/en-us/kb/955726
This helped me some time ago.
Cause:
This problem may occur if the syspolicy_purge_history job uses the computer node name instead of the virtual server name for the...
January 31, 2016 at 8:45 pm
Viewing 15 posts - 1 through 15 (of 19 total)