DBA Data[Home] [Help]

APPS.FND_GSM_UTIL dependencies on V$PARAMETER

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

401: sql_str := 'declare b boolean; Begin b := ' ||
402: 'fnd_conc_database.register_database(:1,:2,:3,:4,:5); ' ||
403: ' if (b) then :6 := 1; else :6 := 0; end if; end;';
404: select substr(value,1,8) into db_name
405: from v$parameter where name='db_name';
406: select substr(value,1,255) into db_domain
407: from v$parameter where name='db_domain';
408:
409: execute immediate sql_str using in db_name,

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

403: ' if (b) then :6 := 1; else :6 := 0; end if; end;';
404: select substr(value,1,8) into db_name
405: from v$parameter where name='db_name';
406: select substr(value,1,255) into db_domain
407: from v$parameter where name='db_domain';
408:
409: execute immediate sql_str using in db_name,
410: in db_domain, in c_null, in c_null, in n_null, out ret_val;
411: