DBA Data[Home] [Help]

APPS.FND_GSM_UTIL dependencies on V$PARAMETER

Line 419: from v$parameter where name='db_name';

415: sql_str := 'declare b boolean; Begin b := ' ||
416: 'fnd_conc_database.register_database(:1,:2,:3,:4,:5); ' ||
417: ' if (b) then :6 := 1; else :6 := 0; end if; end;';
418: select substr(value,1,8) into db_name
419: from v$parameter where name='db_name';
420: select substr(value,1,255) into db_domain
421: from v$parameter where name='db_domain';
422:
423: execute immediate sql_str using in db_name,

Line 421: from v$parameter where name='db_domain';

417: ' if (b) then :6 := 1; else :6 := 0; end if; end;';
418: select substr(value,1,8) into db_name
419: from v$parameter where name='db_name';
420: select substr(value,1,255) into db_domain
421: from v$parameter where name='db_domain';
422:
423: execute immediate sql_str using in db_name,
424: in db_domain, in c_null, in c_null, in n_null, out ret_val;
425: