I have a stored procedure in SQL Server which is migrated to oracle database.
- In SQL Server I created a temporary tables taking the column names from the table which is comma separated string. Then based upon the column names I created a temporary table.
- Then I insert rows into the temporary table and query these tables and do the process.
- Finally Drop the tables.
How can I achieve the same thing in oracle ?