Forum Replies Created

Viewing post 1 (of 1 total)

  • RE: Save result ofa xp_cmdshell command

    anvie (2/13/2009)


    Thank you this works for me 😀

    Create Table #Output

    (

    Output varchar(150) default('')

    )

    INSERT INTO #Output

    EXECUTE xp_cmdshell 'ping 192.168.10.1'

    SELECT *

    FROM #Output

    Beautiful. That works well. Thanks!

Viewing post 1 (of 1 total)