DBA Data[Home] [Help]

APPS.FND_DEBUG_UTIL dependencies on V$INSTANCE

Line 31: from v$instance;

27: begin
28: begin
29: select version
30: into dbversion
31: from v$instance;
32:
33: exception
34: when others then
35: null;

Line 189: from v$instance;

185: begin
186:
187: select host_name
188: into node_name
189: from v$instance;
190:
191: return node_name;
192:
193: exception