Just wondering if this is a properly formatted Stored Procedure. It is intended to run a DTS package.
The SQL server resides on a Windows 2003 server, so I'm wondering if 'xp_cmdshell' is wrong.
CREATE PROCEDURE doPublish
AS exec master..xp_cmdshell 'dtsrun /S216.197.96.3 /NIAR_import_JAY_for_members /E'
GO
The SQL server resides on a Windows 2003 server, so I'm wondering if 'xp_cmdshell' is wrong.
CREATE PROCEDURE doPublish
AS exec master..xp_cmdshell 'dtsrun /S216.197.96.3 /NIAR_import_JAY_for_members /E'
GO