Viewing post 1 (of 1 total)
Try this
Eg if the @path var contains 'c:\' from your table it will output the contents of the directory.
declare @cmd varchar(150)
declare @path varchar(100)
select @path = path from tblTest
set @cmd =...
April 29, 2005 at 10:11 am
#556012