Forum Replies Created

Viewing 15 posts - 916 through 930 (of 1,583 total)

  • RE: Minidump getting created on every minute 2008 Standard Edition

    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...

    ______________________________________________________________________________Never argue with an idiot; Theyll drag you down to their level and beat you with experience

  • RE: Dynamic SQL

    @sean-2...THAT's AWESOME 😀

    ______________________________________________________________________________Never argue with an idiot; Theyll drag you down to their level and beat you with experience

  • RE: Analyzing Performance

    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)....

    ______________________________________________________________________________Never argue with an idiot; Theyll drag you down to their level and beat you with experience

  • RE: Don't fire trigger from within a certain stored procedure

    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...

    ______________________________________________________________________________Never argue with an idiot; Theyll drag you down to their level and beat you with experience

  • RE: Minidump getting created on every minute 2008 Standard Edition

    What is running under spid 51?

    ______________________________________________________________________________Never argue with an idiot; Theyll drag you down to their level and beat you with experience

  • RE: I was asked in a interview

    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?

    ______________________________________________________________________________Never argue with an idiot; Theyll drag you down to their level and beat you with experience

  • RE: SQL PROCEDURE TO FIND THE LIST OF JOB FAILURES FOR CURRENT HOUR

    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...

    ______________________________________________________________________________Never argue with an idiot; Theyll drag you down to their level and beat you with experience

  • RE: Rebalancing data from a single file to multi-file setup

    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...

    ______________________________________________________________________________Never argue with an idiot; Theyll drag you down to their level and beat you with experience

  • RE: Rebalancing data from a single file to multi-file setup

    If there's not many NCI's contributing to the overall size of the datafile, I wouldn't bother with it

    ______________________________________________________________________________Never argue with an idiot; Theyll drag you down to their level and beat you with experience

  • RE: Rebalancing data from a single file to multi-file setup

    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...

    ______________________________________________________________________________Never argue with an idiot; Theyll drag you down to their level and beat you with experience

  • RE: identify last big query that ran

    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

    ...

    ______________________________________________________________________________Never argue with an idiot; Theyll drag you down to their level and beat you with experience

  • RE: Backing Up A 2TB Database

    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...

    ______________________________________________________________________________Never argue with an idiot; Theyll drag you down to their level and beat you with experience

  • RE: SSIS oddness

    +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

    ______________________________________________________________________________Never argue with an idiot; Theyll drag you down to their level and beat you with experience

  • RE: restore to new db and DIFF backups

    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...

    ______________________________________________________________________________Never argue with an idiot; Theyll drag you down to their level and beat you with experience

  • RE: restore to new db and DIFF backups

    Restoring a backup to a different server has no impact whatsoever on the original server the backup was created from. Are you using a maintenance plan per say or...

    ______________________________________________________________________________Never argue with an idiot; Theyll drag you down to their level and beat you with experience

Viewing 15 posts - 916 through 930 (of 1,583 total)