Viewing 15 posts - 61 through 75 (of 87 total)
OPENROWSET is an option.
October 10, 2012 at 6:22 am
whats the schema for closedJobSums?
October 4, 2012 at 1:04 pm
OK, I misread your question - I have a server side trace that gathers this info. why the reluctance for a SST? Mine gathers DL info and that is...
October 3, 2012 at 6:26 am
Absolutely. Save the trace ouput to a file, then open the file in profiler. Find the DL event in the listing of events, right click on the event...
October 3, 2012 at 6:24 am
My understanding is that if you use the built in MS maintenance plans, SQL is aware of which node is active and which is not.
One thing to keep...
October 3, 2012 at 6:15 am
October 2, 2012 at 7:48 am
Do you have the SQL server browser service running?
October 1, 2012 at 1:10 pm
Does the job create an output file with more information?
October 1, 2012 at 7:54 am
Anything in the event logs? Can you try connecting with SQLCMD?
September 27, 2012 at 7:43 am
Not the most efficient solution....
DECLARE @currentTime DATETIME
SET @currentTime = GETDATE()
SELECT CAST(DATEPART(year,@currentTime) AS CHAR(4))
+ CASE WHEN (DATEPART(month,@currentTime)) > 10 then (CAST(DATEPART(month,@currentTime) AS CHAR(2)))
ELSE '0' + CAST(DATEPART(month,@currentTime) AS CHAR(1)) END...
September 26, 2012 at 7:08 am
Is the SQL server pingable?
September 26, 2012 at 5:48 am
The name of your machine.
September 25, 2012 at 2:59 pm
Viewing 15 posts - 61 through 75 (of 87 total)