DBA Data[Home] [Help]

APPS.FND_TRACE dependencies on V$INSTANCE

Line 32: select substr(version,1,instr(version,'.')-1) into versn from v$instance;

28:
29: function GET_DB_VERSION return NUMBER IS
30: versn number:=8;
31: BEGIN
32: select substr(version,1,instr(version,'.')-1) into versn from v$instance;
33: return versn;
34: EXCEPTION
35: WHEN OTHERS THEN
36: return 8; -- Just in case, default it to 8