Question

I'm trying to query the data dictionary to find information on the transformations in the database. I've given my user DBA privileges, so I can access the DBA_ dictionary views. With this user, I can access all the DBA_ views without issues, however it seems I can only access DBA_TRANSFORMATIONS when logged in AS SYSDBA. Am I missing a special privilege to access this view?

Was it helpful?

Solution

DBA_TRANSFORMATIONS does not have a public synonym by default.

Try this:

select *
from sys.DBA_TRANSFORMATIONS;
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top