We have in our large Database Problems with the ALL_* Datadictionaray views.
The developer use the feature use DBA-Views = ON but the PSD 16 generate
A) is this realy generated by the PSD and
B) how can i rewrite this from the DEV-PC (aka canames.sql like ...)
Ahoi Daniel
The developer use the feature use DBA-Views = ON but the PSD 16 generate
select table_owner, table_name from all_synonyms
where (owner = 'PUBLIC' or owner = user)
and (synonym_name = table_name)
and not table_owner in ('SYS', 'OLAPSYS', 'XDB', 'LBACSYS', 'MDSYS', 'WMSYS', 'CTXSYS', 'AUDSYS', 'DVSYS', 'SYSTEM', 'ORDSYS', 'ORDDATA', 'APPQOSSYS', 'GSMADMIN_INTERNAL')
order by decode(owner, 'PUBLIC', 1, 0)
A) is this realy generated by the PSD and
B) how can i rewrite this from the DEV-PC (aka canames.sql like ...)
Ahoi Daniel