Viewing 15 posts - 916 through 930 (of 1,584 total)
Simply post the DDL into your reply, and if you want to get all fancy place it between the [ code ="sql"] INSERT TSQL HERE [/ code]
Of course remove the...
December 12, 2012 at 3:51 pm
I think the spid 51 might be the culprit - Can you temporarily comment out the code in the attached script? I mean, if this is the issue and...
December 12, 2012 at 8:55 am
While others may advise against it, I use a server side profile trace that runs continuously on the server (see to automatically start each time the MSSQL service is started)....
December 11, 2012 at 10:15 am
Does your SQL Agent's execution/proxy account differ from the CRM account? If so you may be able to determine the "caller" and use a CASE statement to bypass the...
December 11, 2012 at 10:09 am
What is running under spid 51?
December 11, 2012 at 9:54 am
That's actually good question...indirectly asking how well you know how things are set up within the SQL Agent - so what was your answer?
December 11, 2012 at 7:56 am
This isn't pretty but it works well - I just threw it into a Job running hourly
CREATE PROCEDURE [dbo].[utl_dba_CheckSQLJobsForErrors]
@notifyEmailGroup varchar(300) = 'dba_alerts@company.com'
AS /*
USED TO MONITOR MSDB...
December 10, 2012 at 4:09 pm
Sorry but it seems I misunderstood your initial request. I read (mis-read) that you were dealing solely with SharePoint data and thought you just needed advice using multiple data...
December 6, 2012 at 1:12 pm
If there's not many NCI's contributing to the overall size of the datafile, I wouldn't bother with it
December 6, 2012 at 10:47 am
100GB isn't really that large...but that being said, can you let us know what that space comprises of? Are there many non-clustered indexes? If there are, I'd recommend...
December 6, 2012 at 10:39 am
Chances are you can find your bad query by looking at the logical_reads, elapsed/worker_time, etc by using this:
SELECT
*
FROM
sys.dm_exec_query_stats qs
INNER JOIN sys.dm_exec_cached_plans cp
...
November 30, 2012 at 8:47 am
Great suggestions. Can I ask what version of SQL Server you are using? Depending on your version you may have the ability to compress your backups with SQL's...
November 30, 2012 at 7:57 am
+1 @craig-2 regarding "set delayValidation to True"
You will find this setting on nearly every control and I believe on the package level itself
November 29, 2012 at 5:45 pm
The backup was restored to the same server.
Let me rephrase: As long as you restored the database backup to a new database, or overwrote one that's not the actual production...
November 29, 2012 at 3:16 pm
Viewing 15 posts - 916 through 930 (of 1,584 total)