Viewing 15 posts - 346 through 360 (of 388 total)
This will probably be heresy so up front I will apologise to Gail,
but,
what I did was select the proc stats from dm_exec_procedure_stats and order by total logical reads descending.
THEN
Copy...
August 5, 2014 at 7:29 am
For anyone googling, the solution is that SSRS does not explicitly set the arithabort option.
It will inherit whatever is set at the DB level.
In my case, the DB's have...
July 29, 2014 at 3:16 am
When you say 'update' do you mean rebuild or reorganize or is there a fragmentation level that your maintenance plan uses to decide whether to rebuild or reorganize.
If you are...
July 25, 2014 at 3:48 am
Add an unnecessary sort.
That should make the index seek use proportionately less cost of the entire query.
But, why would you want to?
July 24, 2014 at 4:37 pm
The log only grows from failure of the log backups. It won't grow due to failed differentials
So Diff's don't worry me too much.
A failed backup is of course top priority...
December 23, 2013 at 2:19 pm
Thanks for the ideas.
We had an issue recently where a backup did not actually fail but was stuck for an extended period so the job did not complete and hence...
December 23, 2013 at 2:23 am
Looking at the example, it looks like it should run that subquery iteratively.
Looks like maybe this is a prime example for APPLY?
But an alias is being referenced (RT) which has...
September 18, 2013 at 1:42 pm
This seems to work well.
;WITH XMLNAMESPACES ('www.microsoft.com/SqlServer/Dts' AS pNS1,
'www.microsoft.com/SqlServer/Dts' AS DTS) -- declare XML namespaces
SELECT c.name,
SSIS_XML.value('./pNS1:Property[@pNS1:Name="ObjectName"][1]',
'varchar(100)') AS ObjectName,
SSIS_XML.value('./pNS1:Property[@pNS1:Name="Description"][1]',...
October 4, 2012 at 4:00 am
For anyone looking for this type of solution, this will check up to 10 levels of separation, and also return the number of jumps to get to the base object.
Of...
May 29, 2012 at 1:19 am
Thanks Anthony.
The issue was that my fetch next was outside the loop.
So my initial diagnosis that I was cross eyed was true.
May 28, 2012 at 6:57 am
Will a rebuild also update stats with fullscan or will it do sampling?
Currently I'm thinking of changing the job to do a reorganise daily based on fragmentation and an indiscriminant...
May 22, 2012 at 6:08 am
SQL services lock files
May 4, 2012 at 6:52 am
We have a screen which displays all records relevant to a particulart screen.
We also only show records where the status = 1.
The DB has never been archived so I tried...
April 2, 2012 at 11:56 am
GilaMonster (3/8/2012)
March 8, 2012 at 9:39 pm
Viewing 15 posts - 346 through 360 (of 388 total)