Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Insert or append data from disconnected recordset

Status
Not open for further replies.

mmayo

Programmer
May 29, 2001
38
US
I have a disconnected recordset from a stored procedure. I know I can loop through the records to populate a table, but is there a way to execute this as a single SQL statement?

For example:

SELECT rsFromSP.Field1, rsFromSP.Field2, rsFromSP.Field3
INTO tLocalTable
FROM rsFromSP;


 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top