Viewing 15 posts - 106 through 120 (of 140 total)
I was a professional photographer and now I'm a DBA. Went back to school in the 80's and changed professions.
I, too, ride a bike, but mine is the kind you...
June 5, 2008 at 10:24 am
I don't think we'd skip a version. I just don't see how we can upgrade every 3 years with our current level of staffing. We would always wait several months...
May 12, 2008 at 8:45 am
There's no way that a shop such as ours with several dozen different dbs and apps and only 3 DBAs can perform upgrades every 3 years. We still have a...
May 12, 2008 at 8:05 am
You can create a new Operator that consists of multiple email addresses seperated by semi-colons, and then use that for notifications.
Or you can use:
sp_send_dbmail
...
February 6, 2008 at 7:05 am
Paul Randal (1/28/2008)
RML51 (1/10/2008)
Please remember that INDEXDEFRAG will be deprecated. Try using DBREINDEX or ALTER INDEX REORGANIZE.
DBREINDEX is also deprecated and doesn't run the indexdefrag algorithm - it does offline...
January 29, 2008 at 6:19 am
Errors...
Msg 156, Level 15, State 1, Line 36
Incorrect syntax near the keyword 'FETCH'.
Msg 156, Level 15, State 1, Line 43
Incorrect syntax near the keyword 'DEALLOCATE'.
Msg 156, Level 15, State 1,...
January 25, 2008 at 6:53 am
Please remember that INDEXDEFRAG will be deprecated. Try using DBREINDEX or ALTER INDEX REORGANIZE.
January 10, 2008 at 7:25 am
We did this exact thing in September. I would advise you to rebuild your indexes and update your statistics after you move your dbs to the new SQL2005/64bit instance.
Also, we...
December 5, 2007 at 7:40 am
You may be able to use something like the the following, too.
BULK INSERT NorthWind.dbo.[table_name]
FROM 'C:\InputFile.csv'
WITH (FieldTerminator = ',',
FirstRow = 2) -- Use if csv file has...
November 29, 2006 at 12:03 pm
I have used NW to do some testing in our prod environments. For example, I wanted to test latency across replicated servers, so I first set up my scripts and jobs, and debugged it using NW....
June 27, 2006 at 11:49 am
We have pub and northwind. That's why I used "dbid>6".
June 27, 2006 at 11:21 am
You could try replacing the "sid>1" with "dbid>6". I think that works, too.
June 27, 2006 at 10:07 am
Thanks to you all. This worked exactly as needed.
May 24, 2006 at 6:53 am
Viewing 15 posts - 106 through 120 (of 140 total)