Viewing 13 posts - 1 through 13 (of 13 total)
exec xp_cmdshell 'systeminfo|find "Time:"'
This works for me
November 18, 2016 at 8:27 am
Just felt I should share the code I used to create my restore alerts
USE [msdb]
GO
/****** Object: Operator [Alert Operator] ******/
EXEC msdb.dbo.sp_add_operator @name=N'Alert Operator',
@enabled=1,
@weekday_pager_start_time=90000,
@weekday_pager_end_time=180000,
@saturday_pager_start_time=90000,
@saturday_pager_end_time=180000,
@sunday_pager_start_time=90000,...
January 6, 2014 at 7:28 am
OK has anyone solved this issue?
Server and SQL Services were restarted 4 days ago.
Here is the query I am running:
select job.Name, job.job_ID, job.Originating_Server,
activity.run_requested_Date, datediff(minute, activity.run_requested_Date, getdate()) as Elapsed, start_execution_date,...
October 24, 2013 at 9:22 am
Here is the code I use to get mount point information. I'm sure someone has a better way but I couldn't find it
/*
This code will go out...
February 28, 2012 at 1:59 pm
WORKS GREAT!!!!!!
Here is what I did to fix ALL my linked servers
DECLARE @ServerName SYSNAME
, @Message ...
February 17, 2012 at 1:44 pm
Hey All,
My task and your mission if you choose to accept it is... Move a named instance (all databases, jobs and users) from a standalone server to a cluster....
March 10, 2010 at 7:41 am
got it... Thanks
January 20, 2010 at 2:06 pm
Hey Ed, what happened to the link? I can not find the SQL Server FineBuild Reference
January 19, 2010 at 2:30 pm
I hope this is not to late. This code gives me an error
Msg 102, Level 15, State 1, Line 2
Incorrect syntax near ';'.
I know I'm missing something. Can you...
September 28, 2009 at 8:36 am
I hope this is not to late. This code gives me an error
Msg 102, Level 15, State 1, Line 2
Incorrect syntax near ';'.
I know I'm missing something. Can you...
September 28, 2009 at 8:30 am
OK, one last time. Has anybody been able to trace to a table? Andy, in all these years since your article, were you able to get it working? I am...
August 13, 2007 at 9:00 am
Viewing 13 posts - 1 through 13 (of 13 total)