Home Forums SQL Server 2012 SQL Server 2012 - T-SQL Supress Results from running a DTS Package via xp_cmdShell within a Stored Procedure RE: Supress Results from running a DTS Package via xp_cmdShell within a Stored Procedure

  • To suppress the messages thrown by xp_cmdshell extended Stored Procedure use the no_output optional parameter:

    exec xp_cmdshell 'DIR *.exe', no_output