Forum Replies Created

Viewing 15 posts - 46 through 60 (of 170 total)

  • RE: Alerts not firing

    Forgot to confirm that this was resolved by the article mentioned previously:-

    http://blogs.msdn.com/b/psssql/archive/2009/03/03/troubleshooting-sql-server-2005-2008-performance-counter-collection-problems.aspx

  • RE: Alerts not firing

    Currently: internal politics over the way in which patches are tested and applied. Personally I want them applied because there are a few other bugs that I know get...

  • RE: Alerts not firing

    I'm aware that it's an old version; however both servers are identical in terms of patching at the OS and SQL level, so I don't believe upgrading will cure at...

  • RE: Alerts not firing

    Both are fairly old versions; but I don't think it's a version issue as both servers are running the same: 10.50.1600.

    It used to work on one and now doesn't; and...

  • RE: Alerts not firing

    sqlbuddy123 (3/27/2014)


    Matthew Darwin (3/20/2014)

    The alert has been working before, checking the history it last fired in January and notifications were sent.

    I was thinking about alert notifications. How are you using...

  • RE: Alerts not firing

    You don't need an operator set to trigger an alert.

    I have a test alert set as follows:-

    EXEC msdb.dbo.sp_add_alert @name=N'Test Alerts',

    @message_id=0,

    @severity=16,

    @enabled=1,

    @delay_between_responses=0,

    @include_event_description_in=0,

    @event_description_keyword=N'Test Alert Error',

    @category_name=N'[Uncategorized]',

    @job_id=N'00000000-0000-0000-0000-000000000000'

    GO

    I...

  • RE: Tempdb IO Errors

    I've only ever received that error once and it was entirely to do with the disk controllers on the server.

    Have you checked the windows os logs to see if any...

  • RE: recovering space from the Primary database file?

    Shrinking a file is the only way you will regain the space that file is using.

    After shrinking, be sure to rebuild your indexes on that file as they will most...

  • RE: Alerts not firing

    I tried this, but no definitely nothing to do with the log shipping configuration. It seems far more to be to do with alerts in general; I know this...

  • RE: Alerts not firing

    These are configured.

    To be clear; the alert is not firing, not that emails aren't being sent. The alert was previously working. The only change I've made since the last time...

  • RE: Alerts not firing

    The alert is the stock one created when configuring log shipping as follows:-

    EXEC msdb.dbo.sp_add_alert @name=N'Log shipping Primary Server Alert.',

    @message_id=14420,

    @severity=0,

    @enabled=1,

    @delay_between_responses=0,

    @include_event_description_in=1,

    @category_name=N'[Uncategorized]',

    @job_id=N'00000000-0000-0000-0000-000000000000'

    The job successfully raises the...

  • RE: Old records in suspect_pages

    OK cool; well there was only a handful of rows in the table, so the cap won't have been hit. The check at the end of the maintenance task...

  • RE: Distribution Agent reports the transactional replication latency incorrectly

    Hm, ok well in that case, the work around really doesn't make any sense, because it requires having two alerts set up for the same error?

    "When the second alert...

  • RE: Log Shipping Alerts not sending email to operator

    Doh, found the problem; I hadn't set up the SQL Server Agent on that server to send emails. I knew it would be something simple!

  • RE: MERGE statement - WHEN NOT MATCHED DELETE takes ages

    Can you post your DDL also?

Viewing 15 posts - 46 through 60 (of 170 total)