Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
| Author |
Topic |
|
sujith
Starting Member
20 Posts |
Posted - 2005-06-08 : 07:44:59
|
| How to insert the result set of an extended stored procedure into a table in the database?The result set of the sproc is in tabular form. I want it to be inserted into a table. How it can be done?Sujith S |
|
|
JimL
SQL Slinging Yak Ranger
1537 Posts |
Posted - 2005-06-08 : 08:28:57
|
| Select column1,column2,column3 ...... extInto YournewtableFrom youroldtableJimUsers <> Logic |
 |
|
|
sujith
Starting Member
20 Posts |
Posted - 2005-06-08 : 08:55:15
|
| Thanks for ur reply. Actually I was using xp_readmailuse masterinsert into yourdb.dbo.yourtableExec xp_readmailSujith S |
 |
|
|
|
|
|