[Home] [Help]
390: l_found := false;
391:
392: -- Pre-migration invalid count only in current edition
393: select count(1) into l_count_pre
394: from dba_invalid_objects;
395:
396: log(l_module, 'EVENT', 'Move xml schema: Invoke sys.xdb_migrateschema.moveSchemas ');
397:
398: sys.xdb_migrateschema.moveSchemas;
399: log(l_module, 'STATEMENT', 'Done with sys.xdb_migrateschema.moveSchemas');
400:
401: -- Post migration invalid count only in current edition
402: select count(1) into l_count_post
403: from dba_invalid_objects;
404:
405: -- Check if xml schemas are still owned by source user?
406: open c_xml_schemas;
407: fetch c_xml_schemas into l_schema_owner, l_schema_url;