Forum Replies Created

Viewing 4 posts - 1 through 4 (of 4 total)

  • RE: Sql server Notification

    You may want to find a different way to meet your goals. Microsoft is discontinuing Notification Services in SQL Server 2008, so if you're just now planning to start...

  • RE: Who started the job?

    The easiest way is to look at the job history in Management Studio, it's the last line of the "selected row details:" section. Or you can see it by...

  • RE: Updating Statistics

    The answer depends on how the database is set up, check if the following query returns 1 for is_auto_update_stats_on or is_auto_update_stats_async_on:

    [font="Courier New"]select name, database_id, is_auto_update_stats_on, is_auto_update_stats_async_on

    from master.sys.databases[/font]

    When auto...

  • RE: How to use stored procedure instead of cursors?

    At the most basic level, there are 2 types of queries in a SQL Server stored procedure. There are ones that set the value of a variable such as:

    SELECT...

Viewing 4 posts - 1 through 4 (of 4 total)