DBA Data[Home] [Help]

APPS.FND_OAM_DSCFG_COMPILER_PKG dependencies on GV$INSTANCE

Line 1822: FROM gv$instance;

1818:
1819: --get the list of hosts for this DB
1820: SELECT UPPER(host_name)
1821: BULK COLLECT INTO l_host_names
1822: FROM gv$instance;
1823:
1824: --make sure we don't have more bundles than hosts
1825: IF b_run.num_bundles > l_host_names.COUNT THEN
1826: l_msg := 'More bundles defined in run configuration, '||b_run.num_bundles||', than defined for database: '||l_host_names.COUNT;

Line 1865: l_msg := 'Target Hostname "'||l_host_name||'" is not a hostname attached to this instance, check gv$instance.host_name.';

1861: END LOOP;
1862:
1863: --if we didn't find it, it's invalid
1864: IF NOT l_found THEN
1865: l_msg := 'Target Hostname "'||l_host_name||'" is not a hostname attached to this instance, check gv$instance.host_name.';
1866: fnd_oam_debug.log(3, l_ctxt, l_msg);
1867: MARK_OBJECT_AS_ERRORED(k,
1868: l_msg);
1869: RAISE PROGRAM_ERROR;