Hi,
I'm taking data from an Oracle db, and importing it into a "holding table". After that, I'm running a stored procedure to update/add some fields, after which I need to take that data and add it to the main data table.
The problem is that there are a few fields that I don't need to copy from the holding table. Since there are so many fields in each table, is my only alternative to do an insert statement, and list each individual field out?
i apologize if i'm being lazy, i just figured that there might be a simpler way to do this...?
I'm taking data from an Oracle db, and importing it into a "holding table". After that, I'm running a stored procedure to update/add some fields, after which I need to take that data and add it to the main data table.
The problem is that there are a few fields that I don't need to copy from the holding table. Since there are so many fields in each table, is my only alternative to do an insert statement, and list each individual field out?
i apologize if i'm being lazy, i just figured that there might be a simpler way to do this...?