drop nested table
CREATE TABLE test (
id VARCHAR2(20),
Cert_refs cert_ref_list)
NESTED TABLE Cert_refs STORE AS Cert_refs_tab;
1) After droping the table test, the object "Cert_refs_tab" has
not been deleted. How can I drop it ?
2) Is it possible to drop a nested table column ?
Thank you.