Viewing 15 posts - 31 through 45 (of 98 total)
SELECT o.NAME, ps.execution_count FROM sys.dm_exec_procedure_stats ps
INNER JOIN sys.objects o ON ps.object_id = o.object_id
WHERE o.name = 'sprocname'
March 19, 2013 at 9:22 am
Last question
7. If the setup becomes synchronous and it still fires from the trigger does it have to complete the full cycle ie converstaion needs to completely finish before the...
March 19, 2013 at 8:34 am
5.How to write asynchronous SSSB so it doesn’t affect tempdb.
6 How to change to Synchronous SSSB, without performance issues.
March 19, 2013 at 8:27 am
Base table captures NTuser name (domain name). Never captures sa. 'sa is a red herring from the previous post.
March 15, 2013 at 7:06 am
Ok if the base table captures the user who made the changes and the time, is CDC a suitable vehicle to be used for auditing.
March 15, 2013 at 5:44 am
Thanks. Not using sa from the APP. Only when I update via SSMS it captures as sa.
March 14, 2013 at 1:46 pm
Thanks, thats a new one for me. Is there anywhere which has a list of all these things in T-SQl that can cause scans.
March 13, 2013 at 6:53 am
Great article with a solution.
Dymanic SQL thats not open to vunerability.
March 12, 2013 at 10:19 am
OVER AND OUT. THAT EXPLAINS IT FULLY.
THANKS
March 12, 2013 at 10:11 am
In my db there are many sprocs which can be filtered by the parameter. Which is not good new for me.
There will be 1 parameter for each column. so the...
March 12, 2013 at 7:43 am
I would do everything Stuart has said. But in addition you need to find out how much data loss is acceptable for the db (IN WRITING). I wouldn't change any...
March 7, 2013 at 1:57 am
Google is your friend!! Google is a friend of evrey DBA.
http://www.mssqltips.com/sqlservertip/2573/monitor-sql-server-alwayson-availability-groups/
March 6, 2013 at 6:37 am
The whole db is one massive problem, no it's not but it annoys me and I'm trying to make improvements where I see fit.
Once I tighten up the top 30...
February 27, 2013 at 8:43 am
Thanks,
On a slightly different note. My DB suffers from serious Lookups. The only way I know to improve this is to see if I can consolidate the included columns...
February 27, 2013 at 8:28 am
Viewing 15 posts - 31 through 45 (of 98 total)