A select statement to store my temporary table data to a plsql table type:
select * from Global_temporary_table
bulk collect into plsql_table_type;
After doing some conversion, when i try to insert the data back to the Global_temporary_table table using below insert statement
INSERT INTO Global_temporary_table
VALUES v_rbct_tbl(i);
COMMIT;
it fails to complete the insert transaction. However, if i try to insert same data into non-global temporary table, it doesn't create any problem.
Help me out please!
commit
was the mistake i was doing, because of that all the data from GTT was being deleted. Anyways, Thanks for your concern. – Deepak Ranjan