How to find the schema(user) name from database using a select statement or are there any built in functions available?
I am using the following package for compiling all invalid objects in my schema, so instead of hard coding schema name, I would like to use a select statement or function which returns schema name.
DBMS_UTILITY.compile_schema('SCOTT');
Thanks