Viewing 15 posts - 181 through 195 (of 382 total)
Alter the job to write the error to a file and see if it gives you any more details. You can also check the windows event log to see...
February 16, 2010 at 11:27 am
The only reason I have found to restore a system database was for a mass restore. If you a complete failure of you old system and you are moving...
February 16, 2010 at 11:25 am
There are jobs in SSIS that can be used to transfer logins, jobs, etc from one instance to another. I have never done them personally, but I do know...
February 15, 2010 at 7:21 pm
Well can't give you the code exactly, but here is what my .NET programmer gave me. Said anyone who knows something about SMO should be able to adjust correctly to...
January 27, 2010 at 9:14 am
Anam Verma (1/26/2010)
Fraggle-805517 (1/26/2010)
January 27, 2010 at 5:17 am
Gail,
Thank you very much. That is what I needed to know.
Fraggle
January 27, 2010 at 5:13 am
Will have to get back with you on that once I talk with the programmer as I personally know more about women than I do SMO.
Fraggle
January 26, 2010 at 9:33 pm
A job is the easiest way to do it, but not the only way. You could setup a service broker queue to run the proc every night at the...
January 26, 2010 at 9:30 pm
You are correct there.
However, I am still curious to know the answer to the question. I would rather have the 15 GB database on the server and...
January 26, 2010 at 9:26 pm
It can be done easily through SMO. We actually have an in house process that will go through and encrypt or decrypt and entire database of procs,triggers, and functions....
January 26, 2010 at 9:20 pm
Definite Congratz to that man. His book on executions plans made me look like a hero at work for take a query down from 3 hours to 15 minutes....
January 26, 2010 at 9:15 pm
I could be wrong on this, but the issue might not be the indexes, but the statistics. If you statistics start to get out of date, then it is...
January 26, 2010 at 9:13 pm
Any reason you don't use say
declare @MaxRecieveDate datetime
select @maxRecievedDate = max(recieveDate)
from table
where col1 = 123
By doing this you set the maxRecieveDate to the variable @MaxRecieveDate. Now you can...
January 26, 2010 at 9:02 pm
peterhe (10/30/2009)
Double chekced, The bug I mentioned is fixed in SQL SERVER 2005 SP3. You may want to apply SP3 and try again
I will give that a shot this weekend...
October 30, 2009 at 2:42 pm
Viewing 15 posts - 181 through 195 (of 382 total)