We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Schema Used
CREATE TYPE pet_t IS OBJECT ( tag_no INTEGER ,NAME VARCHAR2 (60) ,breed VARCHAR2 (100) ); CREATE TYPE zoo_t IS TABLE OF pet_t; CREATE TABLE wild_side ( ID NUMBER PRIMARY KEY , DATA SYS.ANYDATA ); DECLARE my_cat pet_t := pet_t (50, 'Sister', 'Siamese'); my_bird pet_t := pet_t (100 ,'Mercury' ,'African Grey Parrot' ); my_pets zoo_t := zoo_t (my_cat, my_bird); BEGIN INSERT INTO wild_side VALUES (1 ,SYS.ANYDATA.convertnumber (5)); INSERT INTO wild_side VALUES (3 ,SYS.ANYDATA.convertvarchar2 ('Pretty crazy stuff!')); INSERT INTO wild_side VALUES (5 ,SYS.ANYDATA.convertdate (SYSDATE)); INSERT INTO wild_side VALUES (2 ,SYS.ANYDATA.convertobject (my_bird)); INSERT INTO wild_side VALUES (7 ,SYS.ANYDATA.convertcollection (my_pets)); COMMIT; END;
Expected : The table wild_side must be migrated Actual : The table wild_side is not migrated
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Schema Used
Expected : The table wild_side must be migrated
Actual : The table wild_side is not migrated
The text was updated successfully, but these errors were encountered: