Viewing 5 posts - 1 through 5 (of 5 total)
Great code, thanks!
I would also propose creating a view for this instead of a proc. It fits in with the DMVs provided by SQL and allows for easier joining...
October 28, 2008 at 4:28 pm
How have you determined if you need redundancy in the past? Based on a user requirement for allowable downtime?
August 21, 2008 at 11:41 am
You can do it using the row_number() function if you are using SQL 2005 or 2008
this selects all odd records
;WITH ODD
AS
(SELECT ROW_NUMBER() OVER( ORDER BY NAME) AS Num
FROM MASTER.dbo.spt_values ...
August 21, 2008 at 9:52 am
Ok so considering the fact that I have 6 disks to work with and a heavy write work load what would you recommend?
August 21, 2008 at 9:32 am
My sql agent account is a local windows account and I would like to keep it as such. How do I assign the job to that windows account? ...
July 17, 2008 at 9:26 am
Viewing 5 posts - 1 through 5 (of 5 total)