DBA Data[Home] [Help]

SYS.ODCIINDEXINFODUMP dependencies on ODCICONST

Line 19: if (bitand(ia.IndexInfoFlags, ODCIConst.Parallel) = ODCIConst.Parallel) then

15: if (ia.IndexInfoFlags != 0) then
16: ODCIIndexInfoFlagsDump(ia.IndexInfoFlags);
17: end if;
18:
19: if (bitand(ia.IndexInfoFlags, ODCIConst.Parallel) = ODCIConst.Parallel) then
20: if (ia.IndexParaDegree < ODCIConst.DefaultDegree and
21: ia.IndexParaDegree > 0) then
22: dbms_output.put_line('Parallel degree : ' || ia.IndexParaDegree);
23: elsif ( ia.IndexParaDegree = ODCIConst.DefaultDegree) then

Line 20: if (ia.IndexParaDegree < ODCIConst.DefaultDegree and

16: ODCIIndexInfoFlagsDump(ia.IndexInfoFlags);
17: end if;
18:
19: if (bitand(ia.IndexInfoFlags, ODCIConst.Parallel) = ODCIConst.Parallel) then
20: if (ia.IndexParaDegree < ODCIConst.DefaultDegree and
21: ia.IndexParaDegree > 0) then
22: dbms_output.put_line('Parallel degree : ' || ia.IndexParaDegree);
23: elsif ( ia.IndexParaDegree = ODCIConst.DefaultDegree) then
24: dbms_output.put_line('Parallel degree : DEFAULT');

Line 23: elsif ( ia.IndexParaDegree = ODCIConst.DefaultDegree) then

19: if (bitand(ia.IndexInfoFlags, ODCIConst.Parallel) = ODCIConst.Parallel) then
20: if (ia.IndexParaDegree < ODCIConst.DefaultDegree and
21: ia.IndexParaDegree > 0) then
22: dbms_output.put_line('Parallel degree : ' || ia.IndexParaDegree);
23: elsif ( ia.IndexParaDegree = ODCIConst.DefaultDegree) then
24: dbms_output.put_line('Parallel degree : DEFAULT');
25: end if;
26: end if;
27: