Hello Techies,

I have a PL/SQL table (LineItemsTable) which is a table of LineItemRecords. The table and record are part of a package spec declaration. The table is already filled with data at some point in a function. I want to save the PL/SQL table in an Oracle table so that I can retrieve the data at a later point.

I cannot create a table with the LineITemsTable column type because it generates an "Invalid Data Type " error. I was thinking about converting the PL/SQl table into a BLOB, but I never did that before.

Any thoughts/suggestions to this problem..??

Thanks in advance..

- RK