|
I can't answer your question now. But if I were you, I would do research this way:
alter session set sql_trace=true;
begin ctx_ddl.create_preference ...
Check trace file
select * from user_objects where created > sysdate - 1/48;
Search Reference manual for a possible name
If you still can't figure out, search sql.bsq for internal tables that use the base tables you saw in the SQL trace file.
Search on Metalink
...
Yong Huang
|