DBA Data[Home] [Help]

APPS.AS_RESOURCE_MERGE_PUB dependencies on V$PARAMETER

Line 66: FROM v$parameter

62: -- Fetch the directories to which UTL_FILE has access to write
63: -- they will be seperated by comma ","
64: SELECT value
65: INTO l_logdir
66: FROM v$parameter
67: WHERE UPPER(name) = 'UTL_FILE_DIR';
68:
69: -- Parse the logdir for the first comma and get the first directory
70: l_begin_pos := instr(l_logdir,',');