Viewing 3 posts - 1 through 3 (of 3 total)
modified above code
SET NOCOUNT ON
IF (OBJECT_ID ('tempdb..#RegResult')) IS NOT NULL
DROP TABLE #RegResult
CREATE TABLE #RegResult (ResultValue NVARCHAR(4))
IF (OBJECT_ID ('tempdb..#ServicesServiceStatus')) IS NOT NULL
DROP TABLE #ServicesServiceStatus
CREATE TABLE #ServicesServiceStatus(RowID INT IDENTITY(1,1),ServerName NVARCHAR(128),ServiceName NVARCHAR(128),ServiceStatus VARCHAR(128),StatusDateTime...
April 28, 2016 at 9:58 am
I tried as you said ,but i am getting error msg "server already exists"...
March 7, 2011 at 12:35 pm
[Jim].[dba].[Murphy] (3/3/2011)
March 3, 2011 at 7:27 am
Viewing 3 posts - 1 through 3 (of 3 total)