DBA Data[Home] [Help]

SYS.DBMS_FEATURE_DMU dependencies on PROPS$

Line 25: from sys.props$

21: --
22: -- get the date DMU was used last time
23: --
24: select value$ into v_usage_value
25: from sys.props$
26: where name = 'NLS_DMU_USAGE';
27: v_last_used := to_date(substr(v_usage_value,1,instr(v_usage_value,',')-1),
28: 'YYYYMMDDHH24MISS');
29: --

Line 45: -- * NLS_DMU_USAGE not found in sys.props$

41: end if;
42: exception
43: --
44: -- DMU usage is not detected if any exception is thrown including:
45: -- * NLS_DMU_USAGE not found in sys.props$
46: -- * the value is not in the format of 'YYYYMMDDHH24MISS'
47: --
48: when others then
49: null;