raksrules
Oracle
Oracle related issue
I am facing an issue while querying in toad
I tried using the following
to get the org_id in TOAD/SQL PLus but it yields 0 everytime.
But when i use
it gives me the output as 291
I did the following before running the above queries
Please let me know whats the issue.
I am facing an issue while querying in toad
I tried using the following
Code:
SELECT fnd_profile.value('ORG_ID') from dual;
But when i use
Code:
SELECT USERENV('CLIENT_INFO') from dual;
I did the following before running the above queries
Code:
begin
dbms_application_info.set_client_info('291');
end;
Please let me know whats the issue.