I have a data table with data in it.

I want to insert data from this data table into a physical table in oracle. If both tables are in oracle then by using the sql I could insert like

insert into temp2 (select * from temp1).

temp1 and temp2 are oracle tables. but in my situation, temp1 is a datatable. How can I do this?

thanks

nath