hi Have a store procedure which is encrypted when i execute that store procedure i get n number of columns from that i need to select only two columns and insert into separate table the 2 columns is product and oee
hi Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Govinda Rajulu YemineniPosted Jul 4, 2015, 5:18 AM
Sneha SnehaPosted Jun 9, 2015, 4:19 AM
insert into @tabletemp ( product, oee) exec nameofstored procedure;
Select * from @tabletemp;