if not object_id('tempdb..#options') is null drop table #options; go create table #options (setOptions varchar(128), value varchar(50)); go insert into #options exec(' dbcc useroptions') go select * from #options
You need to create an account or log in to post comments to this site.