hiI 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 TWO columns ARE product and oee
hiKnow 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.
Prasad BhagatPosted Jun 23, 2015, 2:57 AM
Pankaj Kumar ChoudharyPosted Jun 9, 2015, 10:30 AM
as begin
select * from Employee
end
GO
INSERT INTO #TempTable
EXEC My_Pro
Step 3:
FROM #TempTable
Saroj Kumar SahuPosted Jun 9, 2015, 7:35 AM
KhrizzPosted Jun 9, 2015, 7:17 AM
Blocked AccountPosted Jun 9, 2015, 7:12 AM
KiranS subramanianPosted Jun 9, 2015, 6:45 AM
Manoj BhoirPosted Jun 9, 2015, 6:42 AM
AS
BEGIN
SELECT Column1, Column2 From TableName
END
GO
Upendra Pratap ShahiPosted Jun 9, 2015, 5:04 AM
KiranS subramanianPosted Jun 9, 2015, 5:00 AM
Upendra Pratap ShahiPosted Jun 9, 2015, 3:20 AM