Viewing 15 posts - 106 through 120 (of 582 total)
sysjobservers must have been a view on MSDB tables. I can't be sure because I haven't got a SQL8 instance to hand. See what I mean about it being easier...
Tim Wilkinson
"If it doesn't work in practice, you're using the wrong theory"
- Immanuel Kant
If you literally want precisely every Nth row, then you would also need to do something similar to Ryan's suggestion if the table with the identity column has had deletions.
If you...
Tim Wilkinson
"If it doesn't work in practice, you're using the wrong theory"
- Immanuel Kant
You can get that info from poking around in MSDB.
But it might be easier and the code clearer just to have table which the monthly proc writes to, specifying the...
Tim Wilkinson
"If it doesn't work in practice, you're using the wrong theory"
- Immanuel Kant
You only need the nested inline views (derived tables) because you are using
(select 'A' as col1, 101 as col3
union all select 'B', 203
union all select 'C', 204
union...
Tim Wilkinson
"If it doesn't work in practice, you're using the wrong theory"
- Immanuel Kant
http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=8&messageid=291926
Tim Wilkinson
"If it doesn't work in practice, you're using the wrong theory"
- Immanuel Kant
A person might have an environment which contains new versions of a only a subset of the procedures required. Perhaps only the procs from a particular functional area of a db app exist...
Tim Wilkinson
"If it doesn't work in practice, you're using the wrong theory"
- Immanuel Kant
Viewing 15 posts - 106 through 120 (of 582 total)