Viewing 4 posts - 1 through 4 (of 4 total)
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...
August 6, 2008 at 4:11 pm
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...
August 6, 2008 at 3:45 pm
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...
August 6, 2008 at 11:02 am
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...
August 6, 2008 at 9:58 am
Viewing 4 posts - 1 through 4 (of 4 total)