I am running a page with this code, but it doesn't seem to be working...the table to be affected is not changing.
The dts package is saved in the SQL Server.
Please, could anyone tell me what am I missing or doing wrong ?
The stored procedure:
Thanks,
The dts package is saved in the SQL Server.
Please, could anyone tell me what am I missing or doing wrong ?
Code:
<cfstoredproc procedure = "DTS_FILE2"
dataSource = "CATS"
username="kitty" password="meow"
dbName = "dbCATS"
returncode="yes" >
</cfstoredproc>
The stored procedure:
Code:
CREATE Procedure dts_file2
AS
Begin
execute master..xp_cmdshell 'dtsrun /S "FoodServer" --Server name
/E
/N "tblUpdates_drop_recreate_import"' -- Package Name
End
GO
Thanks,