DBA Data[Home] [Help]

APPS.BSC_MO_HELPER_PKG dependencies on BSC_METADATA_OPTIMIZER_PKG

Line 21: where proc.process_id = bsc_metadata_optimizer_pkg.g_ProcessID

17: select distinct sysdim.short_name, sysdim.level_view_name
18: from bsc_sys_dim_levels_b sysdim,
19: bsc_kpi_dim_levels_b kpidim,
20: bsc_tmp_opt_ui_kpis proc
21: where proc.process_id = bsc_metadata_optimizer_pkg.g_ProcessID
22: and proc.indicator=kpidim.indicator
23: and kpidim.level_table_name = sysdim.level_table_name
24: and sysdim.source = 'PMF'
25: and BIS_UTILITIES_PVT.is_rolling_period_level(sysdim.short_name) = 0

Line 49: raise BSC_METADATA_OPTIMIZER_PKG.optimizer_exception;

45: commit;
46: IF x_return_status<>FND_API.G_RET_STS_SUCCESS THEN
47: writeTmp('Exception in BSC_BIS_DIM_OBJ_PUB.Validate_Refresh_BSC_PMF_Views for short_name='
48: ||i.short_name||':'||x_msg_data, FND_LOG.LEVEL_EXCEPTION, true);
49: raise BSC_METADATA_OPTIMIZER_PKG.optimizer_exception;
50: ELSE
51: writeTmp('Successfully generated BSC View '||i.level_view_name, FND_LOG.LEVEL_EXCEPTION, true);
52: END IF;
53: END LOOP;

Line 78: l_stmt varchar2(1000) := 'select level_view_name from '||BSC_METADATA_OPTIMIZER_PKG.g_filtered_indics||' where indicator=:1 and dim_set_id=:2 and level_pk_col=:3';

74: END;
75:
76: FUNCTION filters_exist(p_kpi_number IN NUMBER, p_dim_set_id IN NUMBER, p_column_name IN VARCHAR2, p_filter_view OUT NOCOPY VARCHAR2) return boolean
77: IS
78: l_stmt varchar2(1000) := 'select level_view_name from '||BSC_METADATA_OPTIMIZER_PKG.g_filtered_indics||' where indicator=:1 and dim_set_id=:2 and level_pk_col=:3';
79: cv CurTyp;
80:
81: BEGIN
82: OPEN cv FOR l_stmt using p_kpi_number, p_dim_set_id, p_column_name;

Line 97: l_count := bsc_metadata_optimizer_pkg.g_dropAppsTables.first;

93: l_count NUMBER;
94: l_stmt varchar2(1000);
95: BEGIN
96: l_stmt := 'DROP TABLE ';
97: l_count := bsc_metadata_optimizer_pkg.g_dropAppsTables.first;
98: LOOP
99: EXIT WHEN bsc_metadata_optimizer_pkg.g_dropAppsTables.count=0;
100: begin
101: execute immediate l_stmt||bsc_metadata_optimizer_pkg.g_dropAppsTables(l_count);

Line 99: EXIT WHEN bsc_metadata_optimizer_pkg.g_dropAppsTables.count=0;

95: BEGIN
96: l_stmt := 'DROP TABLE ';
97: l_count := bsc_metadata_optimizer_pkg.g_dropAppsTables.first;
98: LOOP
99: EXIT WHEN bsc_metadata_optimizer_pkg.g_dropAppsTables.count=0;
100: begin
101: execute immediate l_stmt||bsc_metadata_optimizer_pkg.g_dropAppsTables(l_count);
102: exception when others then
103: null;

Line 101: execute immediate l_stmt||bsc_metadata_optimizer_pkg.g_dropAppsTables(l_count);

97: l_count := bsc_metadata_optimizer_pkg.g_dropAppsTables.first;
98: LOOP
99: EXIT WHEN bsc_metadata_optimizer_pkg.g_dropAppsTables.count=0;
100: begin
101: execute immediate l_stmt||bsc_metadata_optimizer_pkg.g_dropAppsTables(l_count);
102: exception when others then
103: null;
104: end;
105: EXIT WHEN l_count = bsc_metadata_optimizer_pkg.g_dropAppsTables.last;

Line 105: EXIT WHEN l_count = bsc_metadata_optimizer_pkg.g_dropAppsTables.last;

101: execute immediate l_stmt||bsc_metadata_optimizer_pkg.g_dropAppsTables(l_count);
102: exception when others then
103: null;
104: end;
105: EXIT WHEN l_count = bsc_metadata_optimizer_pkg.g_dropAppsTables.last;
106: l_count := bsc_metadata_optimizer_pkg.g_dropAppsTables.next(l_count);
107: END LOOP;
108: END;
109: -- performance fix, query bsc_kpi_Data_tables instead of bsc_kpi_data_tables_last

Line 106: l_count := bsc_metadata_optimizer_pkg.g_dropAppsTables.next(l_count);

102: exception when others then
103: null;
104: end;
105: EXIT WHEN l_count = bsc_metadata_optimizer_pkg.g_dropAppsTables.last;
106: l_count := bsc_metadata_optimizer_pkg.g_dropAppsTables.next(l_count);
107: END LOOP;
108: END;
109: -- performance fix, query bsc_kpi_Data_tables instead of bsc_kpi_data_tables_last
110: PROCEDURE CreateKPIDataTableTmp IS

Line 115: bsc_metadata_optimizer_pkg.logProgress('INIT', 'Starting CreateKPIDataTableTmp');

111: TableName varchar2(30);
112: l_stmt varchar2(1000);
113:
114: BEGIN
115: bsc_metadata_optimizer_pkg.logProgress('INIT', 'Starting CreateKPIDataTableTmp');
116: TableName := BSC_METADATA_OPTIMIZER_PKG.g_kpi_tmp_table ;
117: DropTable(TableName);
118: l_stmt := 'create table '||TableName||' TABLESPACE '|| BSC_METADATA_OPTIMIZER_PKG.gSummaryTableTbsName||' as ';
119: --select distinct indicator, dim_set_id, table_name from bsc_kpi_data_tables';

Line 116: TableName := BSC_METADATA_OPTIMIZER_PKG.g_kpi_tmp_table ;

112: l_stmt varchar2(1000);
113:
114: BEGIN
115: bsc_metadata_optimizer_pkg.logProgress('INIT', 'Starting CreateKPIDataTableTmp');
116: TableName := BSC_METADATA_OPTIMIZER_PKG.g_kpi_tmp_table ;
117: DropTable(TableName);
118: l_stmt := 'create table '||TableName||' TABLESPACE '|| BSC_METADATA_OPTIMIZER_PKG.gSummaryTableTbsName||' as ';
119: --select distinct indicator, dim_set_id, table_name from bsc_kpi_data_tables';
120: l_stmt := l_stmt || ' select distinct

Line 118: l_stmt := 'create table '||TableName||' TABLESPACE '|| BSC_METADATA_OPTIMIZER_PKG.gSummaryTableTbsName||' as ';

114: BEGIN
115: bsc_metadata_optimizer_pkg.logProgress('INIT', 'Starting CreateKPIDataTableTmp');
116: TableName := BSC_METADATA_OPTIMIZER_PKG.g_kpi_tmp_table ;
117: DropTable(TableName);
118: l_stmt := 'create table '||TableName||' TABLESPACE '|| BSC_METADATA_OPTIMIZER_PKG.gSummaryTableTbsName||' as ';
119: --select distinct indicator, dim_set_id, table_name from bsc_kpi_data_tables';
120: l_stmt := l_stmt || ' select distinct
121: substr(table_name, instr(table_name, ''_'', 1, 2)+1, instr(table_name, ''_'', 1, 3)-instr(table_name, ''_'', 1, 2)-1) indicator,
122: substr(table_name, instr(table_name, ''_'', 1, 3)+1, instr(table_name, ''_'', 1, 4)-instr(table_name, ''_'', 1, 3)-1) dim_set_id,

Line 129: bsc_metadata_optimizer_pkg.logProgress('INIT', 'Created '||TableName);

125: where table_name like ''BSC_S%''
126: and (source_table_name like ''BSC_B%'' or source_table_name like ''BSC_T%'' )';
127:
128: do_ddl(l_stmt, ad_ddl.create_table, TableName);
129: bsc_metadata_optimizer_pkg.logProgress('INIT', 'Created '||TableName);
130: writeTmp('Created '||TableName, FND_LOG.LEVEL_STATEMENT, false);
131: l_stmt := 'create unique index '||TableName||'_u1 on '||TableName||'(indicator, dim_set_id, table_name) TABLESPACE '||BSC_METADATA_OPTIMIZER_PKG.gSummaryIndexTbsName;
132: do_ddl(l_stmt, ad_ddl.create_index, TableName||'_U1');
133: bsc_metadata_optimizer_pkg.logProgress('INIT', 'Created '||TableName||'_U1');

Line 131: l_stmt := 'create unique index '||TableName||'_u1 on '||TableName||'(indicator, dim_set_id, table_name) TABLESPACE '||BSC_METADATA_OPTIMIZER_PKG.gSummaryIndexTbsName;

127:
128: do_ddl(l_stmt, ad_ddl.create_table, TableName);
129: bsc_metadata_optimizer_pkg.logProgress('INIT', 'Created '||TableName);
130: writeTmp('Created '||TableName, FND_LOG.LEVEL_STATEMENT, false);
131: l_stmt := 'create unique index '||TableName||'_u1 on '||TableName||'(indicator, dim_set_id, table_name) TABLESPACE '||BSC_METADATA_OPTIMIZER_PKG.gSummaryIndexTbsName;
132: do_ddl(l_stmt, ad_ddl.create_index, TableName||'_U1');
133: bsc_metadata_optimizer_pkg.logProgress('INIT', 'Created '||TableName||'_U1');
134: writeTmp('Created index '||TableName||'_u1', FND_LOG.LEVEL_STATEMENT, false);
135: l_stmt := 'create index '||TableName||'_n1 on '||TableName||'(table_name) TABLESPACE '||BSC_METADATA_OPTIMIZER_PKG.gSummaryIndexTbsName;

Line 133: bsc_metadata_optimizer_pkg.logProgress('INIT', 'Created '||TableName||'_U1');

129: bsc_metadata_optimizer_pkg.logProgress('INIT', 'Created '||TableName);
130: writeTmp('Created '||TableName, FND_LOG.LEVEL_STATEMENT, false);
131: l_stmt := 'create unique index '||TableName||'_u1 on '||TableName||'(indicator, dim_set_id, table_name) TABLESPACE '||BSC_METADATA_OPTIMIZER_PKG.gSummaryIndexTbsName;
132: do_ddl(l_stmt, ad_ddl.create_index, TableName||'_U1');
133: bsc_metadata_optimizer_pkg.logProgress('INIT', 'Created '||TableName||'_U1');
134: writeTmp('Created index '||TableName||'_u1', FND_LOG.LEVEL_STATEMENT, false);
135: l_stmt := 'create index '||TableName||'_n1 on '||TableName||'(table_name) TABLESPACE '||BSC_METADATA_OPTIMIZER_PKG.gSummaryIndexTbsName;
136: do_ddl(l_stmt, ad_ddl.create_index, TableName||'_N1');
137: writeTmp('Created index '||TableName||'_n1', FND_LOG.LEVEL_STATEMENT, false);

Line 135: l_stmt := 'create index '||TableName||'_n1 on '||TableName||'(table_name) TABLESPACE '||BSC_METADATA_OPTIMIZER_PKG.gSummaryIndexTbsName;

131: l_stmt := 'create unique index '||TableName||'_u1 on '||TableName||'(indicator, dim_set_id, table_name) TABLESPACE '||BSC_METADATA_OPTIMIZER_PKG.gSummaryIndexTbsName;
132: do_ddl(l_stmt, ad_ddl.create_index, TableName||'_U1');
133: bsc_metadata_optimizer_pkg.logProgress('INIT', 'Created '||TableName||'_U1');
134: writeTmp('Created index '||TableName||'_u1', FND_LOG.LEVEL_STATEMENT, false);
135: l_stmt := 'create index '||TableName||'_n1 on '||TableName||'(table_name) TABLESPACE '||BSC_METADATA_OPTIMIZER_PKG.gSummaryIndexTbsName;
136: do_ddl(l_stmt, ad_ddl.create_index, TableName||'_N1');
137: writeTmp('Created index '||TableName||'_n1', FND_LOG.LEVEL_STATEMENT, false);
138: bsc_metadata_optimizer_pkg.logProgress('INIT', 'Created '||TableName||'_N1');
139: bsc_metadata_optimizer_pkg.logProgress('INIT', 'Completed CreateKPIDataTableTmp');

Line 138: bsc_metadata_optimizer_pkg.logProgress('INIT', 'Created '||TableName||'_N1');

134: writeTmp('Created index '||TableName||'_u1', FND_LOG.LEVEL_STATEMENT, false);
135: l_stmt := 'create index '||TableName||'_n1 on '||TableName||'(table_name) TABLESPACE '||BSC_METADATA_OPTIMIZER_PKG.gSummaryIndexTbsName;
136: do_ddl(l_stmt, ad_ddl.create_index, TableName||'_N1');
137: writeTmp('Created index '||TableName||'_n1', FND_LOG.LEVEL_STATEMENT, false);
138: bsc_metadata_optimizer_pkg.logProgress('INIT', 'Created '||TableName||'_N1');
139: bsc_metadata_optimizer_pkg.logProgress('INIT', 'Completed CreateKPIDataTableTmp');
140:
141: exception when others then
142: writeTmp('Exception in CreateKPIDataTableTmp :'||sqlerrm, FND_LOG.LEVEL_EXCEPTION, true);

Line 139: bsc_metadata_optimizer_pkg.logProgress('INIT', 'Completed CreateKPIDataTableTmp');

135: l_stmt := 'create index '||TableName||'_n1 on '||TableName||'(table_name) TABLESPACE '||BSC_METADATA_OPTIMIZER_PKG.gSummaryIndexTbsName;
136: do_ddl(l_stmt, ad_ddl.create_index, TableName||'_N1');
137: writeTmp('Created index '||TableName||'_n1', FND_LOG.LEVEL_STATEMENT, false);
138: bsc_metadata_optimizer_pkg.logProgress('INIT', 'Created '||TableName||'_N1');
139: bsc_metadata_optimizer_pkg.logProgress('INIT', 'Completed CreateKPIDataTableTmp');
140:
141: exception when others then
142: writeTmp('Exception in CreateKPIDataTableTmp :'||sqlerrm, FND_LOG.LEVEL_EXCEPTION, true);
143: writeTmp('Exception in CreateKPIDataTableTmp stmt= :'||l_stmt, FND_LOG.LEVEL_EXCEPTION, true);

Line 160: FUNCTION find_objectives_for_table_old(p_table IN VARCHAR2) return BSC_METADATA_OPTIMIZER_PKG.tab_clsKPIDimSet IS

156: return;
157: -- using a SQL instead now...
158: END;
159:
160: FUNCTION find_objectives_for_table_old(p_table IN VARCHAR2) return BSC_METADATA_OPTIMIZER_PKG.tab_clsKPIDimSet IS
161: CURSOR cObjectives IS
162: select distinct indicator, dim_set_id from bsc_kpi_data_tables
163: where table_name in
164: (select table_name from bsc_db_tables_rels

Line 170: l_results BSC_METADATA_OPTIMIZER_PKG.tab_clsKPIDimSet;

166: connect by prior table_name = source_table_name
167: start with table_name = p_table);
168: l_objective number;
169: l_dim_set number;
170: l_results BSC_METADATA_OPTIMIZER_PKG.tab_clsKPIDimSet;
171: l_KPI BSC_METADATA_OPTIMIZER_PKG.clsKPIDimSet;
172: BEGIN
173: OPEN cObjectives;
174: LOOP

Line 171: l_KPI BSC_METADATA_OPTIMIZER_PKG.clsKPIDimSet;

167: start with table_name = p_table);
168: l_objective number;
169: l_dim_set number;
170: l_results BSC_METADATA_OPTIMIZER_PKG.tab_clsKPIDimSet;
171: l_KPI BSC_METADATA_OPTIMIZER_PKG.clsKPIDimSet;
172: BEGIN
173: OPEN cObjectives;
174: LOOP
175: FETCH cObjectives INTO l_objective, l_dim_set;

Line 188: FUNCTION find_objectives_for_table_new(p_table IN VARCHAR2) return BSC_METADATA_OPTIMIZER_PKG.tab_clsKPIDimSet IS

184: writeTmp('Exception in find_objectives_for_table_old :'||sqlerrm, FND_LOG.LEVEL_EXCEPTION, true);
185: raise;
186: END;
187:
188: FUNCTION find_objectives_for_table_new(p_table IN VARCHAR2) return BSC_METADATA_OPTIMIZER_PKG.tab_clsKPIDimSet IS
189: l_stmt VARCHAR2(1000) :=
190: 'select distinct indicator, dim_set_id from '||BSC_METADATA_OPTIMIZER_PKG.g_kpi_tmp_table||'
191: where table_name in
192: (select table_name from bsc_db_tables_rels

Line 190: 'select distinct indicator, dim_set_id from '||BSC_METADATA_OPTIMIZER_PKG.g_kpi_tmp_table||'

186: END;
187:
188: FUNCTION find_objectives_for_table_new(p_table IN VARCHAR2) return BSC_METADATA_OPTIMIZER_PKG.tab_clsKPIDimSet IS
189: l_stmt VARCHAR2(1000) :=
190: 'select distinct indicator, dim_set_id from '||BSC_METADATA_OPTIMIZER_PKG.g_kpi_tmp_table||'
191: where table_name in
192: (select table_name from bsc_db_tables_rels
193: where table_name like ''BSC_S%''
194: connect by prior table_name = source_table_name

Line 197: l_results BSC_METADATA_OPTIMIZER_PKG.tab_clsKPIDimSet;

193: where table_name like ''BSC_S%''
194: connect by prior table_name = source_table_name
195: start with table_name = :1)';
196: l_objective number;
197: l_results BSC_METADATA_OPTIMIZER_PKG.tab_clsKPIDimSet;
198: cv CurTyp;
199: l_KPI BSC_METADATA_OPTIMIZER_PKG.clsKPIDimSet;
200: l_dim_set number;
201: BEGIN

Line 199: l_KPI BSC_METADATA_OPTIMIZER_PKG.clsKPIDimSet;

195: start with table_name = :1)';
196: l_objective number;
197: l_results BSC_METADATA_OPTIMIZER_PKG.tab_clsKPIDimSet;
198: cv CurTyp;
199: l_KPI BSC_METADATA_OPTIMIZER_PKG.clsKPIDimSet;
200: l_dim_set number;
201: BEGIN
202: OPEN cv FOR l_stmt USING p_table;
203: LOOP

Line 219: FUNCTION find_objectives_for_table(p_table IN VARCHAR2) return BSC_METADATA_OPTIMIZER_PKG.tab_clsKPIDimSet IS

215: raise;
216:
217: END;
218:
219: FUNCTION find_objectives_for_table(p_table IN VARCHAR2) return BSC_METADATA_OPTIMIZER_PKG.tab_clsKPIDimSet IS
220: BEGIN
221: IF NOT TableExists(BSC_METADATA_OPTIMIZER_PKG.g_kpi_tmp_table) then
222: RETURN find_objectives_for_table_old(p_table);
223: ELSE

Line 221: IF NOT TableExists(BSC_METADATA_OPTIMIZER_PKG.g_kpi_tmp_table) then

217: END;
218:
219: FUNCTION find_objectives_for_table(p_table IN VARCHAR2) return BSC_METADATA_OPTIMIZER_PKG.tab_clsKPIDimSet IS
220: BEGIN
221: IF NOT TableExists(BSC_METADATA_OPTIMIZER_PKG.g_kpi_tmp_table) then
222: RETURN find_objectives_for_table_old(p_table);
223: ELSE
224: RETURN find_objectives_for_table_new(p_table);
225: END IF;

Line 277: AND LAST_UPDATE_LOGIN = bsc_metadata_optimizer_pkg.g_session_id;

273: SELECT MESSAGE
274: FROM BSC_MESSAGE_LOGS
275: WHERE TYPE = 0
276: AND UPPER(SOURCE) = upper(apiName)
277: AND LAST_UPDATE_LOGIN = bsc_metadata_optimizer_pkg.g_session_id;
278:
279: BEGIN
280: OPEN cMsg;
281: FETCH cMsg INTO l_error;

Line 286: BSC_METADATA_OPTIMIZER_PKG.g_errbuf := l_error;

282: CLOSE cMsg;
283: If l_error IS NOT NULL Then
284: --if there was an error then shows the error and exit
285: bsc_utility.do_rollback;
286: BSC_METADATA_OPTIMIZER_PKG.g_errbuf := l_error;
287: BSC_METADATA_OPTIMIZER_PKG.g_retcode := 2;
288: BSC_METADATA_OPTIMIZER_PKG.logProgress('CHECKERROR', apiName);
289: BSC_MO_HELPER_PKG.TerminateWithMsg(l_error);
290: raise BSC_METADATA_OPTIMIZER_PKG.optimizer_exception;

Line 287: BSC_METADATA_OPTIMIZER_PKG.g_retcode := 2;

283: If l_error IS NOT NULL Then
284: --if there was an error then shows the error and exit
285: bsc_utility.do_rollback;
286: BSC_METADATA_OPTIMIZER_PKG.g_errbuf := l_error;
287: BSC_METADATA_OPTIMIZER_PKG.g_retcode := 2;
288: BSC_METADATA_OPTIMIZER_PKG.logProgress('CHECKERROR', apiName);
289: BSC_MO_HELPER_PKG.TerminateWithMsg(l_error);
290: raise BSC_METADATA_OPTIMIZER_PKG.optimizer_exception;
291: END IF;

Line 288: BSC_METADATA_OPTIMIZER_PKG.logProgress('CHECKERROR', apiName);

284: --if there was an error then shows the error and exit
285: bsc_utility.do_rollback;
286: BSC_METADATA_OPTIMIZER_PKG.g_errbuf := l_error;
287: BSC_METADATA_OPTIMIZER_PKG.g_retcode := 2;
288: BSC_METADATA_OPTIMIZER_PKG.logProgress('CHECKERROR', apiName);
289: BSC_MO_HELPER_PKG.TerminateWithMsg(l_error);
290: raise BSC_METADATA_OPTIMIZER_PKG.optimizer_exception;
291: END IF;
292:

Line 290: raise BSC_METADATA_OPTIMIZER_PKG.optimizer_exception;

286: BSC_METADATA_OPTIMIZER_PKG.g_errbuf := l_error;
287: BSC_METADATA_OPTIMIZER_PKG.g_retcode := 2;
288: BSC_METADATA_OPTIMIZER_PKG.logProgress('CHECKERROR', apiName);
289: BSC_MO_HELPER_PKG.TerminateWithMsg(l_error);
290: raise BSC_METADATA_OPTIMIZER_PKG.optimizer_exception;
291: END IF;
292:
293: END;
294:

Line 325: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN

321: l_return_value varchar2(1000);
322:
323: cv CurTyp;
324: BEGIN
325: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
326: bsc_mo_helper_pkg.writeTmp('Inside getTablespaceClauseIdx', FND_LOG.LEVEL_PROCEDURE);
327: END IF;
328:
329: l_stmt := 'SELECT BSC_APPS.Get_Tablespace_Clause_Idx FROM DUAL';

Line 335: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN

331: OPEN cv FOR l_stmt;
332: FETCH cv INTO l_return_value;
333: CLOSE cv;
334:
335: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
336: bsc_mo_helper_pkg.writeTmp('Completed getTablespaceClauseIdx, returning '||l_return_value, FND_LOG.LEVEL_PROCEDURE);
337: END IF;
338:
339: RETURN l_return_value;

Line 353: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN

349: CURSOR cStorage IS
350: SELECT BSC_APPS.Get_Storage_Clause FROM DUAL;
351:
352: BEGIN
353: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
354: bsc_mo_helper_pkg.writeTmp('Inside getStorageClause', FND_LOG.LEVEL_PROCEDURE);
355: END IF;
356:
357: OPEN cStorage;

Line 361: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN

357: OPEN cStorage;
358: FETCH cStorage INTO l_return_value;
359: CLOSE cStorage;
360:
361: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
362: bsc_mo_helper_pkg.writeTmp('Completed getStorageClause, returning '||l_return_value, FND_LOG.LEVEL_PROCEDURE);
363: END IF;
364:
365: RETURN l_return_value;

Line 410: BSC_METADATA_OPTIMIZER_PKG.gInputTableTbsName := BSC_APPS.get_tablespace_name(BSC_APPS.input_table_tbs_type);

406: PROCEDURE InitTablespaceNames IS
407: --Initialize the global variables with tablespace names
408: BEGIN
409:
410: BSC_METADATA_OPTIMIZER_PKG.gInputTableTbsName := BSC_APPS.get_tablespace_name(BSC_APPS.input_table_tbs_type);
411: BSC_METADATA_OPTIMIZER_PKG.gInputIndexTbsName := BSC_APPS.get_tablespace_name(BSC_APPS.input_index_tbs_type);
412: BSC_METADATA_OPTIMIZER_PKG.gBaseTableTbsName := BSC_APPS.get_tablespace_name(BSC_APPS.base_table_tbs_type);
413: BSC_METADATA_OPTIMIZER_PKG.gBaseIndexTbsName := BSC_APPS.get_tablespace_name(BSC_APPS.base_index_tbs_type);
414: BSC_METADATA_OPTIMIZER_PKG.gSummaryTableTbsName := BSC_APPS.get_tablespace_name(BSC_APPS.summary_table_tbs_type);

Line 411: BSC_METADATA_OPTIMIZER_PKG.gInputIndexTbsName := BSC_APPS.get_tablespace_name(BSC_APPS.input_index_tbs_type);

407: --Initialize the global variables with tablespace names
408: BEGIN
409:
410: BSC_METADATA_OPTIMIZER_PKG.gInputTableTbsName := BSC_APPS.get_tablespace_name(BSC_APPS.input_table_tbs_type);
411: BSC_METADATA_OPTIMIZER_PKG.gInputIndexTbsName := BSC_APPS.get_tablespace_name(BSC_APPS.input_index_tbs_type);
412: BSC_METADATA_OPTIMIZER_PKG.gBaseTableTbsName := BSC_APPS.get_tablespace_name(BSC_APPS.base_table_tbs_type);
413: BSC_METADATA_OPTIMIZER_PKG.gBaseIndexTbsName := BSC_APPS.get_tablespace_name(BSC_APPS.base_index_tbs_type);
414: BSC_METADATA_OPTIMIZER_PKG.gSummaryTableTbsName := BSC_APPS.get_tablespace_name(BSC_APPS.summary_table_tbs_type);
415: BSC_METADATA_OPTIMIZER_PKG.gSummaryIndexTbsName := BSC_APPS.get_tablespace_name(BSC_APPS.summary_index_tbs_type);

Line 412: BSC_METADATA_OPTIMIZER_PKG.gBaseTableTbsName := BSC_APPS.get_tablespace_name(BSC_APPS.base_table_tbs_type);

408: BEGIN
409:
410: BSC_METADATA_OPTIMIZER_PKG.gInputTableTbsName := BSC_APPS.get_tablespace_name(BSC_APPS.input_table_tbs_type);
411: BSC_METADATA_OPTIMIZER_PKG.gInputIndexTbsName := BSC_APPS.get_tablespace_name(BSC_APPS.input_index_tbs_type);
412: BSC_METADATA_OPTIMIZER_PKG.gBaseTableTbsName := BSC_APPS.get_tablespace_name(BSC_APPS.base_table_tbs_type);
413: BSC_METADATA_OPTIMIZER_PKG.gBaseIndexTbsName := BSC_APPS.get_tablespace_name(BSC_APPS.base_index_tbs_type);
414: BSC_METADATA_OPTIMIZER_PKG.gSummaryTableTbsName := BSC_APPS.get_tablespace_name(BSC_APPS.summary_table_tbs_type);
415: BSC_METADATA_OPTIMIZER_PKG.gSummaryIndexTbsName := BSC_APPS.get_tablespace_name(BSC_APPS.summary_index_tbs_type);
416: BSC_METADATA_OPTIMIZER_PKG.gOtherTableTbsName := BSC_APPS.get_tablespace_name(BSC_APPS.other_table_tbs_type);

Line 413: BSC_METADATA_OPTIMIZER_PKG.gBaseIndexTbsName := BSC_APPS.get_tablespace_name(BSC_APPS.base_index_tbs_type);

409:
410: BSC_METADATA_OPTIMIZER_PKG.gInputTableTbsName := BSC_APPS.get_tablespace_name(BSC_APPS.input_table_tbs_type);
411: BSC_METADATA_OPTIMIZER_PKG.gInputIndexTbsName := BSC_APPS.get_tablespace_name(BSC_APPS.input_index_tbs_type);
412: BSC_METADATA_OPTIMIZER_PKG.gBaseTableTbsName := BSC_APPS.get_tablespace_name(BSC_APPS.base_table_tbs_type);
413: BSC_METADATA_OPTIMIZER_PKG.gBaseIndexTbsName := BSC_APPS.get_tablespace_name(BSC_APPS.base_index_tbs_type);
414: BSC_METADATA_OPTIMIZER_PKG.gSummaryTableTbsName := BSC_APPS.get_tablespace_name(BSC_APPS.summary_table_tbs_type);
415: BSC_METADATA_OPTIMIZER_PKG.gSummaryIndexTbsName := BSC_APPS.get_tablespace_name(BSC_APPS.summary_index_tbs_type);
416: BSC_METADATA_OPTIMIZER_PKG.gOtherTableTbsName := BSC_APPS.get_tablespace_name(BSC_APPS.other_table_tbs_type);
417: BSC_METADATA_OPTIMIZER_PKG.gOtherIndexTbsName := BSC_APPS.get_tablespace_name(BSC_APPS.other_table_tbs_type);

Line 414: BSC_METADATA_OPTIMIZER_PKG.gSummaryTableTbsName := BSC_APPS.get_tablespace_name(BSC_APPS.summary_table_tbs_type);

410: BSC_METADATA_OPTIMIZER_PKG.gInputTableTbsName := BSC_APPS.get_tablespace_name(BSC_APPS.input_table_tbs_type);
411: BSC_METADATA_OPTIMIZER_PKG.gInputIndexTbsName := BSC_APPS.get_tablespace_name(BSC_APPS.input_index_tbs_type);
412: BSC_METADATA_OPTIMIZER_PKG.gBaseTableTbsName := BSC_APPS.get_tablespace_name(BSC_APPS.base_table_tbs_type);
413: BSC_METADATA_OPTIMIZER_PKG.gBaseIndexTbsName := BSC_APPS.get_tablespace_name(BSC_APPS.base_index_tbs_type);
414: BSC_METADATA_OPTIMIZER_PKG.gSummaryTableTbsName := BSC_APPS.get_tablespace_name(BSC_APPS.summary_table_tbs_type);
415: BSC_METADATA_OPTIMIZER_PKG.gSummaryIndexTbsName := BSC_APPS.get_tablespace_name(BSC_APPS.summary_index_tbs_type);
416: BSC_METADATA_OPTIMIZER_PKG.gOtherTableTbsName := BSC_APPS.get_tablespace_name(BSC_APPS.other_table_tbs_type);
417: BSC_METADATA_OPTIMIZER_PKG.gOtherIndexTbsName := BSC_APPS.get_tablespace_name(BSC_APPS.other_table_tbs_type);
418: End ;

Line 415: BSC_METADATA_OPTIMIZER_PKG.gSummaryIndexTbsName := BSC_APPS.get_tablespace_name(BSC_APPS.summary_index_tbs_type);

411: BSC_METADATA_OPTIMIZER_PKG.gInputIndexTbsName := BSC_APPS.get_tablespace_name(BSC_APPS.input_index_tbs_type);
412: BSC_METADATA_OPTIMIZER_PKG.gBaseTableTbsName := BSC_APPS.get_tablespace_name(BSC_APPS.base_table_tbs_type);
413: BSC_METADATA_OPTIMIZER_PKG.gBaseIndexTbsName := BSC_APPS.get_tablespace_name(BSC_APPS.base_index_tbs_type);
414: BSC_METADATA_OPTIMIZER_PKG.gSummaryTableTbsName := BSC_APPS.get_tablespace_name(BSC_APPS.summary_table_tbs_type);
415: BSC_METADATA_OPTIMIZER_PKG.gSummaryIndexTbsName := BSC_APPS.get_tablespace_name(BSC_APPS.summary_index_tbs_type);
416: BSC_METADATA_OPTIMIZER_PKG.gOtherTableTbsName := BSC_APPS.get_tablespace_name(BSC_APPS.other_table_tbs_type);
417: BSC_METADATA_OPTIMIZER_PKG.gOtherIndexTbsName := BSC_APPS.get_tablespace_name(BSC_APPS.other_table_tbs_type);
418: End ;
419:

Line 416: BSC_METADATA_OPTIMIZER_PKG.gOtherTableTbsName := BSC_APPS.get_tablespace_name(BSC_APPS.other_table_tbs_type);

412: BSC_METADATA_OPTIMIZER_PKG.gBaseTableTbsName := BSC_APPS.get_tablespace_name(BSC_APPS.base_table_tbs_type);
413: BSC_METADATA_OPTIMIZER_PKG.gBaseIndexTbsName := BSC_APPS.get_tablespace_name(BSC_APPS.base_index_tbs_type);
414: BSC_METADATA_OPTIMIZER_PKG.gSummaryTableTbsName := BSC_APPS.get_tablespace_name(BSC_APPS.summary_table_tbs_type);
415: BSC_METADATA_OPTIMIZER_PKG.gSummaryIndexTbsName := BSC_APPS.get_tablespace_name(BSC_APPS.summary_index_tbs_type);
416: BSC_METADATA_OPTIMIZER_PKG.gOtherTableTbsName := BSC_APPS.get_tablespace_name(BSC_APPS.other_table_tbs_type);
417: BSC_METADATA_OPTIMIZER_PKG.gOtherIndexTbsName := BSC_APPS.get_tablespace_name(BSC_APPS.other_table_tbs_type);
418: End ;
419:
420:

Line 417: BSC_METADATA_OPTIMIZER_PKG.gOtherIndexTbsName := BSC_APPS.get_tablespace_name(BSC_APPS.other_table_tbs_type);

413: BSC_METADATA_OPTIMIZER_PKG.gBaseIndexTbsName := BSC_APPS.get_tablespace_name(BSC_APPS.base_index_tbs_type);
414: BSC_METADATA_OPTIMIZER_PKG.gSummaryTableTbsName := BSC_APPS.get_tablespace_name(BSC_APPS.summary_table_tbs_type);
415: BSC_METADATA_OPTIMIZER_PKG.gSummaryIndexTbsName := BSC_APPS.get_tablespace_name(BSC_APPS.summary_index_tbs_type);
416: BSC_METADATA_OPTIMIZER_PKG.gOtherTableTbsName := BSC_APPS.get_tablespace_name(BSC_APPS.other_table_tbs_type);
417: BSC_METADATA_OPTIMIZER_PKG.gOtherIndexTbsName := BSC_APPS.get_tablespace_name(BSC_APPS.other_table_tbs_type);
418: End ;
419:
420:
421: PROCEDURE write_this (

Line 422: pTable IN BSC_METADATA_OPTIMIZER_PKG.clsConfigKpiMV,

418: End ;
419:
420:
421: PROCEDURE write_this (
422: pTable IN BSC_METADATA_OPTIMIZER_PKG.clsConfigKpiMV,
423: pSeverity IN NUMBER DEFAULT FND_LOG.LEVEL_STATEMENT,
424: pForce IN boolean default false)
425: IS
426: l_count number;

Line 428: IF BSC_METADATA_OPTIMIZER_PKG.g_log or pForce THEN

424: pForce IN boolean default false)
425: IS
426: l_count number;
427: BEGIN
428: IF BSC_METADATA_OPTIMIZER_PKG.g_log or pForce THEN
429: writeTmp('LevelComb = '||pTable.LevelComb||' , MVName = '||
430: pTable.MVName||', DataSource = '||pTable.MVName||', SqlStmt = '||pTable.SqlStmt,
431: FND_LOG.LEVEL_STATEMENT, pForce);
432: END IF;

Line 438: pTable IN BSC_METADATA_OPTIMIZER_PKG.tab_clsConfigKpiMV,

434: END;
435:
436:
437: PROCEDURE write_this (
438: pTable IN BSC_METADATA_OPTIMIZER_PKG.tab_clsConfigKpiMV,
439: pSeverity IN NUMBER DEFAULT FND_LOG.LEVEL_STATEMENT,
440: pForce IN boolean default false)
441: IS
442: l_count NUMBER;

Line 443: l_table BSC_METADATA_OPTIMIZER_PKG.clsConfigKpiMV;

439: pSeverity IN NUMBER DEFAULT FND_LOG.LEVEL_STATEMENT,
440: pForce IN boolean default false)
441: IS
442: l_count NUMBER;
443: l_table BSC_METADATA_OPTIMIZER_PKG.clsConfigKpiMV;
444: BEGIN
445: IF (pTable.count=0) THEN
446: return;
447: END IF;

Line 469: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN

465: l_string := l_string ||' ';
466: LOOP
467: l_string := l_string ||pTable(l_count);
468: IF (length(l_string) > 3000) THEN
469: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
470: writeTmp(l_string, pSeverity);
471: END IF;
472:
473: l_string := null;

Line 479: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN

475: EXIT WHEN l_count = pTable.last;
476: l_count := pTable.next(l_count);
477: l_string := l_string ||', ';
478: END LOOP;
479: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
480: writeTmp(l_string, pSeverity);
481: END IF;
482:
483:

Line 500: IF BSC_METADATA_OPTIMIZER_PKG.g_log or pForce THEN

496: END IF;
497: l_count := pTable.first;
498:
499: LOOP
500: IF BSC_METADATA_OPTIMIZER_PKG.g_log or pForce THEN
501: writeTmp(pTable(l_count), pSeverity, pForce);
502: END IF;
503:
504: EXIT WHEN l_count = pTable.last;

Line 529: IF BSC_METADATA_OPTIMIZER_PKG.g_log or pForce THEN

525: EXIT WHEN l_count = pTable.last;
526: l_count := pTable.next(l_count);
527: l_string := l_string ||', ';
528: IF (length(l_string) > 200) THEN
529: IF BSC_METADATA_OPTIMIZER_PKG.g_log or pForce THEN
530: writeTmp(l_string, pSeverity, pForce);
531: END IF;
532:
533: l_string := null;

Line 536: IF BSC_METADATA_OPTIMIZER_PKG.g_log or pForce THEN

532:
533: l_string := null;
534: END IF;
535: END LOOP;
536: IF BSC_METADATA_OPTIMIZER_PKG.g_log or pForce THEN
537: writeTmp(l_string, pSeverity, pForce);
538: END IF;
539:
540: EXCEPTION WHEN OTHERS THEN

Line 545: pTable IN BSC_METADATA_OPTIMIZER_PKG.clsParent,

541: raise;
542: END;
543:
544: PROCEDURE write_this(
545: pTable IN BSC_METADATA_OPTIMIZER_PKG.clsParent,
546: ind IN NUMBER default null,
547: pSeverity IN NUMBER DEFAULT FND_LOG.LEVEL_STATEMENT,
548: pForce IN boolean default false)
549: IS

Line 551: IF BSC_METADATA_OPTIMIZER_PKG.g_log or pForce THEN

547: pSeverity IN NUMBER DEFAULT FND_LOG.LEVEL_STATEMENT,
548: pForce IN boolean default false)
549: IS
550: BEGIN
551: IF BSC_METADATA_OPTIMIZER_PKG.g_log or pForce THEN
552: writeTmp(ind||' Name = '||pTable.name||', relationColumn = '||pTable.relationColumn, pSeverity, pForce);
553: END IF;
554:
555: END;

Line 558: pTable IN BSC_METADATA_OPTIMIZER_PKG.tab_clsParent,

554:
555: END;
556:
557: PROCEDURE write_this(
558: pTable IN BSC_METADATA_OPTIMIZER_PKG.tab_clsParent,
559: pSeverity IN NUMBER DEFAULT FND_LOG.LEVEL_STATEMENT,
560: pForce IN boolean default false)
561: IS
562: l_count NUMBER;

Line 563: l_table BSC_METADATA_OPTIMIZER_PKG.clsParent;

559: pSeverity IN NUMBER DEFAULT FND_LOG.LEVEL_STATEMENT,
560: pForce IN boolean default false)
561: IS
562: l_count NUMBER;
563: l_table BSC_METADATA_OPTIMIZER_PKG.clsParent;
564: BEGIN
565:
566: IF (pTable.count=0) THEN
567: return;

Line 579: pTable IN BSC_METADATA_OPTIMIZER_PKG.clsMasterTable,

575: END LOOP;
576: END;
577:
578: PROCEDURE write_this(
579: pTable IN BSC_METADATA_OPTIMIZER_PKG.clsMasterTable,
580: ind IN NUMBER default null,
581: pSeverity IN NUMBER DEFAULT FND_LOG.LEVEL_STATEMENT,
582: pForce IN boolean default false)
583: IS

Line 593: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN

589: ELSE
590: l_string := l_string ||'false';
591: END IF;
592: l_string := l_string ||', EDW_FLAG='||pTable.EDW_FLAG||', inputTable='||pTable.inputTable;
593: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
594: writeTmp(l_string, pSeverity);
595: END IF;
596:
597: IF BSC_METADATA_OPTIMIZER_PKG.g_log or pForce THEN

Line 597: IF BSC_METADATA_OPTIMIZER_PKG.g_log or pForce THEN

593: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
594: writeTmp(l_string, pSeverity);
595: END IF;
596:
597: IF BSC_METADATA_OPTIMIZER_PKG.g_log or pForce THEN
598: writeTmp('Parent_name='||pTable.parent_name||', parent_rel_col='||pTable.parent_rel_col, pSeverity, pForce);
599: writeTmp('Auxillary='||pTable.auxillaryFields, pSeverity, pForce);
600: END IF;
601:

Line 605: pTable IN BSC_METADATA_OPTIMIZER_PKG.tab_clsMasterTable,

601:
602: END;
603:
604: PROCEDURE write_this(
605: pTable IN BSC_METADATA_OPTIMIZER_PKG.tab_clsMasterTable,
606: pSeverity IN NUMBER DEFAULT FND_LOG.LEVEL_STATEMENT,
607: pForce IN boolean default false)
608: IS
609: l_count NUMBER;

Line 610: l_table BSC_METADATA_OPTIMIZER_PKG.clsMasterTable;

606: pSeverity IN NUMBER DEFAULT FND_LOG.LEVEL_STATEMENT,
607: pForce IN boolean default false)
608: IS
609: l_count NUMBER;
610: l_table BSC_METADATA_OPTIMIZER_PKG.clsMasterTable;
611: BEGIN
612: IF (pTable.count=0) THEN
613: return;
614: END IF;

Line 625: pTable IN BSC_METADATA_OPTIMIZER_PKG.clsRelationMN,

621: END LOOP;
622: END;
623:
624: PROCEDURE write_this(
625: pTable IN BSC_METADATA_OPTIMIZER_PKG.clsRelationMN,
626: ind IN NUMBER default null,
627: pSeverity IN NUMBER DEFAULT FND_LOG.LEVEL_STATEMENT,
628: pForce IN boolean default false)
629: IS

Line 631: IF BSC_METADATA_OPTIMIZER_PKG.g_log or pForce THEN

627: pSeverity IN NUMBER DEFAULT FND_LOG.LEVEL_STATEMENT,
628: pForce IN boolean default false)
629: IS
630: BEGIN
631: IF BSC_METADATA_OPTIMIZER_PKG.g_log or pForce THEN
632: writeTmp(ind||' TableA='||pTable.TableA||', keyNameA='||pTable.keyNameA, pSeverity, pForce);
633: writeTmp(', TableB='||pTable.TableB||', keyNameB='||pTable.keyNameB
634: ||', TableRel='||pTable.TableRel||', InputTable='||pTable.InputTable, pSeverity, pForce);
635: END IF;

Line 640: pTable IN BSC_METADATA_OPTIMIZER_PKG.tab_clsRelationMN,

636:
637: END;
638:
639: PROCEDURE write_this(
640: pTable IN BSC_METADATA_OPTIMIZER_PKG.tab_clsRelationMN,
641: pSeverity IN NUMBER DEFAULT FND_LOG.LEVEL_STATEMENT,
642: pForce IN boolean default false) IS
643: l_count NUMBER;
644: l_table BSC_METADATA_OPTIMIZER_PKG.clsRelationMN;

Line 644: l_table BSC_METADATA_OPTIMIZER_PKG.clsRelationMN;

640: pTable IN BSC_METADATA_OPTIMIZER_PKG.tab_clsRelationMN,
641: pSeverity IN NUMBER DEFAULT FND_LOG.LEVEL_STATEMENT,
642: pForce IN boolean default false) IS
643: l_count NUMBER;
644: l_table BSC_METADATA_OPTIMIZER_PKG.clsRelationMN;
645: BEGIN
646: IF (pTable.count=0) THEN
647: return;
648: END IF;

Line 659: pTable IN BSC_METADATA_OPTIMIZER_PKG.clsIndicator,

655: END LOOP;
656: END;
657:
658: PROCEDURE write_this(
659: pTable IN BSC_METADATA_OPTIMIZER_PKG.clsIndicator,
660: ind IN NUMBER default null,
661: pSeverity IN NUMBER DEFAULT FND_LOG.LEVEL_STATEMENT,
662: pForce IN boolean default false)
663: IS

Line 665: IF BSC_METADATA_OPTIMIZER_PKG.g_log OR pForce THEN

661: pSeverity IN NUMBER DEFAULT FND_LOG.LEVEL_STATEMENT,
662: pForce IN boolean default false)
663: IS
664: BEGIN
665: IF BSC_METADATA_OPTIMIZER_PKG.g_log OR pForce THEN
666: writeTmp(ind||' Code='||pTable.code||', Name='||pTable.Name||', IndicatorType='||pTable.IndicatorType||', ConfigType='||pTable.configType
667: ||', periodicity='||pTable.periodicity||', OptimizationMode='||pTable.OptimizationMode||', Action_Flag='||pTable.Action_Flag||', Share_Flag='||pTable.Share_flag
668: ||', source_Indicator='||pTable.source_Indicator||', EDW_Flag='||pTable.EDW_FLag||',impl_type='||pTable.impl_type, pSeverity, pForce);
669: END IF;

Line 674: pTable IN BSC_METADATA_OPTIMIZER_PKG.tab_clsIndicator,

670:
671: END;
672:
673: PROCEDURE write_this(
674: pTable IN BSC_METADATA_OPTIMIZER_PKG.tab_clsIndicator,
675: pSeverity IN NUMBER DEFAULT FND_LOG.LEVEL_STATEMENT,
676: pForce IN boolean default false) IS
677: l_count NUMBER;
678: l_table BSC_METADATA_OPTIMIZER_PKG.clsIndicator;

Line 678: l_table BSC_METADATA_OPTIMIZER_PKG.clsIndicator;

674: pTable IN BSC_METADATA_OPTIMIZER_PKG.tab_clsIndicator,
675: pSeverity IN NUMBER DEFAULT FND_LOG.LEVEL_STATEMENT,
676: pForce IN boolean default false) IS
677: l_count NUMBER;
678: l_table BSC_METADATA_OPTIMIZER_PKG.clsIndicator;
679: BEGIN
680: IF (pTable.count=0) THEN
681: return;
682: END IF;

Line 692: pTable IN BSC_METADATA_OPTIMIZER_PKG.clsPeriodicity,

688: l_count := pTable.next(l_count);
689: END LOOP;
690: END;
691: PROCEDURE write_this(
692: pTable IN BSC_METADATA_OPTIMIZER_PKG.clsPeriodicity,
693: ind IN NUMBER default null,
694: pSeverity IN NUMBER DEFAULT FND_LOG.LEVEL_STATEMENT,
695: pForce IN boolean default false) IS
696: l_count NUMBER;

Line 699: IF BSC_METADATA_OPTIMIZER_PKG.g_log or pForce THEN

695: pForce IN boolean default false) IS
696: l_count NUMBER;
697: l_string VARCHAR2(30000);
698: BEGIN
699: IF BSC_METADATA_OPTIMIZER_PKG.g_log or pForce THEN
700: writeTmp(ind||' Code='||pTable.code||', EDW_Flag='||pTable.EDW_Flag||', Yearly_Flag='||pTable.Yearly_flag
701: ||', CalendarID='||pTable.calendarID||', PeriodicityType='||pTable.PeriodicityType
702: ||' Origin ='||pTable.PeriodicityOrigin , pSeverity, pForce);
703: END IF;

Line 707: pTable IN BSC_METADATA_OPTIMIZER_PKG.tab_clsPeriodicity ,

703: END IF;
704: END;
705:
706: PROCEDURE write_this(
707: pTable IN BSC_METADATA_OPTIMIZER_PKG.tab_clsPeriodicity ,
708: pSeverity IN NUMBER DEFAULT FND_LOG.LEVEL_STATEMENT,
709: pForce IN boolean default false)
710: IS
711: l_count NUMBER;

Line 712: l_table BSC_METADATA_OPTIMIZER_PKG.clsPeriodicity;

708: pSeverity IN NUMBER DEFAULT FND_LOG.LEVEL_STATEMENT,
709: pForce IN boolean default false)
710: IS
711: l_count NUMBER;
712: l_table BSC_METADATA_OPTIMIZER_PKG.clsPeriodicity;
713: BEGIN
714: IF (pTable.count=0) THEN
715: return;
716: END IF;

Line 727: pTable IN BSC_METADATA_OPTIMIZER_PKG.clsIndicPeriodicity,

723: END LOOP;
724: END;
725:
726: PROCEDURE write_this(
727: pTable IN BSC_METADATA_OPTIMIZER_PKG.clsIndicPeriodicity,
728: ind IN NUMBER default null,
729: pSeverity IN NUMBER DEFAULT FND_LOG.LEVEL_STATEMENT,
730: pForce IN boolean default false)
731: IS

Line 735: IF BSC_METADATA_OPTIMIZER_PKG.g_log or pForce THEN

731: IS
732: l_count NUMBER;
733: l_string VARCHAR2(30000);
734: BEGIN
735: IF BSC_METADATA_OPTIMIZER_PKG.g_log or pForce THEN
736: writeTmp(ind||' Code='||pTable.code||', TargetLevel='||pTable.TargetLevel, pSeverity, pForce);
737: END IF;
738: END;
739: PROCEDURE write_this(

Line 740: pTable IN BSC_METADATA_OPTIMIZER_PKG.tab_clsIndicPeriodicity ,

736: writeTmp(ind||' Code='||pTable.code||', TargetLevel='||pTable.TargetLevel, pSeverity, pForce);
737: END IF;
738: END;
739: PROCEDURE write_this(
740: pTable IN BSC_METADATA_OPTIMIZER_PKG.tab_clsIndicPeriodicity ,
741: pSeverity IN NUMBER DEFAULT FND_LOG.LEVEL_STATEMENT,
742: pForce IN boolean default false)
743: IS
744: l_count NUMBER;

Line 745: l_table BSC_METADATA_OPTIMIZER_PKG.clsIndicPeriodicity;

741: pSeverity IN NUMBER DEFAULT FND_LOG.LEVEL_STATEMENT,
742: pForce IN boolean default false)
743: IS
744: l_count NUMBER;
745: l_table BSC_METADATA_OPTIMIZER_PKG.clsIndicPeriodicity;
746: BEGIN
747: IF (pTable.count=0) THEN
748: return;
749: END IF;

Line 760: pTable IN BSC_METADATA_OPTIMIZER_PKG.clsCalendar,

756: END LOOP;
757: END;
758:
759: PROCEDURE write_this(
760: pTable IN BSC_METADATA_OPTIMIZER_PKG.clsCalendar,
761: ind IN NUMBER default null,
762: pSeverity IN NUMBER DEFAULT FND_LOG.LEVEL_STATEMENT,
763: pForce IN boolean default false)
764: IS

Line 768: IF BSC_METADATA_OPTIMIZER_PKG.g_log or pForce THEN

764: IS
765: l_count NUMBER;
766: l_string VARCHAR2(30000);
767: BEGIN
768: IF BSC_METADATA_OPTIMIZER_PKG.g_log or pForce THEN
769: writeTmp(ind||' Code='||pTable.code||', EDW_FLAG='||pTable.EDW_FLAG||', Name='||pTable.Name
770: ||', CurrFiscalYear='||pTable.CurrFiscalYear||', RangeYrMod='||pTable.RangeYrMod
771: ||', NumOfYears='||pTable.NumOfYears||', PreviousYears='||pTable.PreviousYears, pSeverity, pForce);
772: END IF;

Line 776: pTable IN BSC_METADATA_OPTIMIZER_PKG.tab_clsCalendar,

772: END IF;
773: END;
774:
775: PROCEDURE write_this(
776: pTable IN BSC_METADATA_OPTIMIZER_PKG.tab_clsCalendar,
777: pSeverity IN NUMBER DEFAULT FND_LOG.LEVEL_STATEMENT,
778: pForce IN boolean default false)
779: IS
780: l_count NUMBER;

Line 781: l_table BSC_METADATA_OPTIMIZER_PKG.clsCalendar;

777: pSeverity IN NUMBER DEFAULT FND_LOG.LEVEL_STATEMENT,
778: pForce IN boolean default false)
779: IS
780: l_count NUMBER;
781: l_table BSC_METADATA_OPTIMIZER_PKG.clsCalendar;
782: BEGIN
783: IF (pTable.count=0) THEN
784: return;
785: END IF;

Line 796: pTable IN BSC_METADATA_OPTIMIZER_PKG.clsOldBTables,

792: END LOOP;
793: END;
794:
795: PROCEDURE write_this(
796: pTable IN BSC_METADATA_OPTIMIZER_PKG.clsOldBTables,
797: ind IN NUMBER default null,
798: pSeverity IN NUMBER DEFAULT FND_LOG.LEVEL_STATEMENT,
799: pForce IN boolean default false)
800: IS

Line 804: IF BSC_METADATA_OPTIMIZER_PKG.g_log or pForce THEN

800: IS
801: l_count NUMBER;
802: l_string VARCHAR2(30000);
803: BEGIN
804: IF BSC_METADATA_OPTIMIZER_PKG.g_log or pForce THEN
805: writeTmp(ind||' Name='||pTable.name||', periodicity='||pTable.periodicity||', InputTable='||pTable.InputTable
806: ||', numFields='||pTable.numFields||', NumIndicators='||pTable.NumIndicators||
807: ', Fields='||pTable.fields||', Indicators='||pTable.Indicators, pSeverity, pForce);
808: END IF;

Line 812: pTable IN BSC_METADATA_OPTIMIZER_PKG.tab_clsOldBTables,

808: END IF;
809: END;
810:
811: PROCEDURE write_this(
812: pTable IN BSC_METADATA_OPTIMIZER_PKG.tab_clsOldBTables,
813: pSeverity IN NUMBER DEFAULT FND_LOG.LEVEL_STATEMENT,
814: pForce IN boolean default false)
815: IS
816: l_count NUMBER;

Line 817: l_table BSC_METADATA_OPTIMIZER_PKG.clsOldBTables;

813: pSeverity IN NUMBER DEFAULT FND_LOG.LEVEL_STATEMENT,
814: pForce IN boolean default false)
815: IS
816: l_count NUMBER;
817: l_table BSC_METADATA_OPTIMIZER_PKG.clsOldBTables;
818: BEGIN
819: IF (pTable.count=0) THEN
820: return;
821: END IF;

Line 832: pTable IN BSC_METADATA_OPTIMIZER_PKG.clsMeasureLOV,

828: END LOOP;
829: END;
830:
831: PROCEDURE write_this(
832: pTable IN BSC_METADATA_OPTIMIZER_PKG.clsMeasureLOV,
833: ind IN NUMBER default null,
834: pSeverity IN NUMBER DEFAULT FND_LOG.LEVEL_STATEMENT,
835: pForce IN boolean default false)
836: IS

Line 840: IF BSC_METADATA_OPTIMIZER_PKG.g_log or pForce THEN

836: IS
837: l_count NUMBER;
838: l_string VARCHAR2(30000);
839: BEGIN
840: IF BSC_METADATA_OPTIMIZER_PKG.g_log or pForce THEN
841: writeTmp(ind||' field='||pTable.fieldName||', source='||pTable.source||', desc='||pTable.description||', group='||pTable.groupCode
842: ||', prj='||pTable.prjMethod||', measureType='||pTable.measureType, pSeverity, pForce);
843: END IF;
844: END;

Line 847: pTable IN BSC_METADATA_OPTIMIZER_PKG.tab_clsMeasureLOV,

843: END IF;
844: END;
845:
846: PROCEDURE write_this(
847: pTable IN BSC_METADATA_OPTIMIZER_PKG.tab_clsMeasureLOV,
848: pSeverity IN NUMBER DEFAULT FND_LOG.LEVEL_STATEMENT,
849: pForce IN boolean default false)
850: IS
851: l_count NUMBER;

Line 852: l_table BSC_METADATA_OPTIMIZER_PKG.clsMeasureLOV;

848: pSeverity IN NUMBER DEFAULT FND_LOG.LEVEL_STATEMENT,
849: pForce IN boolean default false)
850: IS
851: l_count NUMBER;
852: l_table BSC_METADATA_OPTIMIZER_PKG.clsMeasureLOV;
853: BEGIN
854: IF (pTable.count=0) THEN
855: return;
856: END IF;

Line 867: pTable IN BSC_METADATA_OPTIMIZER_PKG.clsLevels,

863: END LOOP;
864: END;
865:
866: PROCEDURE write_this(
867: pTable IN BSC_METADATA_OPTIMIZER_PKG.clsLevels,
868: ind IN NUMBER default null,
869: pSeverity IN NUMBER DEFAULT FND_LOG.LEVEL_STATEMENT,
870: pForce IN boolean default false)
871: IS

Line 875: IF BSC_METADATA_OPTIMIZER_PKG.g_log or pForce THEN

871: IS
872: l_count NUMBER;
873: l_string VARCHAR2(30000);
874: BEGIN
875: IF BSC_METADATA_OPTIMIZER_PKG.g_log or pForce THEN
876: writeTmp(ind||' key='||pTable.keyName||', dimTable='||pTable.dimTable||', Num='||pTable.Num
877: ||', Name='||pTable.Name||', TargetLevel='||pTable.TargetLevel||', parents1N='||pTable.Parents1N||
878: ', ParentsMN='||pTable.parentsMN, pSeverity, pForce);
879: END IF;

Line 883: pTable IN BSC_METADATA_OPTIMIZER_PKG.tab_clsLevels,

879: END IF;
880: END;
881:
882: PROCEDURE write_this(
883: pTable IN BSC_METADATA_OPTIMIZER_PKG.tab_clsLevels,
884: pSeverity IN NUMBER DEFAULT FND_LOG.LEVEL_STATEMENT,
885: pForce IN boolean default false) IS
886: l_count NUMBER;
887: l_table BSC_METADATA_OPTIMIZER_PKG.clsLevels;

Line 887: l_table BSC_METADATA_OPTIMIZER_PKG.clsLevels;

883: pTable IN BSC_METADATA_OPTIMIZER_PKG.tab_clsLevels,
884: pSeverity IN NUMBER DEFAULT FND_LOG.LEVEL_STATEMENT,
885: pForce IN boolean default false) IS
886: l_count NUMBER;
887: l_table BSC_METADATA_OPTIMIZER_PKG.clsLevels;
888: BEGIN
889: IF (pTable.count=0) THEN
890: return;
891: END IF;

Line 902: pTable IN BSC_METADATA_OPTIMIZER_PKG.tabrec_clsLevels,

898: END LOOP;
899: END;
900:
901: PROCEDURE write_this(
902: pTable IN BSC_METADATA_OPTIMIZER_PKG.tabrec_clsLevels,
903: pSeverity IN NUMBER DEFAULT FND_LOG.LEVEL_STATEMENT,
904: pForce IN boolean default false)
905: IS
906: l_count NUMBER;

Line 908: IF BSC_METADATA_OPTIMIZER_PKG.g_log or pForce THEN

904: pForce IN boolean default false)
905: IS
906: l_count NUMBER;
907: BEGIN
908: IF BSC_METADATA_OPTIMIZER_PKG.g_log or pForce THEN
909: writeTmp(' group_id = '||pTable.group_id||', key='||pTable.keyName||', dimTable='||pTable.dimTable||', Num='||pTable.Num
910: ||', Name='||pTable.Name||', TgtLevel='||pTable.TargetLevel||', parents1N='||pTable.Parents1N||
911: ', ParentsMN='||pTable.parentsMN, pSeverity, pForce);
912: END IF;

Line 916: pTable IN BSC_METADATA_OPTIMIZER_PKG.tab_tab_clsLevels,

912: END IF;
913: END;
914:
915: PROCEDURE write_this(
916: pTable IN BSC_METADATA_OPTIMIZER_PKG.tab_tab_clsLevels,
917: pSeverity IN NUMBER DEFAULT FND_LOG.LEVEL_STATEMENT,
918: pForce IN boolean default false)
919: IS
920: l_count NUMBER;

Line 921: l_table BSC_METADATA_OPTIMIZER_PKG.tabrec_clsLevels;

917: pSeverity IN NUMBER DEFAULT FND_LOG.LEVEL_STATEMENT,
918: pForce IN boolean default false)
919: IS
920: l_count NUMBER;
921: l_table BSC_METADATA_OPTIMIZER_PKG.tabrec_clsLevels;
922: BEGIN
923: IF (pTable.count=0) THEN
924: return;
925: END IF;

Line 937: pTable IN BSC_METADATA_OPTIMIZER_PKG.clsLevelCombinations,

933: END;
934:
935:
936: PROCEDURE write_this(
937: pTable IN BSC_METADATA_OPTIMIZER_PKG.clsLevelCombinations,
938: ind IN NUMBER default null,
939: pSeverity IN NUMBER DEFAULT FND_LOG.LEVEL_STATEMENT,
940: pForce IN boolean default false)
941: IS

Line 945: IF BSC_METADATA_OPTIMIZER_PKG.g_log or pForce THEN

941: IS
942: l_count NUMBER;
943: l_string VARCHAR2(30000);
944: BEGIN
945: IF BSC_METADATA_OPTIMIZER_PKG.g_log or pForce THEN
946: writeTmp(ind||' LevelConfig='||pTable.LevelConfig||', levels='||pTable.levels, pSeverity, pForce);
947: END IF;
948: END;
949:

Line 951: pTable IN BSC_METADATA_OPTIMIZER_PKG.tab_clsLevelCombinations,

947: END IF;
948: END;
949:
950: PROCEDURE write_this(
951: pTable IN BSC_METADATA_OPTIMIZER_PKG.tab_clsLevelCombinations,
952: pSeverity IN NUMBER DEFAULT FND_LOG.LEVEL_STATEMENT,
953: pForce IN boolean default false)
954: IS
955: l_count NUMBER;

Line 956: l_table BSC_METADATA_OPTIMIZER_PKG.clsLevelCombinations;

952: pSeverity IN NUMBER DEFAULT FND_LOG.LEVEL_STATEMENT,
953: pForce IN boolean default false)
954: IS
955: l_count NUMBER;
956: l_table BSC_METADATA_OPTIMIZER_PKG.clsLevelCombinations;
957: BEGIN
958: IF (pTable.count=0) THEN
959: return;
960: END IF;

Line 971: pTable IN BSC_METADATA_OPTIMIZER_PKG.tabrec_clsLevelCombinations,

967: END LOOP;
968: END;
969:
970: PROCEDURE write_this(
971: pTable IN BSC_METADATA_OPTIMIZER_PKG.tabrec_clsLevelCombinations,
972: pSeverity IN NUMBER DEFAULT FND_LOG.LEVEL_STATEMENT,
973: pForce IN boolean default false)
974: IS
975: l_count NUMBER;

Line 977: IF BSC_METADATA_OPTIMIZER_PKG.g_log or pForce THEN

973: pForce IN boolean default false)
974: IS
975: l_count NUMBER;
976: BEGIN
977: IF BSC_METADATA_OPTIMIZER_PKG.g_log or pForce THEN
978: writeTmp(' group_id = '||pTable.group_id||', levels='||pTable.levels||', levelConfig='||pTable.levelConfig, pSeverity, pForce);
979: END IF;
980: END;
981:

Line 983: pTable IN BSC_METADATA_OPTIMIZER_PKG.tab_tab_clsLevelCombinations,

979: END IF;
980: END;
981:
982: PROCEDURE write_this(
983: pTable IN BSC_METADATA_OPTIMIZER_PKG.tab_tab_clsLevelCombinations,
984: pSeverity IN NUMBER DEFAULT FND_LOG.LEVEL_STATEMENT,
985: pForce IN boolean default false)
986: IS
987: l_count NUMBER;

Line 988: l_table BSC_METADATA_OPTIMIZER_PKG.tabrec_clsLevelCombinations;

984: pSeverity IN NUMBER DEFAULT FND_LOG.LEVEL_STATEMENT,
985: pForce IN boolean default false)
986: IS
987: l_count NUMBER;
988: l_table BSC_METADATA_OPTIMIZER_PKG.tabrec_clsLevelCombinations;
989: BEGIN
990: IF (pTable.count=0) THEN
991: return;
992: END IF;

Line 994: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN

990: IF (pTable.count=0) THEN
991: return;
992: END IF;
993: l_count := pTable.first;
994: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
995: writeTmp('write_this for tab_tab_clsLevelCombinations, count = '||pTable.count);
996: END IF;
997: LOOP
998: l_table := pTable(l_count);

Line 1005: pTable IN BSC_METADATA_OPTIMIZER_PKG.clsKeyField,

1001: l_count := pTable.next(l_count);
1002: END LOOP;
1003: END;
1004: PROCEDURE write_this(
1005: pTable IN BSC_METADATA_OPTIMIZER_PKG.clsKeyField,
1006: ind IN NUMBER default null,
1007: pSeverity IN NUMBER DEFAULT FND_LOG.LEVEL_STATEMENT,
1008: pForce IN boolean default false)
1009: IS

Line 1014: IF BSC_METADATA_OPTIMIZER_PKG.g_log or pForce THEN

1010: l_count NUMBER;
1011: l_string VARCHAR2(300) := null;
1012: l_error VARCHAR2(1000);
1013: BEGIN
1014: IF BSC_METADATA_OPTIMIZER_PKG.g_log or pForce THEN
1015: writeTmp(' '||ind||l_string||' key='||pTable.keyName||', origin='||pTable.origin||', 0code='||boolean_decode(pTable.needsCode0)
1016: ||', calc0Code='||boolean_decode(pTable.calculateCode0)||', FilterView='||pTable.FilterViewName||', dimIndex = '||pTable.dimIndex , pSeverity, pForce);
1017: END IF;
1018: EXCEPTION WHEN OTHERS THEN

Line 1025: pTable IN BSC_METADATA_OPTIMIZER_PKG.tab_clsKeyField,

1021: raise;
1022: END;
1023:
1024: PROCEDURE write_this(
1025: pTable IN BSC_METADATA_OPTIMIZER_PKG.tab_clsKeyField,
1026: pSeverity IN NUMBER DEFAULT FND_LOG.LEVEL_STATEMENT,
1027: pForce IN boolean default false)
1028: IS
1029: l_count NUMBER;

Line 1030: l_table BSC_METADATA_OPTIMIZER_PKG.clsKeyField;

1026: pSeverity IN NUMBER DEFAULT FND_LOG.LEVEL_STATEMENT,
1027: pForce IN boolean default false)
1028: IS
1029: l_count NUMBER;
1030: l_table BSC_METADATA_OPTIMIZER_PKG.clsKeyField;
1031: l_error VARCHAR2(1000);
1032: BEGIN
1033: IF (pTable.count=0) THEN
1034: return;

Line 1051: pTable IN BSC_METADATA_OPTIMIZER_PKG.clsDataField,

1047: END;
1048:
1049:
1050: PROCEDURE write_this(
1051: pTable IN BSC_METADATA_OPTIMIZER_PKG.clsDataField,
1052: ind IN NUMBER default null,
1053: pSeverity IN NUMBER DEFAULT FND_LOG.LEVEL_STATEMENT,
1054: pForce IN boolean default false)
1055: IS

Line 1059: IF BSC_METADATA_OPTIMIZER_PKG.g_log or pForce THEN

1055: IS
1056: l_count NUMBER;
1057: l_string VARCHAR2(300) := null;
1058: BEGIN
1059: IF BSC_METADATA_OPTIMIZER_PKG.g_log or pForce THEN
1060: writeTmp(ind||l_string||' field='||pTable.fieldName||', source='||pTable.source||', aggFon='||pTable.aggFunction||', Origin='||pTable.Origin
1061: ||', AvgLFlag='||pTable.AvgLFlag
1062: ||', AvgLTotalColumn='||pTable.AvgLTotalColumn
1063: ||', AvgLCounter='||pTable.AvgLCounterColumn

Line 1072: pTable IN BSC_METADATA_OPTIMIZER_PKG.tab_clsDataField,

1068: END IF;
1069: END;
1070:
1071: PROCEDURE write_this(
1072: pTable IN BSC_METADATA_OPTIMIZER_PKG.tab_clsDataField,
1073: pSeverity IN NUMBER DEFAULT FND_LOG.LEVEL_STATEMENT,
1074: pForce IN boolean default false)
1075: IS
1076: l_count NUMBER;

Line 1077: l_table BSC_METADATA_OPTIMIZER_PKG.clsDataField;

1073: pSeverity IN NUMBER DEFAULT FND_LOG.LEVEL_STATEMENT,
1074: pForce IN boolean default false)
1075: IS
1076: l_count NUMBER;
1077: l_table BSC_METADATA_OPTIMIZER_PKG.clsDataField;
1078: BEGIN
1079: IF (pTable.count=0) THEN
1080: return;
1081: END IF;

Line 1091: pTable IN BSC_METADATA_OPTIMIZER_PKG.clsBasicTable,

1087: l_count := pTable.next(l_count);
1088: END LOOP;
1089: END;
1090: PROCEDURE write_this(
1091: pTable IN BSC_METADATA_OPTIMIZER_PKG.clsBasicTable,
1092: ind IN NUMBER default null,
1093: pSeverity IN NUMBER DEFAULT FND_LOG.LEVEL_STATEMENT,
1094: pForce IN boolean default false)
1095: IS

Line 1099: IF BSC_METADATA_OPTIMIZER_PKG.g_log or pForce THEN

1095: IS
1096: l_count NUMBER;
1097: l_string VARCHAR2(30000);
1098: BEGIN
1099: IF BSC_METADATA_OPTIMIZER_PKG.g_log or pForce THEN
1100: writeTmp(ind||' Name='||pTable.Name, pSeverity, pForce);
1101: writeTmp(' keyfields = ', pSeverity, pForce);
1102: --write_this(getAllkeyFields(pTable.name), pSeverity, pForce);
1103: write_this(pTable.keys, pSeverity, pForce);

Line 1113: pTable IN BSC_METADATA_OPTIMIZER_PKG.tab_clsBasicTable,

1109: END IF;
1110: END;
1111:
1112: PROCEDURE write_this(
1113: pTable IN BSC_METADATA_OPTIMIZER_PKG.tab_clsBasicTable,
1114: pSeverity IN NUMBER DEFAULT FND_LOG.LEVEL_STATEMENT,
1115: pForce IN boolean default false)
1116: IS
1117: l_count NUMBER;

Line 1118: l_table BSC_METADATA_OPTIMIZER_PKG.clsBasicTable;

1114: pSeverity IN NUMBER DEFAULT FND_LOG.LEVEL_STATEMENT,
1115: pForce IN boolean default false)
1116: IS
1117: l_count NUMBER;
1118: l_table BSC_METADATA_OPTIMIZER_PKG.clsBasicTable;
1119: BEGIN
1120: IF (pTable.count=0) THEN
1121: return;
1122: END IF;

Line 1133: pTable IN BSC_METADATA_OPTIMIZER_PKG.tab_string,

1129: END LOOP;
1130: END;
1131:
1132: PROCEDURE write_this(
1133: pTable IN BSC_METADATA_OPTIMIZER_PKG.tab_string,
1134: ind IN NUMBER default null,
1135: pSeverity IN NUMBER DEFAULT FND_LOG.LEVEL_STATEMENT,
1136: pForce IN boolean default false)
1137: IS

Line 1139: IF BSC_METADATA_OPTIMIZER_PKG.g_log or pForce THEN

1135: pSeverity IN NUMBER DEFAULT FND_LOG.LEVEL_STATEMENT,
1136: pForce IN boolean default false)
1137: IS
1138: BEGIN
1139: IF BSC_METADATA_OPTIMIZER_PKG.g_log or pForce THEN
1140: writeTmp(pTable.value, pSeverity, pForce);
1141: END IF;
1142: END;
1143:

Line 1145: pTable IN BSC_METADATA_OPTIMIZER_PKG.tab_tab_string,

1141: END IF;
1142: END;
1143:
1144: PROCEDURE write_this(
1145: pTable IN BSC_METADATA_OPTIMIZER_PKG.tab_tab_string,
1146: pSeverity IN NUMBER DEFAULT FND_LOG.LEVEL_STATEMENT,
1147: pForce IN boolean default false)
1148: IS
1149: l_count NUMBER;

Line 1150: l_table BSC_METADATA_OPTIMIZER_PKG.tab_string;

1146: pSeverity IN NUMBER DEFAULT FND_LOG.LEVEL_STATEMENT,
1147: pForce IN boolean default false)
1148: IS
1149: l_count NUMBER;
1150: l_table BSC_METADATA_OPTIMIZER_PKG.tab_string;
1151: BEGIN
1152: IF (pTable.count=0) THEN
1153: return;
1154: END IF;

Line 1158: IF BSC_METADATA_OPTIMIZER_PKG.g_log or pForce THEN

1154: END IF;
1155: l_count := pTable.first;
1156: LOOP
1157: l_table := pTable(l_count);
1158: IF BSC_METADATA_OPTIMIZER_PKG.g_log or pForce THEN
1159: writeTmp(l_table.value, pSeverity, pForce);
1160: END IF;
1161: exit when l_count = pTable.last;
1162: l_count := pTable.next(l_count);

Line 1167: pTable IN BSC_METADATA_OPTIMIZER_PKG.number_table,

1163: END LOOP;
1164: END;
1165:
1166: PROCEDURE write_this(
1167: pTable IN BSC_METADATA_OPTIMIZER_PKG.number_table,
1168: ind IN NUMBER default null,
1169: pSeverity IN NUMBER DEFAULT FND_LOG.LEVEL_STATEMENT,
1170: pForce IN boolean default false)
1171: IS

Line 1177: pTable IN BSC_METADATA_OPTIMIZER_PKG.clsOriginTable,

1173: write_this(pTable.value, pSeverity, pForce);
1174: END;
1175:
1176: PROCEDURE write_this(
1177: pTable IN BSC_METADATA_OPTIMIZER_PKG.clsOriginTable,
1178: ind IN NUMBER default null,
1179: pSeverity IN NUMBER DEFAULT FND_LOG.LEVEL_STATEMENT,
1180: pForce IN boolean default false)
1181: IS

Line 1185: IF BSC_METADATA_OPTIMIZER_PKG.g_log or pForce THEN

1181: IS
1182: l_count NUMBER;
1183: l_string VARCHAR2(30000);
1184: BEGIN
1185: IF BSC_METADATA_OPTIMIZER_PKG.g_log or pForce THEN
1186: writeTmp(ind||' Name='||pTable.Name, pSeverity, pForce);
1187: END IF;
1188: END;
1189:

Line 1191: pTable IN BSC_METADATA_OPTIMIZER_PKG.tab_clsOriginTable,

1187: END IF;
1188: END;
1189:
1190: PROCEDURE write_this(
1191: pTable IN BSC_METADATA_OPTIMIZER_PKG.tab_clsOriginTable,
1192: pSeverity IN NUMBER DEFAULT FND_LOG.LEVEL_STATEMENT,
1193: pForce IN boolean default false)
1194: IS
1195: l_count NUMBER;

Line 1196: l_table BSC_METADATA_OPTIMIZER_PKG.clsOriginTable;

1192: pSeverity IN NUMBER DEFAULT FND_LOG.LEVEL_STATEMENT,
1193: pForce IN boolean default false)
1194: IS
1195: l_count NUMBER;
1196: l_table BSC_METADATA_OPTIMIZER_PKG.clsOriginTable;
1197: BEGIN
1198: IF (pTable.count=0) THEN
1199: return;
1200: END IF;

Line 1211: pTable IN BSC_METADATA_OPTIMIZER_PKG.clsTable,

1207: END LOOP;
1208: END;
1209:
1210: PROCEDURE write_this(
1211: pTable IN BSC_METADATA_OPTIMIZER_PKG.clsTable,
1212: ind IN NUMBER default null,
1213: pSeverity IN NUMBER DEFAULT FND_LOG.LEVEL_STATEMENT,
1214: pForce IN boolean default false)
1215: IS

Line 1219: IF BSC_METADATA_OPTIMIZER_PKG.g_log or pForce THEN

1215: IS
1216: l_count NUMBER;
1217: l_string VARCHAR2(30000);
1218: BEGIN
1219: IF BSC_METADATA_OPTIMIZER_PKG.g_log or pForce THEN
1220: writeTmp(ind||' Name='||pTable.Name||', Type ='||pTable.type||', Ind#='||pTable.indicator||
1221: ', DimSet='||pTable.configuration||', Per = '||pTable.periodicity||', EDW_Flag='||pTable.EDW_Flag||
1222: ', ProdTable='||boolean_decode(pTable.isProductionTable)||
1223: ', ProdTableAltered='||boolean_decode(pTable.isProductionTableAltered)||

Line 1244: pTable IN BSC_METADATA_OPTIMIZER_PKG.tab_clsTable,

1240: END IF;
1241: END;
1242:
1243: PROCEDURE write_this(
1244: pTable IN BSC_METADATA_OPTIMIZER_PKG.tab_clsTable,
1245: pSeverity IN NUMBER DEFAULT FND_LOG.LEVEL_STATEMENT,
1246: pForce IN boolean default false,
1247: pIgonoreProduction IN boolean default false)
1248: IS

Line 1250: l_table BSC_METADATA_OPTIMIZER_PKG.clsTable;

1246: pForce IN boolean default false,
1247: pIgonoreProduction IN boolean default false)
1248: IS
1249: l_count NUMBER;
1250: l_table BSC_METADATA_OPTIMIZER_PKG.clsTable;
1251: BEGIN
1252: IF (pTable.count=0) THEN
1253: return;
1254: END IF;

Line 1258: IF BSC_METADATA_OPTIMIZER_PKG.g_log or pForce THEN

1254: END IF;
1255: l_count := pTable.first;
1256: LOOP
1257: l_table := pTable(l_count);
1258: IF BSC_METADATA_OPTIMIZER_PKG.g_log or pForce THEN
1259: IF pIgonoreProduction AND (l_table.isProductionTable and NOT l_table.isProductionTableAltered) THEN
1260: null;
1261: ELSE
1262: writeTmp(' ', FND_LOG.LEVEL_STATEMENT, pForce);

Line 1274: pTable IN BSC_METADATA_OPTIMIZER_PKG.tab_clsDisAggField,

1270: END;
1271:
1272:
1273: PROCEDURE write_this(
1274: pTable IN BSC_METADATA_OPTIMIZER_PKG.tab_clsDisAggField,
1275: ind IN NUMBER default null,
1276: pSeverity IN NUMBER DEFAULT FND_LOG.LEVEL_STATEMENT,
1277: pForce IN boolean default false)
1278: IS

Line 1281: l_table BSC_METADATA_OPTIMIZER_PKG.clsDisAggField;

1277: pForce IN boolean default false)
1278: IS
1279: l_count NUMBER;
1280: l_string VARCHAR2(30000);
1281: l_table BSC_METADATA_OPTIMIZER_PKG.clsDisAggField;
1282: BEGIN
1283: IF (pTable.count=0) THEN
1284: return;
1285: END IF;

Line 1296: pTable IN BSC_METADATA_OPTIMIZER_PKG.clsDisAggField,

1292: END LOOP;
1293: END;
1294:
1295: PROCEDURE write_this(
1296: pTable IN BSC_METADATA_OPTIMIZER_PKG.clsDisAggField,
1297: ind IN NUMBER default null,
1298: pSeverity IN NUMBER DEFAULT FND_LOG.LEVEL_STATEMENT,
1299: pForce IN boolean default false)
1300: IS

Line 1304: IF BSC_METADATA_OPTIMIZER_PKG.g_log or pForce THEN

1300: IS
1301: l_count NUMBER;
1302: l_string VARCHAR2(30000);
1303: BEGIN
1304: IF BSC_METADATA_OPTIMIZER_PKG.g_log or pForce THEN
1305: writeTmp(
1306: ' Code='||pTable.Code||', Periodicity ='||pTable.Periodicity||', Origin='||pTable.Origin||
1307: ', Registered='||boolean_decode(pTable.Registered)||', isProduction='||boolean_decode(pTable.isProduction), pSeverity, pForce);
1308: writeTmp(' disagg keys =', pSeverity, pForce);

Line 1319: pTable IN BSC_METADATA_OPTIMIZER_PKG.clsDisAggField,

1315:
1316: PROCEDURE write_this(
1317: pTableName IN VARCHAR2,
1318: pFieldName IN VARCHAR2,
1319: pTable IN BSC_METADATA_OPTIMIZER_PKG.clsDisAggField,
1320: ind IN NUMBER default null,
1321: pSeverity IN NUMBER DEFAULT FND_LOG.LEVEL_STATEMENT,
1322: pForce IN boolean default false) IS
1323: l_count NUMBER;

Line 1326: IF BSC_METADATA_OPTIMIZER_PKG.g_log or pForce THEN

1322: pForce IN boolean default false) IS
1323: l_count NUMBER;
1324: l_string VARCHAR2(30000);
1325: BEGIN
1326: IF BSC_METADATA_OPTIMIZER_PKG.g_log or pForce THEN
1327: writeTmp(' '||ind||' Code='||pTable.Code||', Periodicity ='||pTable.Periodicity||', Origin='||pTable.Origin||
1328: ', Registered='||boolean_decode(pTable.Registered), pSeverity, pForce);
1329: writeTmp(' disagg keys =', pSeverity, pForce);
1330: write_this(

Line 1341: pTable IN BSC_METADATA_OPTIMIZER_PKG.tab_clsDisAggField,

1337:
1338: PROCEDURE write_this(
1339: pTableName IN VARCHAR2,
1340: pFieldName IN VARCHAR2,
1341: pTable IN BSC_METADATA_OPTIMIZER_PKG.tab_clsDisAggField,
1342: pSeverity IN NUMBER DEFAULT FND_LOG.LEVEL_STATEMENT,
1343: pForce IN boolean default false)
1344: IS
1345: l_count NUMBER;

Line 1346: l_table BSC_METADATA_OPTIMIZER_PKG.clsDisAggField;

1342: pSeverity IN NUMBER DEFAULT FND_LOG.LEVEL_STATEMENT,
1343: pForce IN boolean default false)
1344: IS
1345: l_count NUMBER;
1346: l_table BSC_METADATA_OPTIMIZER_PKG.clsDisAggField;
1347: BEGIN
1348: IF (pTable.count=0) THEN
1349: return;
1350: END IF;

Line 1363: pTable IN BSC_METADATA_OPTIMIZER_PKG.clsUniqueField,

1359:
1360:
1361: PROCEDURE write_this(
1362: pTableName IN VARCHAR2,
1363: pTable IN BSC_METADATA_OPTIMIZER_PKG.clsUniqueField,
1364: ind IN NUMBER default null,
1365: pSeverity IN NUMBER DEFAULT FND_LOG.LEVEL_STATEMENT,
1366: pForce IN boolean default false)
1367: IS

Line 1371: IF BSC_METADATA_OPTIMIZER_PKG.g_log or pForce THEN

1367: IS
1368: l_count NUMBER;
1369: l_string VARCHAR2(30000);
1370: BEGIN
1371: IF BSC_METADATA_OPTIMIZER_PKG.g_log or pForce THEN
1372: writeTmp(ind||' field='||pTable.fieldName||', source='||pTable.source||', group='||pTable.measureGroup||', aggFunction ='||pTable.aggFunction||', EDW_Flag='||pTable.EDW_Flag||',impl_type='||pTable.impl_type||' key_combinations=', pSeverity, pForce);
1373: write_this(pTableName, pTable.fieldName,
1374: pTable.key_Combinations,
1375: pSeverity, pForce);

Line 1381: pTable IN BSC_METADATA_OPTIMIZER_PKG.tab_clsUniqueField,

1377: END;
1378:
1379: PROCEDURE write_this(
1380: pTableName IN VARCHAR2,
1381: pTable IN BSC_METADATA_OPTIMIZER_PKG.tab_clsUniqueField,
1382: pSeverity IN NUMBER DEFAULT FND_LOG.LEVEL_STATEMENT,
1383: pForce IN boolean default false)
1384: IS
1385: l_count NUMBER;

Line 1386: l_table BSC_METADATA_OPTIMIZER_PKG.clsUniqueField;

1382: pSeverity IN NUMBER DEFAULT FND_LOG.LEVEL_STATEMENT,
1383: pForce IN boolean default false)
1384: IS
1385: l_count NUMBER;
1386: l_table BSC_METADATA_OPTIMIZER_PKG.clsUniqueField;
1387: BEGIN
1388: IF (pTable.count=0) THEN
1389: return;
1390: END IF;

Line 1402: pTable IN BSC_METADATA_OPTIMIZER_PKG.clsDBColumn,

1398: END;
1399:
1400:
1401: PROCEDURE write_this(
1402: pTable IN BSC_METADATA_OPTIMIZER_PKG.clsDBColumn,
1403: ind IN NUMBER default null,
1404: pSeverity IN NUMBER DEFAULT FND_LOG.LEVEL_STATEMENT,
1405: pForce IN boolean default false)
1406: IS

Line 1410: IF BSC_METADATA_OPTIMIZER_PKG.g_log or pForce THEN

1406: IS
1407: l_count NUMBER;
1408: l_string VARCHAR2(30000);
1409: BEGIN
1410: IF BSC_METADATA_OPTIMIZER_PKG.g_log or pForce THEN
1411: writeTmp(ind||' columnName='||pTable.columnName||', columnTYPE ='||pTable.columnTYPE||', columnLength='||pTable.columnLength
1412: ||' isKey='||boolean_decode(pTable.isKey), pSeverity, pForce);
1413: END IF;
1414: END;

Line 1417: pTable IN BSC_METADATA_OPTIMIZER_PKG.tab_clsDBColumn,

1413: END IF;
1414: END;
1415:
1416: PROCEDURE write_this(
1417: pTable IN BSC_METADATA_OPTIMIZER_PKG.tab_clsDBColumn,
1418: pSeverity IN NUMBER DEFAULT FND_LOG.LEVEL_STATEMENT,
1419: pForce IN boolean default false)
1420: IS
1421: l_count NUMBER;

Line 1422: l_table BSC_METADATA_OPTIMIZER_PKG.clsDBColumn;

1418: pSeverity IN NUMBER DEFAULT FND_LOG.LEVEL_STATEMENT,
1419: pForce IN boolean default false)
1420: IS
1421: l_count NUMBER;
1422: l_table BSC_METADATA_OPTIMIZER_PKG.clsDBColumn;
1423: BEGIN
1424: IF (pTable.count=0) THEN
1425: return;
1426: END IF;

Line 1436: pTable IN BSC_METADATA_OPTIMIZER_PKG.TNewITables,

1432: l_count := pTable.next(l_count);
1433: END LOOP;
1434: END;
1435: PROCEDURE write_this(
1436: pTable IN BSC_METADATA_OPTIMIZER_PKG.TNewITables,
1437: ind IN NUMBER default null,
1438: pSeverity IN NUMBER DEFAULT FND_LOG.LEVEL_STATEMENT,
1439: pForce IN boolean default false)
1440: IS

Line 1444: IF BSC_METADATA_OPTIMIZER_PKG.g_log or pForce THEN

1440: IS
1441: l_count NUMBER;
1442: l_string VARCHAR2(30000);
1443: BEGIN
1444: IF BSC_METADATA_OPTIMIZER_PKG.g_log or pForce THEN
1445: writeTmp(ind||' Name='||pTable.Name||', periodicity ='||pTable.periodicity||', numFields='||pTable.numFields
1446: ||', NumIndicators='||pTable.NumIndicators ||', Fields='||pTable.Fields|| ', Indicators='||pTable.Indicators, pSeverity, pForce);
1447: END IF;
1448: END;

Line 1451: pTable IN BSC_METADATA_OPTIMIZER_PKG.tab_TNewITables,

1447: END IF;
1448: END;
1449:
1450: PROCEDURE write_this(
1451: pTable IN BSC_METADATA_OPTIMIZER_PKG.tab_TNewITables,
1452: pSeverity IN NUMBER DEFAULT FND_LOG.LEVEL_STATEMENT,
1453: pForce IN boolean default false)
1454: IS
1455: l_count NUMBER;

Line 1456: l_table BSC_METADATA_OPTIMIZER_PKG.TNewITables;

1452: pSeverity IN NUMBER DEFAULT FND_LOG.LEVEL_STATEMENT,
1453: pForce IN boolean default false)
1454: IS
1455: l_count NUMBER;
1456: l_table BSC_METADATA_OPTIMIZER_PKG.TNewITables;
1457: BEGIN
1458: IF (pTable.count=0) THEN
1459: return;
1460: END IF;

Line 1480: PROCEDURE addTable (pTable IN BSC_METADATA_OPTIMIZER_PKG.clsTable,

1476: -- pTable: Table to be added to gTables
1477: -- proc: Procedure that calls this API
1478: --****************************************************************************
1479:
1480: PROCEDURE addTable (pTable IN BSC_METADATA_OPTIMIZER_PKG.clsTable,
1481: proc IN VARCHAR2) IS
1482: l_temp1 NUMBER;
1483: lTable BSC_METADATA_OPTIMIZER_PKG.clsTable;
1484: l_stack VARCHAR2(32000);

Line 1483: lTable BSC_METADATA_OPTIMIZER_PKG.clsTable;

1479:
1480: PROCEDURE addTable (pTable IN BSC_METADATA_OPTIMIZER_PKG.clsTable,
1481: proc IN VARCHAR2) IS
1482: l_temp1 NUMBER;
1483: lTable BSC_METADATA_OPTIMIZER_PKG.clsTable;
1484: l_stack VARCHAR2(32000);
1485: BEGIN
1486: l_stack := 'Inside addTable for Table name = '||pTable.name||' called from '||proc|| ', gTables_counter='||BSC_METADATA_OPTIMIZER_PKG.gTables_counter;
1487: lTable := pTable;

Line 1486: l_stack := 'Inside addTable for Table name = '||pTable.name||' called from '||proc|| ', gTables_counter='||BSC_METADATA_OPTIMIZER_PKG.gTables_counter;

1482: l_temp1 NUMBER;
1483: lTable BSC_METADATA_OPTIMIZER_PKG.clsTable;
1484: l_stack VARCHAR2(32000);
1485: BEGIN
1486: l_stack := 'Inside addTable for Table name = '||pTable.name||' called from '||proc|| ', gTables_counter='||BSC_METADATA_OPTIMIZER_PKG.gTables_counter;
1487: lTable := pTable;
1488: IF findIndex(BSC_METADATA_OPTIMIZER_PKG.gTables, lTable.name) >=0 THEN -- exists
1489: return;
1490: END IF;

Line 1488: IF findIndex(BSC_METADATA_OPTIMIZER_PKG.gTables, lTable.name) >=0 THEN -- exists

1484: l_stack VARCHAR2(32000);
1485: BEGIN
1486: l_stack := 'Inside addTable for Table name = '||pTable.name||' called from '||proc|| ', gTables_counter='||BSC_METADATA_OPTIMIZER_PKG.gTables_counter;
1487: lTable := pTable;
1488: IF findIndex(BSC_METADATA_OPTIMIZER_PKG.gTables, lTable.name) >=0 THEN -- exists
1489: return;
1490: END IF;
1491: l_temp1 := BSC_METADATA_OPTIMIZER_PKG.gTables_counter;
1492: BSC_METADATA_OPTIMIZER_PKG.gTables(l_temp1) := lTable;

Line 1491: l_temp1 := BSC_METADATA_OPTIMIZER_PKG.gTables_counter;

1487: lTable := pTable;
1488: IF findIndex(BSC_METADATA_OPTIMIZER_PKG.gTables, lTable.name) >=0 THEN -- exists
1489: return;
1490: END IF;
1491: l_temp1 := BSC_METADATA_OPTIMIZER_PKG.gTables_counter;
1492: BSC_METADATA_OPTIMIZER_PKG.gTables(l_temp1) := lTable;
1493: l_stack := l_stack ||newline||'Adding gTables('||l_temp1||') = '||lTable.name;
1494: BSC_METADATA_OPTIMIZER_PKG.gTables_counter := BSC_METADATA_OPTIMIZER_PKG.gTables_counter + 1;
1495: EXCEPTION WHEN OTHERS THEN

Line 1492: BSC_METADATA_OPTIMIZER_PKG.gTables(l_temp1) := lTable;

1488: IF findIndex(BSC_METADATA_OPTIMIZER_PKG.gTables, lTable.name) >=0 THEN -- exists
1489: return;
1490: END IF;
1491: l_temp1 := BSC_METADATA_OPTIMIZER_PKG.gTables_counter;
1492: BSC_METADATA_OPTIMIZER_PKG.gTables(l_temp1) := lTable;
1493: l_stack := l_stack ||newline||'Adding gTables('||l_temp1||') = '||lTable.name;
1494: BSC_METADATA_OPTIMIZER_PKG.gTables_counter := BSC_METADATA_OPTIMIZER_PKG.gTables_counter + 1;
1495: EXCEPTION WHEN OTHERS THEN
1496: writeTmp('Exception in addTable : '||sqlerrm, FND_LOG.LEVEL_UNEXPECTED, true);

Line 1494: BSC_METADATA_OPTIMIZER_PKG.gTables_counter := BSC_METADATA_OPTIMIZER_PKG.gTables_counter + 1;

1490: END IF;
1491: l_temp1 := BSC_METADATA_OPTIMIZER_PKG.gTables_counter;
1492: BSC_METADATA_OPTIMIZER_PKG.gTables(l_temp1) := lTable;
1493: l_stack := l_stack ||newline||'Adding gTables('||l_temp1||') = '||lTable.name;
1494: BSC_METADATA_OPTIMIZER_PKG.gTables_counter := BSC_METADATA_OPTIMIZER_PKG.gTables_counter + 1;
1495: EXCEPTION WHEN OTHERS THEN
1496: writeTmp('Exception in addTable : '||sqlerrm, FND_LOG.LEVEL_UNEXPECTED, true);
1497: BSC_MO_HELPER_PKG.write_this(pTable, 1, FND_LOG.LEVEL_UNEXPECTED, true);
1498: writeTmp('l_stack is : '||l_stack, FND_LOG.LEVEL_UNEXPECTED, true);

Line 1514: PROCEDURE addTable (pTable IN BSC_METADATA_OPTIMIZER_PKG.clsTable,

1510: -- pData : Data fields for the table
1511: --****************************************************************************
1512:
1513:
1514: PROCEDURE addTable (pTable IN BSC_METADATA_OPTIMIZER_PKG.clsTable,
1515: pKeyFields IN OUT NOCOPY BSC_METADATA_OPTIMIZER_PKG.tab_clsKeyField,
1516: pData IN OUT NOCOPY BSC_METADATA_OPTIMIZER_PKG.tab_clsDataField,
1517: proc IN VARCHAR2) IS
1518: l_temp1 NUMBER;

Line 1515: pKeyFields IN OUT NOCOPY BSC_METADATA_OPTIMIZER_PKG.tab_clsKeyField,

1511: --****************************************************************************
1512:
1513:
1514: PROCEDURE addTable (pTable IN BSC_METADATA_OPTIMIZER_PKG.clsTable,
1515: pKeyFields IN OUT NOCOPY BSC_METADATA_OPTIMIZER_PKG.tab_clsKeyField,
1516: pData IN OUT NOCOPY BSC_METADATA_OPTIMIZER_PKG.tab_clsDataField,
1517: proc IN VARCHAR2) IS
1518: l_temp1 NUMBER;
1519: lTable BSC_METADATA_OPTIMIZER_PKG.clsTable;

Line 1516: pData IN OUT NOCOPY BSC_METADATA_OPTIMIZER_PKG.tab_clsDataField,

1512:
1513:
1514: PROCEDURE addTable (pTable IN BSC_METADATA_OPTIMIZER_PKG.clsTable,
1515: pKeyFields IN OUT NOCOPY BSC_METADATA_OPTIMIZER_PKG.tab_clsKeyField,
1516: pData IN OUT NOCOPY BSC_METADATA_OPTIMIZER_PKG.tab_clsDataField,
1517: proc IN VARCHAR2) IS
1518: l_temp1 NUMBER;
1519: lTable BSC_METADATA_OPTIMIZER_PKG.clsTable;
1520: BEGIN

Line 1519: lTable BSC_METADATA_OPTIMIZER_PKG.clsTable;

1515: pKeyFields IN OUT NOCOPY BSC_METADATA_OPTIMIZER_PKG.tab_clsKeyField,
1516: pData IN OUT NOCOPY BSC_METADATA_OPTIMIZER_PKG.tab_clsDataField,
1517: proc IN VARCHAR2) IS
1518: l_temp1 NUMBER;
1519: lTable BSC_METADATA_OPTIMIZER_PKG.clsTable;
1520: BEGIN
1521:
1522: lTable := pTable;
1523: IF findIndex(BSC_METADATA_OPTIMIZER_PKG.gTables, lTable.name) >=0 THEN -- exists

Line 1523: IF findIndex(BSC_METADATA_OPTIMIZER_PKG.gTables, lTable.name) >=0 THEN -- exists

1519: lTable BSC_METADATA_OPTIMIZER_PKG.clsTable;
1520: BEGIN
1521:
1522: lTable := pTable;
1523: IF findIndex(BSC_METADATA_OPTIMIZER_PKG.gTables, lTable.name) >=0 THEN -- exists
1524: return;
1525: END IF;
1526: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
1527: --BSC_MO_HELPER_PKG.writeTmp('Adding gTables thru PROC '||proc||

Line 1526: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN

1522: lTable := pTable;
1523: IF findIndex(BSC_METADATA_OPTIMIZER_PKG.gTables, lTable.name) >=0 THEN -- exists
1524: return;
1525: END IF;
1526: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
1527: --BSC_MO_HELPER_PKG.writeTmp('Adding gTables thru PROC '||proc||
1528: -- ', gTables('||BSC_METADATA_OPTIMIZER_PKG.gTables_counter||') is '||lTable.name||' with Data = '||pData.count||', Keys='||pKeyFields.count, FND_LOG.LEVEL_STATEMENT);
1529: null;
1530: END IF;

Line 1528: -- ', gTables('||BSC_METADATA_OPTIMIZER_PKG.gTables_counter||') is '||lTable.name||' with Data = '||pData.count||', Keys='||pKeyFields.count, FND_LOG.LEVEL_STATEMENT);

1524: return;
1525: END IF;
1526: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
1527: --BSC_MO_HELPER_PKG.writeTmp('Adding gTables thru PROC '||proc||
1528: -- ', gTables('||BSC_METADATA_OPTIMIZER_PKG.gTables_counter||') is '||lTable.name||' with Data = '||pData.count||', Keys='||pKeyFields.count, FND_LOG.LEVEL_STATEMENT);
1529: null;
1530: END IF;
1531:
1532: lTable.keys := pKeyFields;

Line 1534: BSC_METADATA_OPTIMIZER_PKG.gTables(BSC_METADATA_OPTIMIZER_PKG.gTables_counter) := lTable;

1530: END IF;
1531:
1532: lTable.keys := pKeyFields;
1533: lTable.data := pData;
1534: BSC_METADATA_OPTIMIZER_PKG.gTables(BSC_METADATA_OPTIMIZER_PKG.gTables_counter) := lTable;
1535: BSC_METADATA_OPTIMIZER_PKG.gTables_counter := BSC_METADATA_OPTIMIZER_PKG.gTables_counter + 1;
1536:
1537: EXCEPTION WHEN OTHERS THEN
1538: writeTmp('Exception in addTable : '||sqlerrm, FND_LOG.LEVEL_UNEXPECTED, true);

Line 1535: BSC_METADATA_OPTIMIZER_PKG.gTables_counter := BSC_METADATA_OPTIMIZER_PKG.gTables_counter + 1;

1531:
1532: lTable.keys := pKeyFields;
1533: lTable.data := pData;
1534: BSC_METADATA_OPTIMIZER_PKG.gTables(BSC_METADATA_OPTIMIZER_PKG.gTables_counter) := lTable;
1535: BSC_METADATA_OPTIMIZER_PKG.gTables_counter := BSC_METADATA_OPTIMIZER_PKG.gTables_counter + 1;
1536:
1537: EXCEPTION WHEN OTHERS THEN
1538: writeTmp('Exception in addTable : '||sqlerrm, FND_LOG.LEVEL_UNEXPECTED, true);
1539: write_this(pTable, 1, FND_LOG.LEVEL_UNEXPECTED, true);

Line 1643: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN

1639: PROCEDURE SaveOptimizationMode IS
1640: i NUMBER;
1641: l_error VARCHAR2(400);
1642: BEGIN
1643: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
1644: BSC_MO_HELPER_PKG.writeTmp('Inside SaveOptimizationMode');
1645: END IF;
1646:
1647: IF (BSC_METADATA_OPTIMIZER_PKG.gINdicators.count = 0) THEN

Line 1647: IF (BSC_METADATA_OPTIMIZER_PKG.gINdicators.count = 0) THEN

1643: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
1644: BSC_MO_HELPER_PKG.writeTmp('Inside SaveOptimizationMode');
1645: END IF;
1646:
1647: IF (BSC_METADATA_OPTIMIZER_PKG.gINdicators.count = 0) THEN
1648: return;
1649: END IF;
1650:
1651: i := BSC_METADATA_OPTIMIZER_PKG.gIndicators.first;

Line 1651: i := BSC_METADATA_OPTIMIZER_PKG.gIndicators.first;

1647: IF (BSC_METADATA_OPTIMIZER_PKG.gINdicators.count = 0) THEN
1648: return;
1649: END IF;
1650:
1651: i := BSC_METADATA_OPTIMIZER_PKG.gIndicators.first;
1652:
1653: LOOP
1654: IF BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).Action_Flag <> 2 THEN
1655: --This is not a deleted Kpi

Line 1654: IF BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).Action_Flag <> 2 THEN

1650:
1651: i := BSC_METADATA_OPTIMIZER_PKG.gIndicators.first;
1652:
1653: LOOP
1654: IF BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).Action_Flag <> 2 THEN
1655: --This is not a deleted Kpi
1656: WriteInfoMatrix(BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).Code, 'DB_TRANSFORM', BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).OptimizationMode);
1657: End IF;
1658: EXIT WHEN i = BSC_METADATA_OPTIMIZER_PKG.gIndicators.last;

Line 1656: WriteInfoMatrix(BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).Code, 'DB_TRANSFORM', BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).OptimizationMode);

1652:
1653: LOOP
1654: IF BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).Action_Flag <> 2 THEN
1655: --This is not a deleted Kpi
1656: WriteInfoMatrix(BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).Code, 'DB_TRANSFORM', BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).OptimizationMode);
1657: End IF;
1658: EXIT WHEN i = BSC_METADATA_OPTIMIZER_PKG.gIndicators.last;
1659: i := BSC_METADATA_OPTIMIZER_PKG.gIndicators.next(i);
1660: END LOOP;

Line 1658: EXIT WHEN i = BSC_METADATA_OPTIMIZER_PKG.gIndicators.last;

1654: IF BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).Action_Flag <> 2 THEN
1655: --This is not a deleted Kpi
1656: WriteInfoMatrix(BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).Code, 'DB_TRANSFORM', BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).OptimizationMode);
1657: End IF;
1658: EXIT WHEN i = BSC_METADATA_OPTIMIZER_PKG.gIndicators.last;
1659: i := BSC_METADATA_OPTIMIZER_PKG.gIndicators.next(i);
1660: END LOOP;
1661: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
1662: BSC_MO_HELPER_PKG.writeTmp('Completed SaveOptimizationMode');

Line 1659: i := BSC_METADATA_OPTIMIZER_PKG.gIndicators.next(i);

1655: --This is not a deleted Kpi
1656: WriteInfoMatrix(BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).Code, 'DB_TRANSFORM', BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).OptimizationMode);
1657: End IF;
1658: EXIT WHEN i = BSC_METADATA_OPTIMIZER_PKG.gIndicators.last;
1659: i := BSC_METADATA_OPTIMIZER_PKG.gIndicators.next(i);
1660: END LOOP;
1661: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
1662: BSC_MO_HELPER_PKG.writeTmp('Completed SaveOptimizationMode');
1663: END IF;

Line 1661: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN

1657: End IF;
1658: EXIT WHEN i = BSC_METADATA_OPTIMIZER_PKG.gIndicators.last;
1659: i := BSC_METADATA_OPTIMIZER_PKG.gIndicators.next(i);
1660: END LOOP;
1661: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
1662: BSC_MO_HELPER_PKG.writeTmp('Completed SaveOptimizationMode');
1663: END IF;
1664:
1665:

Line 1691: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN

1687: SELECT TABLE_NAME FROM ALL_TAB_COLUMNS
1688: WHERE TABLE_NAME = p_table AND COLUMN_NAME = upper(p_column) AND OWNER = p3;
1689: l_error VARCHAR2(400);
1690: BEGIN
1691: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
1692: BSC_MO_HELPER_PKG.writeTmp('Inside table_column_exists', FND_LOG.LEVEL_STATEMENT);
1693: END IF;
1694:
1695: OPEN C1(UPPER(BSC_METADATA_OPTIMIZER_PKG.gBSCSchema));

Line 1695: OPEN C1(UPPER(BSC_METADATA_OPTIMIZER_PKG.gBSCSchema));

1691: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
1692: BSC_MO_HELPER_PKG.writeTmp('Inside table_column_exists', FND_LOG.LEVEL_STATEMENT);
1693: END IF;
1694:
1695: OPEN C1(UPPER(BSC_METADATA_OPTIMIZER_PKG.gBSCSchema));
1696: FETCH c1 INTO l_table;
1697: IF (c1%FOUND) THEN
1698: CLOSE c1;
1699: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN

Line 1699: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN

1695: OPEN C1(UPPER(BSC_METADATA_OPTIMIZER_PKG.gBSCSchema));
1696: FETCH c1 INTO l_table;
1697: IF (c1%FOUND) THEN
1698: CLOSE c1;
1699: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
1700: BSC_MO_HELPER_PKG.writeTmp('Completed table_column_exists, returning TRUE', FND_LOG.LEVEL_STATEMENT);
1701: END IF;
1702:
1703: return true;

Line 1706: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN

1702:
1703: return true;
1704: END IF;
1705: CLOSE c1;
1706: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
1707: BSC_MO_HELPER_PKG.writeTmp('Completed table_column_exists, returning FALSE', FND_LOG.LEVEL_STATEMENT);
1708: END IF;
1709:
1710: return false;

Line 1822: Function FindIndex(arrStr IN BSC_METADATA_OPTIMIZER_PKG.tab_clsKeyField, findThis in varchar2)

1818: -- ArrStr : array
1819: -- str: string to look for
1820: --***************************************************************************
1821:
1822: Function FindIndex(arrStr IN BSC_METADATA_OPTIMIZER_PKG.tab_clsKeyField, findThis in varchar2)
1823: return NUMBER IS
1824: i NUMBER :=0;
1825: BEGIN
1826: IF (arrStr.count =0) THEN

Line 1853: Function FindIndex(arrStr IN BSC_METADATA_OPTIMIZER_PKG.tab_clsLevels, findThis in varchar2)

1849: -- ArrStr : array
1850: -- str: string to look for
1851: --***************************************************************************
1852:
1853: Function FindIndex(arrStr IN BSC_METADATA_OPTIMIZER_PKG.tab_clsLevels, findThis in varchar2)
1854: return NUMBER IS
1855: i NUMBER :=0;
1856: BEGIN
1857: IF (arrStr.count =0) THEN

Line 1873: Function FindIndex(arrStr IN BSC_METADATA_OPTIMIZER_PKG.tab_clsMasterTable, findThis in varchar2) return NUMBER IS

1869: return -1;
1870: End;
1871:
1872:
1873: Function FindIndex(arrStr IN BSC_METADATA_OPTIMIZER_PKG.tab_clsMasterTable, findThis in varchar2) return NUMBER IS
1874: i NUMBER :=0;
1875: BEGIN
1876: i := arrStr.count;
1877: IF (i =0) THEN

Line 1891: Function FindKeyIndex(arrStr IN BSC_METADATA_OPTIMIZER_PKG.tab_clsMasterTable, keyName in varchar2) return NUMBER IS

1887: END LOOP;
1888: return -1;
1889: End;
1890:
1891: Function FindKeyIndex(arrStr IN BSC_METADATA_OPTIMIZER_PKG.tab_clsMasterTable, keyName in varchar2) return NUMBER IS
1892: i NUMBER :=0;
1893: BEGIN
1894: i := arrStr.count;
1895: IF (i =0) THEN

Line 1910: Function FindIndex(arrStr IN BSC_METADATA_OPTIMIZER_PKG.tab_clsTable, findThis in varchar2) return NUMBER IS

1906: return -1;
1907: End;
1908:
1909:
1910: Function FindIndex(arrStr IN BSC_METADATA_OPTIMIZER_PKG.tab_clsTable, findThis in varchar2) return NUMBER IS
1911: i NUMBER :=0;
1912: BEGIN
1913: i := arrStr.count;
1914:

Line 1916: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN

1912: BEGIN
1913: i := arrStr.count;
1914:
1915: IF (i =0) THEN
1916: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
1917: writetmp('Done with FindIndex for tab_clsTable, zero count, returning -1, findThis = '||findThis);
1918: END IF;
1919:
1920: RETURN -1;

Line 1936: Function FindIndex(arrStr IN BSC_METADATA_OPTIMIZER_PKG.tab_clsBasicTable, findThis in varchar2) return NUMBER IS

1932: return -1;
1933: End;
1934:
1935:
1936: Function FindIndex(arrStr IN BSC_METADATA_OPTIMIZER_PKG.tab_clsBasicTable, findThis in varchar2) return NUMBER IS
1937: i NUMBER :=0;
1938: BEGIN
1939: i := arrStr.count;
1940: IF (i =0) THEN

Line 1956: Function FindIndex(arrStr IN BSC_METADATA_OPTIMIZER_PKG.tab_clsIndicator, findThis in number) return NUMBER IS

1952: return -1;
1953: End;
1954:
1955:
1956: Function FindIndex(arrStr IN BSC_METADATA_OPTIMIZER_PKG.tab_clsIndicator, findThis in number) return NUMBER IS
1957: i NUMBER :=0;
1958: BEGIN
1959:
1960: i := arrStr.count;

Line 1977: Function FindIndex(arrStr IN BSC_METADATA_OPTIMIZER_PKG.tab_clsUniqueField, findThis in varchar2, p_source IN VARCHAR2, p_impl_type IN NUMBER)

1973: END LOOP;
1974: return -1;
1975: End;
1976:
1977: Function FindIndex(arrStr IN BSC_METADATA_OPTIMIZER_PKG.tab_clsUniqueField, findThis in varchar2, p_source IN VARCHAR2, p_impl_type IN NUMBER)
1978: return NUMBER IS
1979: i NUMBER :=0;
1980: BEGIN
1981: IF (arrStr.count =0) THEN

Line 1999: Function FindIndex(arrStr IN BSC_METADATA_OPTIMIZER_PKG.tab_clsDisaggField, findThis in NUMBER)

1995: return -1;
1996: End;
1997:
1998:
1999: Function FindIndex(arrStr IN BSC_METADATA_OPTIMIZER_PKG.tab_clsDisaggField, findThis in NUMBER)
2000: return NUMBER IS
2001: i NUMBER :=0;
2002: BEGIN
2003: IF (arrStr.count =0) THEN

Line 2019: Function FindIndex(arrStr IN BSC_METADATA_OPTIMIZER_PKG.tab_clsMeasureLOV, findThis in VARCHAR2, p_source IN VARCHAR2, pIgnoreCase In Boolean)

2015: return -1;
2016: End;
2017:
2018: --BSC Autogen
2019: Function FindIndex(arrStr IN BSC_METADATA_OPTIMIZER_PKG.tab_clsMeasureLOV, findThis in VARCHAR2, p_source IN VARCHAR2, pIgnoreCase In Boolean)
2020: return NUMBER IS
2021: i NUMBER :=0;
2022: l_findThis VARCHAR2(100);
2023: BEGIN

Line 2053: Function FindIndex(arrStr IN BSC_METADATA_OPTIMIZER_PKG.tab_clsPeriodicity, findThis in NUMBER) return NUMBER IS

2049: END IF;
2050: return -1;
2051: End;
2052:
2053: Function FindIndex(arrStr IN BSC_METADATA_OPTIMIZER_PKG.tab_clsPeriodicity, findThis in NUMBER) return NUMBER IS
2054: i NUMBER;
2055: l_error VARCHAR2(4000);
2056: BEGIN
2057: IF (arrStr.count =0) THEN

Line 2079: Function FindIndex(arrStr IN BSC_METADATA_OPTIMIZER_PKG.tab_clsCalendar, findThis in NUMBER) return NUMBER IS

2075: writeTmp('Exception is '||l_error, FND_LOG.LEVEL_EXCEPTION, true);
2076: raise;
2077: End;
2078:
2079: Function FindIndex(arrStr IN BSC_METADATA_OPTIMIZER_PKG.tab_clsCalendar, findThis in NUMBER) return NUMBER IS
2080: i NUMBER;
2081: BEGIN
2082: IF (arrStr.count =0) THEN
2083: return -1;

Line 2105: FUNCTION new_clsUniqueField return BSC_METADATA_OPTIMIZER_PKG.clsUniqueField IS

2101: -- Returns an unitialized variable of class clsUniqueField.
2102: -- This is to clear up the memory of the object it is assigned to.
2103: --***************************************************************************
2104:
2105: FUNCTION new_clsUniqueField return BSC_METADATA_OPTIMIZER_PKG.clsUniqueField IS
2106: l_new BSC_METADATA_OPTIMIZER_PKG.clsUniqueField ;
2107: BEGIn
2108: return l_new;
2109: END;

Line 2106: l_new BSC_METADATA_OPTIMIZER_PKG.clsUniqueField ;

2102: -- This is to clear up the memory of the object it is assigned to.
2103: --***************************************************************************
2104:
2105: FUNCTION new_clsUniqueField return BSC_METADATA_OPTIMIZER_PKG.clsUniqueField IS
2106: l_new BSC_METADATA_OPTIMIZER_PKG.clsUniqueField ;
2107: BEGIn
2108: return l_new;
2109: END;
2110:

Line 2119: FUNCTION new_clsTable return BSC_METADATA_OPTIMIZER_PKG.clsTable IS

2115: -- Returns an unitialized variable of class clsTable.
2116: -- This is to clear up the memory of the object it is assigned to.
2117: --***************************************************************************
2118:
2119: FUNCTION new_clsTable return BSC_METADATA_OPTIMIZER_PKG.clsTable IS
2120: l_new BSC_METADATA_OPTIMIZER_PKG.clsTable ;
2121: BEGIn
2122: l_new.isProductionTable := false;
2123: return l_new;

Line 2120: l_new BSC_METADATA_OPTIMIZER_PKG.clsTable ;

2116: -- This is to clear up the memory of the object it is assigned to.
2117: --***************************************************************************
2118:
2119: FUNCTION new_clsTable return BSC_METADATA_OPTIMIZER_PKG.clsTable IS
2120: l_new BSC_METADATA_OPTIMIZER_PKG.clsTable ;
2121: BEGIn
2122: l_new.isProductionTable := false;
2123: return l_new;
2124: END;

Line 2133: FUNCTION new_clsDataField return BSC_METADATA_OPTIMIZER_PKG.clsDataField IS

2129: -- DESCRIPTION:
2130: -- Returns an unitialized variable of class clsDataField.
2131: -- This is to clear up the memory of the object it is assigned to.
2132: --***************************************************************************
2133: FUNCTION new_clsDataField return BSC_METADATA_OPTIMIZER_PKG.clsDataField IS
2134: l_new BSC_METADATA_OPTIMIZER_PKG.clsDataField ;
2135: BEGIn
2136: return l_new;
2137: END;

Line 2134: l_new BSC_METADATA_OPTIMIZER_PKG.clsDataField ;

2130: -- Returns an unitialized variable of class clsDataField.
2131: -- This is to clear up the memory of the object it is assigned to.
2132: --***************************************************************************
2133: FUNCTION new_clsDataField return BSC_METADATA_OPTIMIZER_PKG.clsDataField IS
2134: l_new BSC_METADATA_OPTIMIZER_PKG.clsDataField ;
2135: BEGIn
2136: return l_new;
2137: END;
2138:

Line 2146: FUNCTION new_clsDisAggField return BSC_METADATA_OPTIMIZER_PKG.clsDisAggField IS

2142: -- DESCRIPTION:
2143: -- Returns an unitialized variable of class clsDisAggField.
2144: -- This is to clear up the memory of the object it is assigned to.
2145: --***************************************************************************
2146: FUNCTION new_clsDisAggField return BSC_METADATA_OPTIMIZER_PKG.clsDisAggField IS
2147: l_new BSC_METADATA_OPTIMIZER_PKG.clsDisAggField ;
2148: BEGIn
2149: return l_new;
2150: END;

Line 2147: l_new BSC_METADATA_OPTIMIZER_PKG.clsDisAggField ;

2143: -- Returns an unitialized variable of class clsDisAggField.
2144: -- This is to clear up the memory of the object it is assigned to.
2145: --***************************************************************************
2146: FUNCTION new_clsDisAggField return BSC_METADATA_OPTIMIZER_PKG.clsDisAggField IS
2147: l_new BSC_METADATA_OPTIMIZER_PKG.clsDisAggField ;
2148: BEGIn
2149: return l_new;
2150: END;
2151: --***************************************************************************

Line 2158: FUNCTION new_clsKeyField return BSC_METADATA_OPTIMIZER_PKG.clsKeyField IS

2154: -- DESCRIPTION:
2155: -- Returns an unitialized variable of class clsKeyField.
2156: -- This is to clear up the memory of the object it is assigned to.
2157: --***************************************************************************
2158: FUNCTION new_clsKeyField return BSC_METADATA_OPTIMIZER_PKG.clsKeyField IS
2159: l_new BSC_METADATA_OPTIMIZER_PKG.clsKeyField ;
2160: BEGIn
2161: return l_new;
2162: END;

Line 2159: l_new BSC_METADATA_OPTIMIZER_PKG.clsKeyField ;

2155: -- Returns an unitialized variable of class clsKeyField.
2156: -- This is to clear up the memory of the object it is assigned to.
2157: --***************************************************************************
2158: FUNCTION new_clsKeyField return BSC_METADATA_OPTIMIZER_PKG.clsKeyField IS
2159: l_new BSC_METADATA_OPTIMIZER_PKG.clsKeyField ;
2160: BEGIn
2161: return l_new;
2162: END;
2163:

Line 2171: FUNCTION new_clsOriginTable return BSC_METADATA_OPTIMIZER_PKG.clsOriginTable IS

2167: -- DESCRIPTION:
2168: -- Returns an unitialized variable of class clsOriginTable.
2169: -- This is to clear up the memory of the object it is assigned to.
2170: --***************************************************************************
2171: FUNCTION new_clsOriginTable return BSC_METADATA_OPTIMIZER_PKG.clsOriginTable IS
2172: l_new BSC_METADATA_OPTIMIZER_PKG.clsOriginTable ;
2173: BEGIn
2174: return l_new;
2175: END;

Line 2172: l_new BSC_METADATA_OPTIMIZER_PKG.clsOriginTable ;

2168: -- Returns an unitialized variable of class clsOriginTable.
2169: -- This is to clear up the memory of the object it is assigned to.
2170: --***************************************************************************
2171: FUNCTION new_clsOriginTable return BSC_METADATA_OPTIMIZER_PKG.clsOriginTable IS
2172: l_new BSC_METADATA_OPTIMIZER_PKG.clsOriginTable ;
2173: BEGIn
2174: return l_new;
2175: END;
2176: --***************************************************************************

Line 2183: FUNCTION new_clsDBColumn return BSC_METADATA_OPTIMIZER_PKG.clsDBColumn IS

2179: -- DESCRIPTION:
2180: -- Returns an unitialized variable of class clsDBColumn.
2181: -- This is to clear up the memory of the object it is assigned to.
2182: --***************************************************************************
2183: FUNCTION new_clsDBColumn return BSC_METADATA_OPTIMIZER_PKG.clsDBColumn IS
2184: l_new BSC_METADATA_OPTIMIZER_PKG.clsDBColumn ;
2185: BEGIn
2186: return l_new;
2187: END;

Line 2184: l_new BSC_METADATA_OPTIMIZER_PKG.clsDBColumn ;

2180: -- Returns an unitialized variable of class clsDBColumn.
2181: -- This is to clear up the memory of the object it is assigned to.
2182: --***************************************************************************
2183: FUNCTION new_clsDBColumn return BSC_METADATA_OPTIMIZER_PKG.clsDBColumn IS
2184: l_new BSC_METADATA_OPTIMIZER_PKG.clsDBColumn ;
2185: BEGIn
2186: return l_new;
2187: END;
2188:

Line 2196: FUNCTION new_clsMeasureLOV return BSC_METADATA_OPTIMIZER_PKG.clsMeasureLOV IS

2192: -- DESCRIPTION:
2193: -- Returns an unitialized variable of class clsMeasureLOV.
2194: -- This is to clear up the memory of the object it is assigned to.
2195: --***************************************************************************
2196: FUNCTION new_clsMeasureLOV return BSC_METADATA_OPTIMIZER_PKG.clsMeasureLOV IS
2197: l_new BSC_METADATA_OPTIMIZER_PKG.clsMeasureLOV ;
2198: BEGIn
2199: return l_new;
2200: END;

Line 2197: l_new BSC_METADATA_OPTIMIZER_PKG.clsMeasureLOV ;

2193: -- Returns an unitialized variable of class clsMeasureLOV.
2194: -- This is to clear up the memory of the object it is assigned to.
2195: --***************************************************************************
2196: FUNCTION new_clsMeasureLOV return BSC_METADATA_OPTIMIZER_PKG.clsMeasureLOV IS
2197: l_new BSC_METADATA_OPTIMIZER_PKG.clsMeasureLOV ;
2198: BEGIn
2199: return l_new;
2200: END;
2201: --***************************************************************************

Line 2208: FUNCTION new_clsPeriodicity return BSC_METADATA_OPTIMIZER_PKG.clsPeriodicity IS

2204: -- DESCRIPTION:
2205: -- Returns an unitialized variable of class clsPeriodicity.
2206: -- This is to clear up the memory of the object it is assigned to.
2207: --***************************************************************************
2208: FUNCTION new_clsPeriodicity return BSC_METADATA_OPTIMIZER_PKG.clsPeriodicity IS
2209: l_new BSC_METADATA_OPTIMIZER_PKG.clsPeriodicity;
2210: BEGIn
2211: return l_new;
2212: END;

Line 2209: l_new BSC_METADATA_OPTIMIZER_PKG.clsPeriodicity;

2205: -- Returns an unitialized variable of class clsPeriodicity.
2206: -- This is to clear up the memory of the object it is assigned to.
2207: --***************************************************************************
2208: FUNCTION new_clsPeriodicity return BSC_METADATA_OPTIMIZER_PKG.clsPeriodicity IS
2209: l_new BSC_METADATA_OPTIMIZER_PKG.clsPeriodicity;
2210: BEGIn
2211: return l_new;
2212: END;
2213: --***************************************************************************

Line 2220: FUNCTION new_clsCalendar return BSC_METADATA_OPTIMIZER_PKG.clsCalendar IS

2216: -- DESCRIPTION:
2217: -- Returns an unitialized variable of class clsCalendar.
2218: -- This is to clear up the memory of the object it is assigned to.
2219: --***************************************************************************
2220: FUNCTION new_clsCalendar return BSC_METADATA_OPTIMIZER_PKG.clsCalendar IS
2221: l_new BSC_METADATA_OPTIMIZER_PKG.clsCalendar;
2222: BEGIn
2223: return l_new;
2224: END;

Line 2221: l_new BSC_METADATA_OPTIMIZER_PKG.clsCalendar;

2217: -- Returns an unitialized variable of class clsCalendar.
2218: -- This is to clear up the memory of the object it is assigned to.
2219: --***************************************************************************
2220: FUNCTION new_clsCalendar return BSC_METADATA_OPTIMIZER_PKG.clsCalendar IS
2221: l_new BSC_METADATA_OPTIMIZER_PKG.clsCalendar;
2222: BEGIn
2223: return l_new;
2224: END;
2225: --***************************************************************************

Line 2232: FUNCTION new_clsMasterTable return BSC_METADATA_OPTIMIZER_PKG.clsMasterTable IS

2228: -- DESCRIPTION:
2229: -- Returns an unitialized variable of class clsMasterTable.
2230: -- This is to clear up the memory of the object it is assigned to.
2231: --***************************************************************************
2232: FUNCTION new_clsMasterTable return BSC_METADATA_OPTIMIZER_PKG.clsMasterTable IS
2233: l_new BSC_METADATA_OPTIMIZER_PKG.clsMasterTable;
2234: BEGIn
2235: return l_new;
2236: END;

Line 2233: l_new BSC_METADATA_OPTIMIZER_PKG.clsMasterTable;

2229: -- Returns an unitialized variable of class clsMasterTable.
2230: -- This is to clear up the memory of the object it is assigned to.
2231: --***************************************************************************
2232: FUNCTION new_clsMasterTable return BSC_METADATA_OPTIMIZER_PKG.clsMasterTable IS
2233: l_new BSC_METADATA_OPTIMIZER_PKG.clsMasterTable;
2234: BEGIn
2235: return l_new;
2236: END;
2237: --***************************************************************************

Line 2244: FUNCTION new_clsLevels return BSC_METADATA_OPTIMIZER_PKG.clsLevels IS

2240: -- DESCRIPTION:
2241: -- Returns an unitialized variable of class clsLevels.
2242: -- This is to clear up the memory of the object it is assigned to.
2243: --***************************************************************************
2244: FUNCTION new_clsLevels return BSC_METADATA_OPTIMIZER_PKG.clsLevels IS
2245: l_new BSC_METADATA_OPTIMIZER_PKG.clsLevels;
2246: BEGIn
2247: return l_new;
2248: END;

Line 2245: l_new BSC_METADATA_OPTIMIZER_PKG.clsLevels;

2241: -- Returns an unitialized variable of class clsLevels.
2242: -- This is to clear up the memory of the object it is assigned to.
2243: --***************************************************************************
2244: FUNCTION new_clsLevels return BSC_METADATA_OPTIMIZER_PKG.clsLevels IS
2245: l_new BSC_METADATA_OPTIMIZER_PKG.clsLevels;
2246: BEGIn
2247: return l_new;
2248: END;
2249: --***************************************************************************

Line 2256: FUNCTION new_tabrec_clsLevels return BSC_METADATA_OPTIMIZER_PKG.tabrec_clsLevels IS

2252: -- DESCRIPTION:
2253: -- Returns an unitialized variable of class tabrec_clsLevels.
2254: -- This is to clear up the memory of the object it is assigned to.
2255: --***************************************************************************
2256: FUNCTION new_tabrec_clsLevels return BSC_METADATA_OPTIMIZER_PKG.tabrec_clsLevels IS
2257: l_new BSC_METADATA_OPTIMIZER_PKG.tabrec_clsLevels;
2258: BEGIn
2259: return l_new;
2260: END;

Line 2257: l_new BSC_METADATA_OPTIMIZER_PKG.tabrec_clsLevels;

2253: -- Returns an unitialized variable of class tabrec_clsLevels.
2254: -- This is to clear up the memory of the object it is assigned to.
2255: --***************************************************************************
2256: FUNCTION new_tabrec_clsLevels return BSC_METADATA_OPTIMIZER_PKG.tabrec_clsLevels IS
2257: l_new BSC_METADATA_OPTIMIZER_PKG.tabrec_clsLevels;
2258: BEGIn
2259: return l_new;
2260: END;
2261: --***************************************************************************

Line 2268: FUNCTION new_clsBasicTable return BSC_METADATA_OPTIMIZER_PKG.clsBasicTable IS

2264: -- DESCRIPTION:
2265: -- Returns an unitialized variable of class clsBasicTable.
2266: -- This is to clear up the memory of the object it is assigned to.
2267: --***************************************************************************
2268: FUNCTION new_clsBasicTable return BSC_METADATA_OPTIMIZER_PKG.clsBasicTable IS
2269: l_new BSC_METADATA_OPTIMIZER_PKG.clsBasicTable;
2270: BEGIn
2271: return l_new;
2272: END;

Line 2269: l_new BSC_METADATA_OPTIMIZER_PKG.clsBasicTable;

2265: -- Returns an unitialized variable of class clsBasicTable.
2266: -- This is to clear up the memory of the object it is assigned to.
2267: --***************************************************************************
2268: FUNCTION new_clsBasicTable return BSC_METADATA_OPTIMIZER_PKG.clsBasicTable IS
2269: l_new BSC_METADATA_OPTIMIZER_PKG.clsBasicTable;
2270: BEGIn
2271: return l_new;
2272: END;
2273: --***************************************************************************

Line 2280: FUNCTION new_clsLevelCombinations return BSC_METADATA_OPTIMIZER_PKG.clsLevelCombinations IS

2276: -- DESCRIPTION:
2277: -- Returns an unitialized variable of class clsLevelCombinations.
2278: -- This is to clear up the memory of the object it is assigned to.
2279: --***************************************************************************
2280: FUNCTION new_clsLevelCombinations return BSC_METADATA_OPTIMIZER_PKG.clsLevelCombinations IS
2281: l_new BSC_METADATA_OPTIMIZER_PKG.clsLevelCombinations;
2282: BEGIn
2283: return l_new;
2284: END;

Line 2281: l_new BSC_METADATA_OPTIMIZER_PKG.clsLevelCombinations;

2277: -- Returns an unitialized variable of class clsLevelCombinations.
2278: -- This is to clear up the memory of the object it is assigned to.
2279: --***************************************************************************
2280: FUNCTION new_clsLevelCombinations return BSC_METADATA_OPTIMIZER_PKG.clsLevelCombinations IS
2281: l_new BSC_METADATA_OPTIMIZER_PKG.clsLevelCombinations;
2282: BEGIn
2283: return l_new;
2284: END;
2285: --***************************************************************************

Line 2292: FUNCTION new_TNewITables return BSC_METADATA_OPTIMIZER_PKG.TNewITables IS

2288: -- DESCRIPTION:
2289: -- Returns an unitialized variable of class TNewITables.
2290: -- This is to clear up the memory of the object it is assigned to.
2291: --***************************************************************************
2292: FUNCTION new_TNewITables return BSC_METADATA_OPTIMIZER_PKG.TNewITables IS
2293: l_new BSC_METADATA_OPTIMIZER_PKG.TNewITables;
2294: BEGIn
2295: return l_new;
2296: END;

Line 2293: l_new BSC_METADATA_OPTIMIZER_PKG.TNewITables;

2289: -- Returns an unitialized variable of class TNewITables.
2290: -- This is to clear up the memory of the object it is assigned to.
2291: --***************************************************************************
2292: FUNCTION new_TNewITables return BSC_METADATA_OPTIMIZER_PKG.TNewITables IS
2293: l_new BSC_METADATA_OPTIMIZER_PKG.TNewITables;
2294: BEGIn
2295: return l_new;
2296: END;
2297:

Line 2310: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN

2306: --****************************************************************************
2307:
2308: PROCEDURE InitArrReservedWords IS
2309: BEGIN
2310: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
2311: BSC_MO_HELPER_PKG.writeTmp('Inside InitArrReservedWords', FND_LOG.LEVEL_PROCEDURE);
2312: END IF;
2313:
2314: BSC_METADATA_OPTIMIZER_PKG.gNumArrReservedWords := 556;

Line 2314: BSC_METADATA_OPTIMIZER_PKG.gNumArrReservedWords := 556;

2310: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
2311: BSC_MO_HELPER_PKG.writeTmp('Inside InitArrReservedWords', FND_LOG.LEVEL_PROCEDURE);
2312: END IF;
2313:
2314: BSC_METADATA_OPTIMIZER_PKG.gNumArrReservedWords := 556;
2315:
2316: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(0) := 'ABORT';
2317: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(1) := 'ACCESS';
2318: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(2) := 'ACCOUNT';

Line 2316: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(0) := 'ABORT';

2312: END IF;
2313:
2314: BSC_METADATA_OPTIMIZER_PKG.gNumArrReservedWords := 556;
2315:
2316: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(0) := 'ABORT';
2317: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(1) := 'ACCESS';
2318: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(2) := 'ACCOUNT';
2319: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(3) := 'ACCEPT';
2320: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(4) := 'ACCESS';

Line 2317: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(1) := 'ACCESS';

2313:
2314: BSC_METADATA_OPTIMIZER_PKG.gNumArrReservedWords := 556;
2315:
2316: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(0) := 'ABORT';
2317: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(1) := 'ACCESS';
2318: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(2) := 'ACCOUNT';
2319: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(3) := 'ACCEPT';
2320: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(4) := 'ACCESS';
2321: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(5) := 'ACTIVATE';

Line 2318: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(2) := 'ACCOUNT';

2314: BSC_METADATA_OPTIMIZER_PKG.gNumArrReservedWords := 556;
2315:
2316: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(0) := 'ABORT';
2317: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(1) := 'ACCESS';
2318: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(2) := 'ACCOUNT';
2319: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(3) := 'ACCEPT';
2320: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(4) := 'ACCESS';
2321: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(5) := 'ACTIVATE';
2322: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(6) := 'ADD';

Line 2319: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(3) := 'ACCEPT';

2315:
2316: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(0) := 'ABORT';
2317: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(1) := 'ACCESS';
2318: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(2) := 'ACCOUNT';
2319: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(3) := 'ACCEPT';
2320: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(4) := 'ACCESS';
2321: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(5) := 'ACTIVATE';
2322: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(6) := 'ADD';
2323: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(7) := 'ADMIN';

Line 2320: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(4) := 'ACCESS';

2316: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(0) := 'ABORT';
2317: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(1) := 'ACCESS';
2318: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(2) := 'ACCOUNT';
2319: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(3) := 'ACCEPT';
2320: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(4) := 'ACCESS';
2321: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(5) := 'ACTIVATE';
2322: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(6) := 'ADD';
2323: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(7) := 'ADMIN';
2324: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(8) := 'AFTER';

Line 2321: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(5) := 'ACTIVATE';

2317: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(1) := 'ACCESS';
2318: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(2) := 'ACCOUNT';
2319: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(3) := 'ACCEPT';
2320: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(4) := 'ACCESS';
2321: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(5) := 'ACTIVATE';
2322: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(6) := 'ADD';
2323: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(7) := 'ADMIN';
2324: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(8) := 'AFTER';
2325: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(9) := 'ALL';

Line 2322: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(6) := 'ADD';

2318: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(2) := 'ACCOUNT';
2319: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(3) := 'ACCEPT';
2320: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(4) := 'ACCESS';
2321: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(5) := 'ACTIVATE';
2322: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(6) := 'ADD';
2323: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(7) := 'ADMIN';
2324: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(8) := 'AFTER';
2325: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(9) := 'ALL';
2326: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(10) := 'ALL_ROWS';

Line 2323: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(7) := 'ADMIN';

2319: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(3) := 'ACCEPT';
2320: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(4) := 'ACCESS';
2321: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(5) := 'ACTIVATE';
2322: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(6) := 'ADD';
2323: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(7) := 'ADMIN';
2324: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(8) := 'AFTER';
2325: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(9) := 'ALL';
2326: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(10) := 'ALL_ROWS';
2327: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(11) := 'ALLOCATE';

Line 2324: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(8) := 'AFTER';

2320: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(4) := 'ACCESS';
2321: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(5) := 'ACTIVATE';
2322: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(6) := 'ADD';
2323: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(7) := 'ADMIN';
2324: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(8) := 'AFTER';
2325: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(9) := 'ALL';
2326: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(10) := 'ALL_ROWS';
2327: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(11) := 'ALLOCATE';
2328: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(12) := 'ALTER';

Line 2325: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(9) := 'ALL';

2321: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(5) := 'ACTIVATE';
2322: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(6) := 'ADD';
2323: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(7) := 'ADMIN';
2324: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(8) := 'AFTER';
2325: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(9) := 'ALL';
2326: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(10) := 'ALL_ROWS';
2327: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(11) := 'ALLOCATE';
2328: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(12) := 'ALTER';
2329: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(13) := 'ANALYZE';

Line 2326: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(10) := 'ALL_ROWS';

2322: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(6) := 'ADD';
2323: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(7) := 'ADMIN';
2324: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(8) := 'AFTER';
2325: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(9) := 'ALL';
2326: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(10) := 'ALL_ROWS';
2327: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(11) := 'ALLOCATE';
2328: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(12) := 'ALTER';
2329: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(13) := 'ANALYZE';
2330: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(14) := 'AND';

Line 2327: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(11) := 'ALLOCATE';

2323: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(7) := 'ADMIN';
2324: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(8) := 'AFTER';
2325: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(9) := 'ALL';
2326: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(10) := 'ALL_ROWS';
2327: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(11) := 'ALLOCATE';
2328: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(12) := 'ALTER';
2329: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(13) := 'ANALYZE';
2330: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(14) := 'AND';
2331: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(15) := 'ANY';

Line 2328: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(12) := 'ALTER';

2324: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(8) := 'AFTER';
2325: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(9) := 'ALL';
2326: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(10) := 'ALL_ROWS';
2327: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(11) := 'ALLOCATE';
2328: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(12) := 'ALTER';
2329: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(13) := 'ANALYZE';
2330: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(14) := 'AND';
2331: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(15) := 'ANY';
2332: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(16) := 'ARCHIVE';

Line 2329: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(13) := 'ANALYZE';

2325: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(9) := 'ALL';
2326: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(10) := 'ALL_ROWS';
2327: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(11) := 'ALLOCATE';
2328: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(12) := 'ALTER';
2329: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(13) := 'ANALYZE';
2330: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(14) := 'AND';
2331: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(15) := 'ANY';
2332: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(16) := 'ARCHIVE';
2333: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(17) := 'ARCHIVELOG';

Line 2330: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(14) := 'AND';

2326: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(10) := 'ALL_ROWS';
2327: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(11) := 'ALLOCATE';
2328: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(12) := 'ALTER';
2329: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(13) := 'ANALYZE';
2330: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(14) := 'AND';
2331: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(15) := 'ANY';
2332: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(16) := 'ARCHIVE';
2333: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(17) := 'ARCHIVELOG';
2334: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(18) := 'ARRAY';

Line 2331: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(15) := 'ANY';

2327: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(11) := 'ALLOCATE';
2328: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(12) := 'ALTER';
2329: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(13) := 'ANALYZE';
2330: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(14) := 'AND';
2331: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(15) := 'ANY';
2332: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(16) := 'ARCHIVE';
2333: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(17) := 'ARCHIVELOG';
2334: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(18) := 'ARRAY';
2335: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(19) := 'ARRAYLEN';

Line 2332: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(16) := 'ARCHIVE';

2328: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(12) := 'ALTER';
2329: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(13) := 'ANALYZE';
2330: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(14) := 'AND';
2331: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(15) := 'ANY';
2332: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(16) := 'ARCHIVE';
2333: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(17) := 'ARCHIVELOG';
2334: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(18) := 'ARRAY';
2335: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(19) := 'ARRAYLEN';
2336: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(20) := 'AS';

Line 2333: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(17) := 'ARCHIVELOG';

2329: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(13) := 'ANALYZE';
2330: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(14) := 'AND';
2331: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(15) := 'ANY';
2332: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(16) := 'ARCHIVE';
2333: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(17) := 'ARCHIVELOG';
2334: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(18) := 'ARRAY';
2335: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(19) := 'ARRAYLEN';
2336: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(20) := 'AS';
2337: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(21) := 'ASC';

Line 2334: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(18) := 'ARRAY';

2330: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(14) := 'AND';
2331: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(15) := 'ANY';
2332: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(16) := 'ARCHIVE';
2333: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(17) := 'ARCHIVELOG';
2334: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(18) := 'ARRAY';
2335: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(19) := 'ARRAYLEN';
2336: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(20) := 'AS';
2337: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(21) := 'ASC';
2338: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(22) := 'ASSERT';

Line 2335: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(19) := 'ARRAYLEN';

2331: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(15) := 'ANY';
2332: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(16) := 'ARCHIVE';
2333: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(17) := 'ARCHIVELOG';
2334: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(18) := 'ARRAY';
2335: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(19) := 'ARRAYLEN';
2336: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(20) := 'AS';
2337: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(21) := 'ASC';
2338: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(22) := 'ASSERT';
2339: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(23) := 'ASSIGN';

Line 2336: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(20) := 'AS';

2332: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(16) := 'ARCHIVE';
2333: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(17) := 'ARCHIVELOG';
2334: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(18) := 'ARRAY';
2335: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(19) := 'ARRAYLEN';
2336: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(20) := 'AS';
2337: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(21) := 'ASC';
2338: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(22) := 'ASSERT';
2339: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(23) := 'ASSIGN';
2340: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(24) := 'AT';

Line 2337: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(21) := 'ASC';

2333: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(17) := 'ARCHIVELOG';
2334: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(18) := 'ARRAY';
2335: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(19) := 'ARRAYLEN';
2336: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(20) := 'AS';
2337: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(21) := 'ASC';
2338: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(22) := 'ASSERT';
2339: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(23) := 'ASSIGN';
2340: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(24) := 'AT';
2341: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(25) := 'AUDIT';

Line 2338: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(22) := 'ASSERT';

2334: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(18) := 'ARRAY';
2335: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(19) := 'ARRAYLEN';
2336: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(20) := 'AS';
2337: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(21) := 'ASC';
2338: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(22) := 'ASSERT';
2339: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(23) := 'ASSIGN';
2340: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(24) := 'AT';
2341: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(25) := 'AUDIT';
2342: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(26) := 'AUTHENTICATED';

Line 2339: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(23) := 'ASSIGN';

2335: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(19) := 'ARRAYLEN';
2336: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(20) := 'AS';
2337: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(21) := 'ASC';
2338: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(22) := 'ASSERT';
2339: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(23) := 'ASSIGN';
2340: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(24) := 'AT';
2341: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(25) := 'AUDIT';
2342: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(26) := 'AUTHENTICATED';
2343: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(27) := 'AUTHORIZATION';

Line 2340: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(24) := 'AT';

2336: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(20) := 'AS';
2337: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(21) := 'ASC';
2338: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(22) := 'ASSERT';
2339: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(23) := 'ASSIGN';
2340: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(24) := 'AT';
2341: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(25) := 'AUDIT';
2342: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(26) := 'AUTHENTICATED';
2343: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(27) := 'AUTHORIZATION';
2344: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(28) := 'AUTOEXTEND';

Line 2341: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(25) := 'AUDIT';

2337: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(21) := 'ASC';
2338: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(22) := 'ASSERT';
2339: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(23) := 'ASSIGN';
2340: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(24) := 'AT';
2341: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(25) := 'AUDIT';
2342: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(26) := 'AUTHENTICATED';
2343: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(27) := 'AUTHORIZATION';
2344: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(28) := 'AUTOEXTEND';
2345: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(29) := 'AUTOMATIC';

Line 2342: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(26) := 'AUTHENTICATED';

2338: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(22) := 'ASSERT';
2339: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(23) := 'ASSIGN';
2340: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(24) := 'AT';
2341: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(25) := 'AUDIT';
2342: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(26) := 'AUTHENTICATED';
2343: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(27) := 'AUTHORIZATION';
2344: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(28) := 'AUTOEXTEND';
2345: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(29) := 'AUTOMATIC';
2346: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(30) := 'AVG';

Line 2343: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(27) := 'AUTHORIZATION';

2339: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(23) := 'ASSIGN';
2340: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(24) := 'AT';
2341: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(25) := 'AUDIT';
2342: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(26) := 'AUTHENTICATED';
2343: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(27) := 'AUTHORIZATION';
2344: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(28) := 'AUTOEXTEND';
2345: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(29) := 'AUTOMATIC';
2346: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(30) := 'AVG';
2347: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(31) := 'BACKUP';

Line 2344: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(28) := 'AUTOEXTEND';

2340: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(24) := 'AT';
2341: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(25) := 'AUDIT';
2342: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(26) := 'AUTHENTICATED';
2343: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(27) := 'AUTHORIZATION';
2344: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(28) := 'AUTOEXTEND';
2345: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(29) := 'AUTOMATIC';
2346: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(30) := 'AVG';
2347: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(31) := 'BACKUP';
2348: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(32) := 'BASE_TABLE';

Line 2345: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(29) := 'AUTOMATIC';

2341: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(25) := 'AUDIT';
2342: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(26) := 'AUTHENTICATED';
2343: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(27) := 'AUTHORIZATION';
2344: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(28) := 'AUTOEXTEND';
2345: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(29) := 'AUTOMATIC';
2346: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(30) := 'AVG';
2347: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(31) := 'BACKUP';
2348: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(32) := 'BASE_TABLE';
2349: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(33) := 'BECOME';

Line 2346: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(30) := 'AVG';

2342: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(26) := 'AUTHENTICATED';
2343: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(27) := 'AUTHORIZATION';
2344: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(28) := 'AUTOEXTEND';
2345: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(29) := 'AUTOMATIC';
2346: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(30) := 'AVG';
2347: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(31) := 'BACKUP';
2348: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(32) := 'BASE_TABLE';
2349: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(33) := 'BECOME';
2350: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(34) := 'BEFORE';

Line 2347: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(31) := 'BACKUP';

2343: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(27) := 'AUTHORIZATION';
2344: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(28) := 'AUTOEXTEND';
2345: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(29) := 'AUTOMATIC';
2346: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(30) := 'AVG';
2347: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(31) := 'BACKUP';
2348: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(32) := 'BASE_TABLE';
2349: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(33) := 'BECOME';
2350: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(34) := 'BEFORE';
2351: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(35) := 'BEGIN';

Line 2348: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(32) := 'BASE_TABLE';

2344: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(28) := 'AUTOEXTEND';
2345: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(29) := 'AUTOMATIC';
2346: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(30) := 'AVG';
2347: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(31) := 'BACKUP';
2348: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(32) := 'BASE_TABLE';
2349: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(33) := 'BECOME';
2350: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(34) := 'BEFORE';
2351: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(35) := 'BEGIN';
2352: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(36) := 'BETWEEN';

Line 2349: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(33) := 'BECOME';

2345: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(29) := 'AUTOMATIC';
2346: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(30) := 'AVG';
2347: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(31) := 'BACKUP';
2348: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(32) := 'BASE_TABLE';
2349: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(33) := 'BECOME';
2350: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(34) := 'BEFORE';
2351: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(35) := 'BEGIN';
2352: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(36) := 'BETWEEN';
2353: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(37) := 'BFILE';

Line 2350: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(34) := 'BEFORE';

2346: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(30) := 'AVG';
2347: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(31) := 'BACKUP';
2348: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(32) := 'BASE_TABLE';
2349: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(33) := 'BECOME';
2350: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(34) := 'BEFORE';
2351: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(35) := 'BEGIN';
2352: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(36) := 'BETWEEN';
2353: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(37) := 'BFILE';
2354: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(38) := 'BIGINTBY';

Line 2351: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(35) := 'BEGIN';

2347: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(31) := 'BACKUP';
2348: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(32) := 'BASE_TABLE';
2349: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(33) := 'BECOME';
2350: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(34) := 'BEFORE';
2351: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(35) := 'BEGIN';
2352: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(36) := 'BETWEEN';
2353: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(37) := 'BFILE';
2354: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(38) := 'BIGINTBY';
2355: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(39) := 'BINARY';

Line 2352: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(36) := 'BETWEEN';

2348: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(32) := 'BASE_TABLE';
2349: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(33) := 'BECOME';
2350: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(34) := 'BEFORE';
2351: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(35) := 'BEGIN';
2352: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(36) := 'BETWEEN';
2353: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(37) := 'BFILE';
2354: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(38) := 'BIGINTBY';
2355: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(39) := 'BINARY';
2356: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(40) := 'BINARY_INTEGER';

Line 2353: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(37) := 'BFILE';

2349: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(33) := 'BECOME';
2350: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(34) := 'BEFORE';
2351: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(35) := 'BEGIN';
2352: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(36) := 'BETWEEN';
2353: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(37) := 'BFILE';
2354: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(38) := 'BIGINTBY';
2355: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(39) := 'BINARY';
2356: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(40) := 'BINARY_INTEGER';
2357: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(41) := 'BIT';

Line 2354: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(38) := 'BIGINTBY';

2350: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(34) := 'BEFORE';
2351: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(35) := 'BEGIN';
2352: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(36) := 'BETWEEN';
2353: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(37) := 'BFILE';
2354: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(38) := 'BIGINTBY';
2355: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(39) := 'BINARY';
2356: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(40) := 'BINARY_INTEGER';
2357: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(41) := 'BIT';
2358: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(42) := 'BITMAP';

Line 2355: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(39) := 'BINARY';

2351: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(35) := 'BEGIN';
2352: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(36) := 'BETWEEN';
2353: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(37) := 'BFILE';
2354: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(38) := 'BIGINTBY';
2355: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(39) := 'BINARY';
2356: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(40) := 'BINARY_INTEGER';
2357: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(41) := 'BIT';
2358: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(42) := 'BITMAP';
2359: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(43) := 'BLOB';

Line 2356: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(40) := 'BINARY_INTEGER';

2352: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(36) := 'BETWEEN';
2353: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(37) := 'BFILE';
2354: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(38) := 'BIGINTBY';
2355: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(39) := 'BINARY';
2356: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(40) := 'BINARY_INTEGER';
2357: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(41) := 'BIT';
2358: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(42) := 'BITMAP';
2359: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(43) := 'BLOB';
2360: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(44) := 'BLOCK';

Line 2357: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(41) := 'BIT';

2353: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(37) := 'BFILE';
2354: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(38) := 'BIGINTBY';
2355: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(39) := 'BINARY';
2356: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(40) := 'BINARY_INTEGER';
2357: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(41) := 'BIT';
2358: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(42) := 'BITMAP';
2359: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(43) := 'BLOB';
2360: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(44) := 'BLOCK';
2361: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(45) := 'BODY';

Line 2358: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(42) := 'BITMAP';

2354: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(38) := 'BIGINTBY';
2355: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(39) := 'BINARY';
2356: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(40) := 'BINARY_INTEGER';
2357: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(41) := 'BIT';
2358: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(42) := 'BITMAP';
2359: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(43) := 'BLOB';
2360: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(44) := 'BLOCK';
2361: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(45) := 'BODY';
2362: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(46) := 'BOOLEAN';

Line 2359: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(43) := 'BLOB';

2355: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(39) := 'BINARY';
2356: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(40) := 'BINARY_INTEGER';
2357: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(41) := 'BIT';
2358: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(42) := 'BITMAP';
2359: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(43) := 'BLOB';
2360: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(44) := 'BLOCK';
2361: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(45) := 'BODY';
2362: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(46) := 'BOOLEAN';
2363: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(47) := 'BY';

Line 2360: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(44) := 'BLOCK';

2356: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(40) := 'BINARY_INTEGER';
2357: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(41) := 'BIT';
2358: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(42) := 'BITMAP';
2359: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(43) := 'BLOB';
2360: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(44) := 'BLOCK';
2361: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(45) := 'BODY';
2362: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(46) := 'BOOLEAN';
2363: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(47) := 'BY';
2364: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(48) := 'CACHE';

Line 2361: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(45) := 'BODY';

2357: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(41) := 'BIT';
2358: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(42) := 'BITMAP';
2359: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(43) := 'BLOB';
2360: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(44) := 'BLOCK';
2361: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(45) := 'BODY';
2362: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(46) := 'BOOLEAN';
2363: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(47) := 'BY';
2364: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(48) := 'CACHE';
2365: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(49) := 'CACHE_INSTANCES';

Line 2362: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(46) := 'BOOLEAN';

2358: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(42) := 'BITMAP';
2359: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(43) := 'BLOB';
2360: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(44) := 'BLOCK';
2361: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(45) := 'BODY';
2362: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(46) := 'BOOLEAN';
2363: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(47) := 'BY';
2364: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(48) := 'CACHE';
2365: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(49) := 'CACHE_INSTANCES';
2366: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(50) := 'CANCEL';

Line 2363: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(47) := 'BY';

2359: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(43) := 'BLOB';
2360: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(44) := 'BLOCK';
2361: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(45) := 'BODY';
2362: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(46) := 'BOOLEAN';
2363: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(47) := 'BY';
2364: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(48) := 'CACHE';
2365: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(49) := 'CACHE_INSTANCES';
2366: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(50) := 'CANCEL';
2367: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(51) := 'CASCADE';

Line 2364: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(48) := 'CACHE';

2360: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(44) := 'BLOCK';
2361: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(45) := 'BODY';
2362: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(46) := 'BOOLEAN';
2363: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(47) := 'BY';
2364: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(48) := 'CACHE';
2365: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(49) := 'CACHE_INSTANCES';
2366: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(50) := 'CANCEL';
2367: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(51) := 'CASCADE';
2368: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(52) := 'CASE';

Line 2365: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(49) := 'CACHE_INSTANCES';

2361: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(45) := 'BODY';
2362: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(46) := 'BOOLEAN';
2363: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(47) := 'BY';
2364: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(48) := 'CACHE';
2365: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(49) := 'CACHE_INSTANCES';
2366: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(50) := 'CANCEL';
2367: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(51) := 'CASCADE';
2368: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(52) := 'CASE';
2369: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(53) := 'CAST';

Line 2366: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(50) := 'CANCEL';

2362: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(46) := 'BOOLEAN';
2363: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(47) := 'BY';
2364: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(48) := 'CACHE';
2365: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(49) := 'CACHE_INSTANCES';
2366: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(50) := 'CANCEL';
2367: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(51) := 'CASCADE';
2368: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(52) := 'CASE';
2369: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(53) := 'CAST';
2370: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(54) := 'CFILE';

Line 2367: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(51) := 'CASCADE';

2363: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(47) := 'BY';
2364: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(48) := 'CACHE';
2365: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(49) := 'CACHE_INSTANCES';
2366: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(50) := 'CANCEL';
2367: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(51) := 'CASCADE';
2368: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(52) := 'CASE';
2369: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(53) := 'CAST';
2370: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(54) := 'CFILE';
2371: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(55) := 'CHAINED';

Line 2368: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(52) := 'CASE';

2364: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(48) := 'CACHE';
2365: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(49) := 'CACHE_INSTANCES';
2366: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(50) := 'CANCEL';
2367: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(51) := 'CASCADE';
2368: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(52) := 'CASE';
2369: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(53) := 'CAST';
2370: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(54) := 'CFILE';
2371: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(55) := 'CHAINED';
2372: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(56) := 'CHANGE';

Line 2369: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(53) := 'CAST';

2365: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(49) := 'CACHE_INSTANCES';
2366: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(50) := 'CANCEL';
2367: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(51) := 'CASCADE';
2368: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(52) := 'CASE';
2369: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(53) := 'CAST';
2370: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(54) := 'CFILE';
2371: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(55) := 'CHAINED';
2372: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(56) := 'CHANGE';
2373: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(57) := 'CHAR';

Line 2370: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(54) := 'CFILE';

2366: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(50) := 'CANCEL';
2367: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(51) := 'CASCADE';
2368: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(52) := 'CASE';
2369: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(53) := 'CAST';
2370: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(54) := 'CFILE';
2371: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(55) := 'CHAINED';
2372: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(56) := 'CHANGE';
2373: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(57) := 'CHAR';
2374: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(58) := 'CHAR_BASE';

Line 2371: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(55) := 'CHAINED';

2367: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(51) := 'CASCADE';
2368: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(52) := 'CASE';
2369: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(53) := 'CAST';
2370: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(54) := 'CFILE';
2371: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(55) := 'CHAINED';
2372: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(56) := 'CHANGE';
2373: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(57) := 'CHAR';
2374: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(58) := 'CHAR_BASE';
2375: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(59) := 'CHAR_CS';

Line 2372: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(56) := 'CHANGE';

2368: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(52) := 'CASE';
2369: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(53) := 'CAST';
2370: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(54) := 'CFILE';
2371: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(55) := 'CHAINED';
2372: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(56) := 'CHANGE';
2373: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(57) := 'CHAR';
2374: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(58) := 'CHAR_BASE';
2375: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(59) := 'CHAR_CS';
2376: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(60) := 'CHARACTER';

Line 2373: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(57) := 'CHAR';

2369: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(53) := 'CAST';
2370: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(54) := 'CFILE';
2371: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(55) := 'CHAINED';
2372: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(56) := 'CHANGE';
2373: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(57) := 'CHAR';
2374: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(58) := 'CHAR_BASE';
2375: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(59) := 'CHAR_CS';
2376: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(60) := 'CHARACTER';
2377: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(61) := 'CHARACTERS';

Line 2374: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(58) := 'CHAR_BASE';

2370: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(54) := 'CFILE';
2371: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(55) := 'CHAINED';
2372: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(56) := 'CHANGE';
2373: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(57) := 'CHAR';
2374: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(58) := 'CHAR_BASE';
2375: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(59) := 'CHAR_CS';
2376: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(60) := 'CHARACTER';
2377: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(61) := 'CHARACTERS';
2378: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(62) := 'CHECK';

Line 2375: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(59) := 'CHAR_CS';

2371: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(55) := 'CHAINED';
2372: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(56) := 'CHANGE';
2373: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(57) := 'CHAR';
2374: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(58) := 'CHAR_BASE';
2375: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(59) := 'CHAR_CS';
2376: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(60) := 'CHARACTER';
2377: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(61) := 'CHARACTERS';
2378: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(62) := 'CHECK';
2379: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(63) := 'CHECKPOINT';

Line 2376: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(60) := 'CHARACTER';

2372: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(56) := 'CHANGE';
2373: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(57) := 'CHAR';
2374: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(58) := 'CHAR_BASE';
2375: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(59) := 'CHAR_CS';
2376: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(60) := 'CHARACTER';
2377: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(61) := 'CHARACTERS';
2378: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(62) := 'CHECK';
2379: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(63) := 'CHECKPOINT';
2380: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(64) := 'CHOOSE';

Line 2377: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(61) := 'CHARACTERS';

2373: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(57) := 'CHAR';
2374: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(58) := 'CHAR_BASE';
2375: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(59) := 'CHAR_CS';
2376: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(60) := 'CHARACTER';
2377: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(61) := 'CHARACTERS';
2378: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(62) := 'CHECK';
2379: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(63) := 'CHECKPOINT';
2380: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(64) := 'CHOOSE';
2381: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(65) := 'CHUNK';

Line 2378: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(62) := 'CHECK';

2374: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(58) := 'CHAR_BASE';
2375: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(59) := 'CHAR_CS';
2376: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(60) := 'CHARACTER';
2377: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(61) := 'CHARACTERS';
2378: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(62) := 'CHECK';
2379: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(63) := 'CHECKPOINT';
2380: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(64) := 'CHOOSE';
2381: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(65) := 'CHUNK';
2382: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(66) := 'CLEAR';

Line 2379: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(63) := 'CHECKPOINT';

2375: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(59) := 'CHAR_CS';
2376: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(60) := 'CHARACTER';
2377: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(61) := 'CHARACTERS';
2378: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(62) := 'CHECK';
2379: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(63) := 'CHECKPOINT';
2380: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(64) := 'CHOOSE';
2381: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(65) := 'CHUNK';
2382: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(66) := 'CLEAR';
2383: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(67) := 'CLOB';

Line 2380: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(64) := 'CHOOSE';

2376: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(60) := 'CHARACTER';
2377: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(61) := 'CHARACTERS';
2378: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(62) := 'CHECK';
2379: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(63) := 'CHECKPOINT';
2380: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(64) := 'CHOOSE';
2381: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(65) := 'CHUNK';
2382: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(66) := 'CLEAR';
2383: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(67) := 'CLOB';
2384: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(68) := 'CLONE';

Line 2381: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(65) := 'CHUNK';

2377: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(61) := 'CHARACTERS';
2378: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(62) := 'CHECK';
2379: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(63) := 'CHECKPOINT';
2380: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(64) := 'CHOOSE';
2381: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(65) := 'CHUNK';
2382: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(66) := 'CLEAR';
2383: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(67) := 'CLOB';
2384: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(68) := 'CLONE';
2385: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(69) := 'CLOSE';

Line 2382: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(66) := 'CLEAR';

2378: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(62) := 'CHECK';
2379: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(63) := 'CHECKPOINT';
2380: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(64) := 'CHOOSE';
2381: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(65) := 'CHUNK';
2382: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(66) := 'CLEAR';
2383: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(67) := 'CLOB';
2384: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(68) := 'CLONE';
2385: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(69) := 'CLOSE';
2386: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(70) := 'CLOSED_CACHED_OPEN_';

Line 2383: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(67) := 'CLOB';

2379: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(63) := 'CHECKPOINT';
2380: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(64) := 'CHOOSE';
2381: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(65) := 'CHUNK';
2382: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(66) := 'CLEAR';
2383: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(67) := 'CLOB';
2384: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(68) := 'CLONE';
2385: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(69) := 'CLOSE';
2386: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(70) := 'CLOSED_CACHED_OPEN_';
2387: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(71) := 'CLUSTER';

Line 2384: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(68) := 'CLONE';

2380: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(64) := 'CHOOSE';
2381: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(65) := 'CHUNK';
2382: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(66) := 'CLEAR';
2383: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(67) := 'CLOB';
2384: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(68) := 'CLONE';
2385: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(69) := 'CLOSE';
2386: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(70) := 'CLOSED_CACHED_OPEN_';
2387: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(71) := 'CLUSTER';
2388: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(72) := 'CLUSTERS';

Line 2385: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(69) := 'CLOSE';

2381: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(65) := 'CHUNK';
2382: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(66) := 'CLEAR';
2383: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(67) := 'CLOB';
2384: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(68) := 'CLONE';
2385: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(69) := 'CLOSE';
2386: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(70) := 'CLOSED_CACHED_OPEN_';
2387: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(71) := 'CLUSTER';
2388: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(72) := 'CLUSTERS';
2389: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(73) := 'COALESCE';

Line 2386: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(70) := 'CLOSED_CACHED_OPEN_';

2382: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(66) := 'CLEAR';
2383: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(67) := 'CLOB';
2384: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(68) := 'CLONE';
2385: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(69) := 'CLOSE';
2386: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(70) := 'CLOSED_CACHED_OPEN_';
2387: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(71) := 'CLUSTER';
2388: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(72) := 'CLUSTERS';
2389: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(73) := 'COALESCE';
2390: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(74) := 'COLAUTH';

Line 2387: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(71) := 'CLUSTER';

2383: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(67) := 'CLOB';
2384: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(68) := 'CLONE';
2385: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(69) := 'CLOSE';
2386: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(70) := 'CLOSED_CACHED_OPEN_';
2387: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(71) := 'CLUSTER';
2388: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(72) := 'CLUSTERS';
2389: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(73) := 'COALESCE';
2390: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(74) := 'COLAUTH';
2391: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(75) := 'COLUMN';

Line 2388: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(72) := 'CLUSTERS';

2384: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(68) := 'CLONE';
2385: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(69) := 'CLOSE';
2386: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(70) := 'CLOSED_CACHED_OPEN_';
2387: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(71) := 'CLUSTER';
2388: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(72) := 'CLUSTERS';
2389: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(73) := 'COALESCE';
2390: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(74) := 'COLAUTH';
2391: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(75) := 'COLUMN';
2392: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(76) := 'COLUMNS';

Line 2389: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(73) := 'COALESCE';

2385: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(69) := 'CLOSE';
2386: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(70) := 'CLOSED_CACHED_OPEN_';
2387: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(71) := 'CLUSTER';
2388: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(72) := 'CLUSTERS';
2389: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(73) := 'COALESCE';
2390: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(74) := 'COLAUTH';
2391: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(75) := 'COLUMN';
2392: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(76) := 'COLUMNS';
2393: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(77) := 'COMMENT';

Line 2390: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(74) := 'COLAUTH';

2386: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(70) := 'CLOSED_CACHED_OPEN_';
2387: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(71) := 'CLUSTER';
2388: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(72) := 'CLUSTERS';
2389: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(73) := 'COALESCE';
2390: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(74) := 'COLAUTH';
2391: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(75) := 'COLUMN';
2392: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(76) := 'COLUMNS';
2393: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(77) := 'COMMENT';
2394: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(78) := 'COMMIT';

Line 2391: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(75) := 'COLUMN';

2387: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(71) := 'CLUSTER';
2388: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(72) := 'CLUSTERS';
2389: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(73) := 'COALESCE';
2390: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(74) := 'COLAUTH';
2391: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(75) := 'COLUMN';
2392: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(76) := 'COLUMNS';
2393: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(77) := 'COMMENT';
2394: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(78) := 'COMMIT';
2395: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(79) := 'COMMITTED';

Line 2392: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(76) := 'COLUMNS';

2388: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(72) := 'CLUSTERS';
2389: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(73) := 'COALESCE';
2390: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(74) := 'COLAUTH';
2391: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(75) := 'COLUMN';
2392: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(76) := 'COLUMNS';
2393: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(77) := 'COMMENT';
2394: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(78) := 'COMMIT';
2395: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(79) := 'COMMITTED';
2396: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(80) := 'COMPATIBILITY';

Line 2393: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(77) := 'COMMENT';

2389: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(73) := 'COALESCE';
2390: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(74) := 'COLAUTH';
2391: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(75) := 'COLUMN';
2392: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(76) := 'COLUMNS';
2393: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(77) := 'COMMENT';
2394: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(78) := 'COMMIT';
2395: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(79) := 'COMMITTED';
2396: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(80) := 'COMPATIBILITY';
2397: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(81) := 'COMPILE';

Line 2394: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(78) := 'COMMIT';

2390: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(74) := 'COLAUTH';
2391: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(75) := 'COLUMN';
2392: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(76) := 'COLUMNS';
2393: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(77) := 'COMMENT';
2394: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(78) := 'COMMIT';
2395: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(79) := 'COMMITTED';
2396: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(80) := 'COMPATIBILITY';
2397: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(81) := 'COMPILE';
2398: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(82) := 'COMPLETE';

Line 2395: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(79) := 'COMMITTED';

2391: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(75) := 'COLUMN';
2392: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(76) := 'COLUMNS';
2393: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(77) := 'COMMENT';
2394: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(78) := 'COMMIT';
2395: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(79) := 'COMMITTED';
2396: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(80) := 'COMPATIBILITY';
2397: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(81) := 'COMPILE';
2398: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(82) := 'COMPLETE';
2399: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(83) := 'COMPOSITE_LIMIT';

Line 2396: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(80) := 'COMPATIBILITY';

2392: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(76) := 'COLUMNS';
2393: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(77) := 'COMMENT';
2394: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(78) := 'COMMIT';
2395: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(79) := 'COMMITTED';
2396: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(80) := 'COMPATIBILITY';
2397: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(81) := 'COMPILE';
2398: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(82) := 'COMPLETE';
2399: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(83) := 'COMPOSITE_LIMIT';
2400: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(84) := 'COMPRESS';

Line 2397: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(81) := 'COMPILE';

2393: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(77) := 'COMMENT';
2394: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(78) := 'COMMIT';
2395: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(79) := 'COMMITTED';
2396: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(80) := 'COMPATIBILITY';
2397: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(81) := 'COMPILE';
2398: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(82) := 'COMPLETE';
2399: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(83) := 'COMPOSITE_LIMIT';
2400: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(84) := 'COMPRESS';
2401: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(85) := 'COMPUTE';

Line 2398: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(82) := 'COMPLETE';

2394: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(78) := 'COMMIT';
2395: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(79) := 'COMMITTED';
2396: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(80) := 'COMPATIBILITY';
2397: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(81) := 'COMPILE';
2398: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(82) := 'COMPLETE';
2399: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(83) := 'COMPOSITE_LIMIT';
2400: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(84) := 'COMPRESS';
2401: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(85) := 'COMPUTE';
2402: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(86) := 'CONNECT';

Line 2399: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(83) := 'COMPOSITE_LIMIT';

2395: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(79) := 'COMMITTED';
2396: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(80) := 'COMPATIBILITY';
2397: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(81) := 'COMPILE';
2398: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(82) := 'COMPLETE';
2399: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(83) := 'COMPOSITE_LIMIT';
2400: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(84) := 'COMPRESS';
2401: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(85) := 'COMPUTE';
2402: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(86) := 'CONNECT';
2403: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(87) := 'CONNECT_TIME';

Line 2400: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(84) := 'COMPRESS';

2396: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(80) := 'COMPATIBILITY';
2397: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(81) := 'COMPILE';
2398: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(82) := 'COMPLETE';
2399: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(83) := 'COMPOSITE_LIMIT';
2400: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(84) := 'COMPRESS';
2401: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(85) := 'COMPUTE';
2402: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(86) := 'CONNECT';
2403: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(87) := 'CONNECT_TIME';
2404: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(88) := 'CONNECTCREATE';

Line 2401: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(85) := 'COMPUTE';

2397: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(81) := 'COMPILE';
2398: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(82) := 'COMPLETE';
2399: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(83) := 'COMPOSITE_LIMIT';
2400: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(84) := 'COMPRESS';
2401: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(85) := 'COMPUTE';
2402: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(86) := 'CONNECT';
2403: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(87) := 'CONNECT_TIME';
2404: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(88) := 'CONNECTCREATE';
2405: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(89) := 'CONSTANT';

Line 2402: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(86) := 'CONNECT';

2398: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(82) := 'COMPLETE';
2399: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(83) := 'COMPOSITE_LIMIT';
2400: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(84) := 'COMPRESS';
2401: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(85) := 'COMPUTE';
2402: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(86) := 'CONNECT';
2403: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(87) := 'CONNECT_TIME';
2404: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(88) := 'CONNECTCREATE';
2405: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(89) := 'CONSTANT';
2406: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(90) := 'CONSTRAINT';

Line 2403: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(87) := 'CONNECT_TIME';

2399: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(83) := 'COMPOSITE_LIMIT';
2400: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(84) := 'COMPRESS';
2401: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(85) := 'COMPUTE';
2402: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(86) := 'CONNECT';
2403: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(87) := 'CONNECT_TIME';
2404: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(88) := 'CONNECTCREATE';
2405: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(89) := 'CONSTANT';
2406: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(90) := 'CONSTRAINT';
2407: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(91) := 'CONSTRAINTS';

Line 2404: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(88) := 'CONNECTCREATE';

2400: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(84) := 'COMPRESS';
2401: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(85) := 'COMPUTE';
2402: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(86) := 'CONNECT';
2403: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(87) := 'CONNECT_TIME';
2404: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(88) := 'CONNECTCREATE';
2405: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(89) := 'CONSTANT';
2406: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(90) := 'CONSTRAINT';
2407: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(91) := 'CONSTRAINTS';
2408: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(92) := 'CONTENTS';

Line 2405: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(89) := 'CONSTANT';

2401: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(85) := 'COMPUTE';
2402: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(86) := 'CONNECT';
2403: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(87) := 'CONNECT_TIME';
2404: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(88) := 'CONNECTCREATE';
2405: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(89) := 'CONSTANT';
2406: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(90) := 'CONSTRAINT';
2407: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(91) := 'CONSTRAINTS';
2408: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(92) := 'CONTENTS';
2409: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(93) := 'CONTINUE';

Line 2406: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(90) := 'CONSTRAINT';

2402: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(86) := 'CONNECT';
2403: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(87) := 'CONNECT_TIME';
2404: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(88) := 'CONNECTCREATE';
2405: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(89) := 'CONSTANT';
2406: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(90) := 'CONSTRAINT';
2407: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(91) := 'CONSTRAINTS';
2408: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(92) := 'CONTENTS';
2409: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(93) := 'CONTINUE';
2410: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(94) := 'CONTROLFILE';

Line 2407: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(91) := 'CONSTRAINTS';

2403: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(87) := 'CONNECT_TIME';
2404: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(88) := 'CONNECTCREATE';
2405: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(89) := 'CONSTANT';
2406: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(90) := 'CONSTRAINT';
2407: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(91) := 'CONSTRAINTS';
2408: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(92) := 'CONTENTS';
2409: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(93) := 'CONTINUE';
2410: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(94) := 'CONTROLFILE';
2411: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(95) := 'CONVERT';

Line 2408: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(92) := 'CONTENTS';

2404: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(88) := 'CONNECTCREATE';
2405: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(89) := 'CONSTANT';
2406: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(90) := 'CONSTRAINT';
2407: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(91) := 'CONSTRAINTS';
2408: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(92) := 'CONTENTS';
2409: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(93) := 'CONTINUE';
2410: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(94) := 'CONTROLFILE';
2411: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(95) := 'CONVERT';
2412: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(96) := 'COST';

Line 2409: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(93) := 'CONTINUE';

2405: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(89) := 'CONSTANT';
2406: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(90) := 'CONSTRAINT';
2407: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(91) := 'CONSTRAINTS';
2408: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(92) := 'CONTENTS';
2409: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(93) := 'CONTINUE';
2410: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(94) := 'CONTROLFILE';
2411: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(95) := 'CONVERT';
2412: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(96) := 'COST';
2413: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(97) := 'COUNT';

Line 2410: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(94) := 'CONTROLFILE';

2406: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(90) := 'CONSTRAINT';
2407: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(91) := 'CONSTRAINTS';
2408: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(92) := 'CONTENTS';
2409: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(93) := 'CONTINUE';
2410: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(94) := 'CONTROLFILE';
2411: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(95) := 'CONVERT';
2412: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(96) := 'COST';
2413: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(97) := 'COUNT';
2414: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(98) := 'CPU_PER_CALL';

Line 2411: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(95) := 'CONVERT';

2407: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(91) := 'CONSTRAINTS';
2408: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(92) := 'CONTENTS';
2409: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(93) := 'CONTINUE';
2410: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(94) := 'CONTROLFILE';
2411: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(95) := 'CONVERT';
2412: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(96) := 'COST';
2413: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(97) := 'COUNT';
2414: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(98) := 'CPU_PER_CALL';
2415: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(99) := 'CPU_PER_SESSION';

Line 2412: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(96) := 'COST';

2408: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(92) := 'CONTENTS';
2409: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(93) := 'CONTINUE';
2410: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(94) := 'CONTROLFILE';
2411: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(95) := 'CONVERT';
2412: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(96) := 'COST';
2413: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(97) := 'COUNT';
2414: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(98) := 'CPU_PER_CALL';
2415: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(99) := 'CPU_PER_SESSION';
2416: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(100) := 'CRASH';

Line 2413: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(97) := 'COUNT';

2409: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(93) := 'CONTINUE';
2410: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(94) := 'CONTROLFILE';
2411: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(95) := 'CONVERT';
2412: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(96) := 'COST';
2413: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(97) := 'COUNT';
2414: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(98) := 'CPU_PER_CALL';
2415: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(99) := 'CPU_PER_SESSION';
2416: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(100) := 'CRASH';
2417: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(101) := 'CREATE';

Line 2414: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(98) := 'CPU_PER_CALL';

2410: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(94) := 'CONTROLFILE';
2411: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(95) := 'CONVERT';
2412: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(96) := 'COST';
2413: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(97) := 'COUNT';
2414: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(98) := 'CPU_PER_CALL';
2415: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(99) := 'CPU_PER_SESSION';
2416: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(100) := 'CRASH';
2417: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(101) := 'CREATE';
2418: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(102) := 'CURRENT';

Line 2415: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(99) := 'CPU_PER_SESSION';

2411: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(95) := 'CONVERT';
2412: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(96) := 'COST';
2413: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(97) := 'COUNT';
2414: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(98) := 'CPU_PER_CALL';
2415: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(99) := 'CPU_PER_SESSION';
2416: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(100) := 'CRASH';
2417: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(101) := 'CREATE';
2418: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(102) := 'CURRENT';
2419: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(103) := 'CURRENT_SCHEMA';

Line 2416: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(100) := 'CRASH';

2412: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(96) := 'COST';
2413: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(97) := 'COUNT';
2414: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(98) := 'CPU_PER_CALL';
2415: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(99) := 'CPU_PER_SESSION';
2416: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(100) := 'CRASH';
2417: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(101) := 'CREATE';
2418: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(102) := 'CURRENT';
2419: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(103) := 'CURRENT_SCHEMA';
2420: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(104) := 'CURRENT_USER';

Line 2417: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(101) := 'CREATE';

2413: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(97) := 'COUNT';
2414: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(98) := 'CPU_PER_CALL';
2415: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(99) := 'CPU_PER_SESSION';
2416: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(100) := 'CRASH';
2417: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(101) := 'CREATE';
2418: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(102) := 'CURRENT';
2419: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(103) := 'CURRENT_SCHEMA';
2420: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(104) := 'CURRENT_USER';
2421: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(105) := 'CURRVAL';

Line 2418: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(102) := 'CURRENT';

2414: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(98) := 'CPU_PER_CALL';
2415: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(99) := 'CPU_PER_SESSION';
2416: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(100) := 'CRASH';
2417: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(101) := 'CREATE';
2418: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(102) := 'CURRENT';
2419: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(103) := 'CURRENT_SCHEMA';
2420: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(104) := 'CURRENT_USER';
2421: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(105) := 'CURRVAL';
2422: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(106) := 'CURSOR';

Line 2419: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(103) := 'CURRENT_SCHEMA';

2415: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(99) := 'CPU_PER_SESSION';
2416: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(100) := 'CRASH';
2417: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(101) := 'CREATE';
2418: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(102) := 'CURRENT';
2419: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(103) := 'CURRENT_SCHEMA';
2420: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(104) := 'CURRENT_USER';
2421: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(105) := 'CURRVAL';
2422: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(106) := 'CURSOR';
2423: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(107) := 'CURSORS';

Line 2420: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(104) := 'CURRENT_USER';

2416: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(100) := 'CRASH';
2417: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(101) := 'CREATE';
2418: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(102) := 'CURRENT';
2419: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(103) := 'CURRENT_SCHEMA';
2420: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(104) := 'CURRENT_USER';
2421: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(105) := 'CURRVAL';
2422: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(106) := 'CURSOR';
2423: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(107) := 'CURSORS';
2424: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(108) := 'CYCLE';

Line 2421: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(105) := 'CURRVAL';

2417: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(101) := 'CREATE';
2418: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(102) := 'CURRENT';
2419: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(103) := 'CURRENT_SCHEMA';
2420: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(104) := 'CURRENT_USER';
2421: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(105) := 'CURRVAL';
2422: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(106) := 'CURSOR';
2423: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(107) := 'CURSORS';
2424: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(108) := 'CYCLE';
2425: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(109) := 'DANGLING';

Line 2422: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(106) := 'CURSOR';

2418: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(102) := 'CURRENT';
2419: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(103) := 'CURRENT_SCHEMA';
2420: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(104) := 'CURRENT_USER';
2421: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(105) := 'CURRVAL';
2422: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(106) := 'CURSOR';
2423: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(107) := 'CURSORS';
2424: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(108) := 'CYCLE';
2425: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(109) := 'DANGLING';
2426: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(110) := 'DATA_BASE';

Line 2423: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(107) := 'CURSORS';

2419: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(103) := 'CURRENT_SCHEMA';
2420: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(104) := 'CURRENT_USER';
2421: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(105) := 'CURRVAL';
2422: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(106) := 'CURSOR';
2423: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(107) := 'CURSORS';
2424: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(108) := 'CYCLE';
2425: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(109) := 'DANGLING';
2426: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(110) := 'DATA_BASE';
2427: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(111) := 'DATABASE';

Line 2424: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(108) := 'CYCLE';

2420: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(104) := 'CURRENT_USER';
2421: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(105) := 'CURRVAL';
2422: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(106) := 'CURSOR';
2423: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(107) := 'CURSORS';
2424: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(108) := 'CYCLE';
2425: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(109) := 'DANGLING';
2426: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(110) := 'DATA_BASE';
2427: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(111) := 'DATABASE';
2428: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(112) := 'DATABASEDATE';

Line 2425: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(109) := 'DANGLING';

2421: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(105) := 'CURRVAL';
2422: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(106) := 'CURSOR';
2423: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(107) := 'CURSORS';
2424: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(108) := 'CYCLE';
2425: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(109) := 'DANGLING';
2426: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(110) := 'DATA_BASE';
2427: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(111) := 'DATABASE';
2428: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(112) := 'DATABASEDATE';
2429: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(113) := 'DATAFILE';

Line 2426: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(110) := 'DATA_BASE';

2422: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(106) := 'CURSOR';
2423: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(107) := 'CURSORS';
2424: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(108) := 'CYCLE';
2425: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(109) := 'DANGLING';
2426: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(110) := 'DATA_BASE';
2427: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(111) := 'DATABASE';
2428: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(112) := 'DATABASEDATE';
2429: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(113) := 'DATAFILE';
2430: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(114) := 'DATAFILES';

Line 2427: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(111) := 'DATABASE';

2423: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(107) := 'CURSORS';
2424: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(108) := 'CYCLE';
2425: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(109) := 'DANGLING';
2426: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(110) := 'DATA_BASE';
2427: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(111) := 'DATABASE';
2428: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(112) := 'DATABASEDATE';
2429: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(113) := 'DATAFILE';
2430: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(114) := 'DATAFILES';
2431: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(115) := 'DATAOBJNO';

Line 2428: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(112) := 'DATABASEDATE';

2424: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(108) := 'CYCLE';
2425: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(109) := 'DANGLING';
2426: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(110) := 'DATA_BASE';
2427: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(111) := 'DATABASE';
2428: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(112) := 'DATABASEDATE';
2429: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(113) := 'DATAFILE';
2430: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(114) := 'DATAFILES';
2431: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(115) := 'DATAOBJNO';
2432: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(116) := 'DATE';

Line 2429: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(113) := 'DATAFILE';

2425: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(109) := 'DANGLING';
2426: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(110) := 'DATA_BASE';
2427: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(111) := 'DATABASE';
2428: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(112) := 'DATABASEDATE';
2429: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(113) := 'DATAFILE';
2430: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(114) := 'DATAFILES';
2431: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(115) := 'DATAOBJNO';
2432: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(116) := 'DATE';
2433: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(117) := 'DBA';

Line 2430: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(114) := 'DATAFILES';

2426: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(110) := 'DATA_BASE';
2427: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(111) := 'DATABASE';
2428: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(112) := 'DATABASEDATE';
2429: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(113) := 'DATAFILE';
2430: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(114) := 'DATAFILES';
2431: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(115) := 'DATAOBJNO';
2432: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(116) := 'DATE';
2433: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(117) := 'DBA';
2434: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(118) := 'DEALLOCATE';

Line 2431: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(115) := 'DATAOBJNO';

2427: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(111) := 'DATABASE';
2428: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(112) := 'DATABASEDATE';
2429: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(113) := 'DATAFILE';
2430: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(114) := 'DATAFILES';
2431: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(115) := 'DATAOBJNO';
2432: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(116) := 'DATE';
2433: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(117) := 'DBA';
2434: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(118) := 'DEALLOCATE';
2435: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(119) := 'DEBUG';

Line 2432: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(116) := 'DATE';

2428: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(112) := 'DATABASEDATE';
2429: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(113) := 'DATAFILE';
2430: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(114) := 'DATAFILES';
2431: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(115) := 'DATAOBJNO';
2432: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(116) := 'DATE';
2433: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(117) := 'DBA';
2434: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(118) := 'DEALLOCATE';
2435: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(119) := 'DEBUG';
2436: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(120) := 'DEBUGOFF';

Line 2433: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(117) := 'DBA';

2429: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(113) := 'DATAFILE';
2430: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(114) := 'DATAFILES';
2431: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(115) := 'DATAOBJNO';
2432: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(116) := 'DATE';
2433: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(117) := 'DBA';
2434: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(118) := 'DEALLOCATE';
2435: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(119) := 'DEBUG';
2436: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(120) := 'DEBUGOFF';
2437: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(121) := 'DEBUGON';

Line 2434: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(118) := 'DEALLOCATE';

2430: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(114) := 'DATAFILES';
2431: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(115) := 'DATAOBJNO';
2432: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(116) := 'DATE';
2433: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(117) := 'DBA';
2434: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(118) := 'DEALLOCATE';
2435: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(119) := 'DEBUG';
2436: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(120) := 'DEBUGOFF';
2437: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(121) := 'DEBUGON';
2438: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(122) := 'DEC';

Line 2435: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(119) := 'DEBUG';

2431: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(115) := 'DATAOBJNO';
2432: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(116) := 'DATE';
2433: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(117) := 'DBA';
2434: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(118) := 'DEALLOCATE';
2435: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(119) := 'DEBUG';
2436: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(120) := 'DEBUGOFF';
2437: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(121) := 'DEBUGON';
2438: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(122) := 'DEC';
2439: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(123) := 'DECIMAL';

Line 2436: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(120) := 'DEBUGOFF';

2432: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(116) := 'DATE';
2433: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(117) := 'DBA';
2434: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(118) := 'DEALLOCATE';
2435: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(119) := 'DEBUG';
2436: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(120) := 'DEBUGOFF';
2437: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(121) := 'DEBUGON';
2438: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(122) := 'DEC';
2439: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(123) := 'DECIMAL';
2440: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(124) := 'DECLARE';

Line 2437: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(121) := 'DEBUGON';

2433: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(117) := 'DBA';
2434: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(118) := 'DEALLOCATE';
2435: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(119) := 'DEBUG';
2436: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(120) := 'DEBUGOFF';
2437: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(121) := 'DEBUGON';
2438: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(122) := 'DEC';
2439: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(123) := 'DECIMAL';
2440: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(124) := 'DECLARE';
2441: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(125) := 'DEFAULT';

Line 2438: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(122) := 'DEC';

2434: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(118) := 'DEALLOCATE';
2435: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(119) := 'DEBUG';
2436: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(120) := 'DEBUGOFF';
2437: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(121) := 'DEBUGON';
2438: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(122) := 'DEC';
2439: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(123) := 'DECIMAL';
2440: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(124) := 'DECLARE';
2441: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(125) := 'DEFAULT';
2442: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(126) := 'DEFERRABLE';

Line 2439: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(123) := 'DECIMAL';

2435: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(119) := 'DEBUG';
2436: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(120) := 'DEBUGOFF';
2437: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(121) := 'DEBUGON';
2438: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(122) := 'DEC';
2439: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(123) := 'DECIMAL';
2440: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(124) := 'DECLARE';
2441: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(125) := 'DEFAULT';
2442: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(126) := 'DEFERRABLE';
2443: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(127) := 'DEFERRED';

Line 2440: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(124) := 'DECLARE';

2436: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(120) := 'DEBUGOFF';
2437: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(121) := 'DEBUGON';
2438: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(122) := 'DEC';
2439: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(123) := 'DECIMAL';
2440: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(124) := 'DECLARE';
2441: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(125) := 'DEFAULT';
2442: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(126) := 'DEFERRABLE';
2443: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(127) := 'DEFERRED';
2444: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(128) := 'DEFINITION';

Line 2441: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(125) := 'DEFAULT';

2437: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(121) := 'DEBUGON';
2438: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(122) := 'DEC';
2439: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(123) := 'DECIMAL';
2440: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(124) := 'DECLARE';
2441: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(125) := 'DEFAULT';
2442: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(126) := 'DEFERRABLE';
2443: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(127) := 'DEFERRED';
2444: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(128) := 'DEFINITION';
2445: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(129) := 'DEGREE';

Line 2442: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(126) := 'DEFERRABLE';

2438: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(122) := 'DEC';
2439: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(123) := 'DECIMAL';
2440: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(124) := 'DECLARE';
2441: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(125) := 'DEFAULT';
2442: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(126) := 'DEFERRABLE';
2443: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(127) := 'DEFERRED';
2444: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(128) := 'DEFINITION';
2445: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(129) := 'DEGREE';
2446: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(130) := 'DELAY';

Line 2443: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(127) := 'DEFERRED';

2439: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(123) := 'DECIMAL';
2440: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(124) := 'DECLARE';
2441: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(125) := 'DEFAULT';
2442: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(126) := 'DEFERRABLE';
2443: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(127) := 'DEFERRED';
2444: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(128) := 'DEFINITION';
2445: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(129) := 'DEGREE';
2446: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(130) := 'DELAY';
2447: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(131) := 'DELETE';

Line 2444: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(128) := 'DEFINITION';

2440: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(124) := 'DECLARE';
2441: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(125) := 'DEFAULT';
2442: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(126) := 'DEFERRABLE';
2443: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(127) := 'DEFERRED';
2444: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(128) := 'DEFINITION';
2445: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(129) := 'DEGREE';
2446: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(130) := 'DELAY';
2447: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(131) := 'DELETE';
2448: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(132) := 'DEREF';

Line 2445: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(129) := 'DEGREE';

2441: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(125) := 'DEFAULT';
2442: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(126) := 'DEFERRABLE';
2443: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(127) := 'DEFERRED';
2444: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(128) := 'DEFINITION';
2445: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(129) := 'DEGREE';
2446: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(130) := 'DELAY';
2447: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(131) := 'DELETE';
2448: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(132) := 'DEREF';
2449: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(133) := 'DESC';

Line 2446: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(130) := 'DELAY';

2442: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(126) := 'DEFERRABLE';
2443: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(127) := 'DEFERRED';
2444: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(128) := 'DEFINITION';
2445: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(129) := 'DEGREE';
2446: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(130) := 'DELAY';
2447: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(131) := 'DELETE';
2448: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(132) := 'DEREF';
2449: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(133) := 'DESC';
2450: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(134) := 'DIGITS';

Line 2447: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(131) := 'DELETE';

2443: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(127) := 'DEFERRED';
2444: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(128) := 'DEFINITION';
2445: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(129) := 'DEGREE';
2446: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(130) := 'DELAY';
2447: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(131) := 'DELETE';
2448: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(132) := 'DEREF';
2449: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(133) := 'DESC';
2450: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(134) := 'DIGITS';
2451: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(135) := 'DIRECTORY';

Line 2448: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(132) := 'DEREF';

2444: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(128) := 'DEFINITION';
2445: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(129) := 'DEGREE';
2446: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(130) := 'DELAY';
2447: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(131) := 'DELETE';
2448: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(132) := 'DEREF';
2449: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(133) := 'DESC';
2450: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(134) := 'DIGITS';
2451: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(135) := 'DIRECTORY';
2452: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(136) := 'DISABLE';

Line 2449: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(133) := 'DESC';

2445: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(129) := 'DEGREE';
2446: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(130) := 'DELAY';
2447: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(131) := 'DELETE';
2448: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(132) := 'DEREF';
2449: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(133) := 'DESC';
2450: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(134) := 'DIGITS';
2451: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(135) := 'DIRECTORY';
2452: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(136) := 'DISABLE';
2453: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(137) := 'DISCONNECT';

Line 2450: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(134) := 'DIGITS';

2446: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(130) := 'DELAY';
2447: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(131) := 'DELETE';
2448: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(132) := 'DEREF';
2449: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(133) := 'DESC';
2450: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(134) := 'DIGITS';
2451: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(135) := 'DIRECTORY';
2452: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(136) := 'DISABLE';
2453: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(137) := 'DISCONNECT';
2454: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(138) := 'DISMOUNT';

Line 2451: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(135) := 'DIRECTORY';

2447: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(131) := 'DELETE';
2448: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(132) := 'DEREF';
2449: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(133) := 'DESC';
2450: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(134) := 'DIGITS';
2451: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(135) := 'DIRECTORY';
2452: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(136) := 'DISABLE';
2453: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(137) := 'DISCONNECT';
2454: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(138) := 'DISMOUNT';
2455: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(139) := 'DISPOSE';

Line 2452: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(136) := 'DISABLE';

2448: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(132) := 'DEREF';
2449: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(133) := 'DESC';
2450: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(134) := 'DIGITS';
2451: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(135) := 'DIRECTORY';
2452: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(136) := 'DISABLE';
2453: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(137) := 'DISCONNECT';
2454: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(138) := 'DISMOUNT';
2455: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(139) := 'DISPOSE';
2456: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(140) := 'DISTINCT';

Line 2453: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(137) := 'DISCONNECT';

2449: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(133) := 'DESC';
2450: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(134) := 'DIGITS';
2451: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(135) := 'DIRECTORY';
2452: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(136) := 'DISABLE';
2453: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(137) := 'DISCONNECT';
2454: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(138) := 'DISMOUNT';
2455: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(139) := 'DISPOSE';
2456: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(140) := 'DISTINCT';
2457: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(141) := 'DISTRIBUTED';

Line 2454: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(138) := 'DISMOUNT';

2450: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(134) := 'DIGITS';
2451: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(135) := 'DIRECTORY';
2452: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(136) := 'DISABLE';
2453: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(137) := 'DISCONNECT';
2454: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(138) := 'DISMOUNT';
2455: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(139) := 'DISPOSE';
2456: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(140) := 'DISTINCT';
2457: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(141) := 'DISTRIBUTED';
2458: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(142) := 'DML';

Line 2455: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(139) := 'DISPOSE';

2451: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(135) := 'DIRECTORY';
2452: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(136) := 'DISABLE';
2453: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(137) := 'DISCONNECT';
2454: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(138) := 'DISMOUNT';
2455: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(139) := 'DISPOSE';
2456: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(140) := 'DISTINCT';
2457: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(141) := 'DISTRIBUTED';
2458: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(142) := 'DML';
2459: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(143) := 'DO';

Line 2456: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(140) := 'DISTINCT';

2452: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(136) := 'DISABLE';
2453: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(137) := 'DISCONNECT';
2454: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(138) := 'DISMOUNT';
2455: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(139) := 'DISPOSE';
2456: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(140) := 'DISTINCT';
2457: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(141) := 'DISTRIBUTED';
2458: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(142) := 'DML';
2459: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(143) := 'DO';
2460: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(144) := 'DOUBLE';

Line 2457: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(141) := 'DISTRIBUTED';

2453: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(137) := 'DISCONNECT';
2454: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(138) := 'DISMOUNT';
2455: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(139) := 'DISPOSE';
2456: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(140) := 'DISTINCT';
2457: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(141) := 'DISTRIBUTED';
2458: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(142) := 'DML';
2459: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(143) := 'DO';
2460: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(144) := 'DOUBLE';
2461: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(145) := 'DROP';

Line 2458: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(142) := 'DML';

2454: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(138) := 'DISMOUNT';
2455: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(139) := 'DISPOSE';
2456: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(140) := 'DISTINCT';
2457: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(141) := 'DISTRIBUTED';
2458: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(142) := 'DML';
2459: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(143) := 'DO';
2460: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(144) := 'DOUBLE';
2461: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(145) := 'DROP';
2462: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(146) := 'DUMP';

Line 2459: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(143) := 'DO';

2455: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(139) := 'DISPOSE';
2456: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(140) := 'DISTINCT';
2457: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(141) := 'DISTRIBUTED';
2458: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(142) := 'DML';
2459: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(143) := 'DO';
2460: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(144) := 'DOUBLE';
2461: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(145) := 'DROP';
2462: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(146) := 'DUMP';
2463: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(147) := 'EACH';

Line 2460: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(144) := 'DOUBLE';

2456: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(140) := 'DISTINCT';
2457: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(141) := 'DISTRIBUTED';
2458: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(142) := 'DML';
2459: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(143) := 'DO';
2460: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(144) := 'DOUBLE';
2461: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(145) := 'DROP';
2462: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(146) := 'DUMP';
2463: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(147) := 'EACH';
2464: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(148) := 'ELSE';

Line 2461: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(145) := 'DROP';

2457: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(141) := 'DISTRIBUTED';
2458: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(142) := 'DML';
2459: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(143) := 'DO';
2460: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(144) := 'DOUBLE';
2461: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(145) := 'DROP';
2462: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(146) := 'DUMP';
2463: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(147) := 'EACH';
2464: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(148) := 'ELSE';
2465: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(149) := 'ELSIF';

Line 2462: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(146) := 'DUMP';

2458: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(142) := 'DML';
2459: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(143) := 'DO';
2460: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(144) := 'DOUBLE';
2461: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(145) := 'DROP';
2462: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(146) := 'DUMP';
2463: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(147) := 'EACH';
2464: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(148) := 'ELSE';
2465: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(149) := 'ELSIF';
2466: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(150) := 'ENABLE';

Line 2463: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(147) := 'EACH';

2459: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(143) := 'DO';
2460: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(144) := 'DOUBLE';
2461: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(145) := 'DROP';
2462: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(146) := 'DUMP';
2463: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(147) := 'EACH';
2464: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(148) := 'ELSE';
2465: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(149) := 'ELSIF';
2466: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(150) := 'ENABLE';
2467: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(151) := 'END';

Line 2464: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(148) := 'ELSE';

2460: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(144) := 'DOUBLE';
2461: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(145) := 'DROP';
2462: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(146) := 'DUMP';
2463: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(147) := 'EACH';
2464: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(148) := 'ELSE';
2465: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(149) := 'ELSIF';
2466: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(150) := 'ENABLE';
2467: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(151) := 'END';
2468: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(152) := 'ENFORCE';

Line 2465: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(149) := 'ELSIF';

2461: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(145) := 'DROP';
2462: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(146) := 'DUMP';
2463: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(147) := 'EACH';
2464: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(148) := 'ELSE';
2465: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(149) := 'ELSIF';
2466: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(150) := 'ENABLE';
2467: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(151) := 'END';
2468: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(152) := 'ENFORCE';
2469: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(153) := 'ENTRY';

Line 2466: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(150) := 'ENABLE';

2462: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(146) := 'DUMP';
2463: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(147) := 'EACH';
2464: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(148) := 'ELSE';
2465: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(149) := 'ELSIF';
2466: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(150) := 'ENABLE';
2467: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(151) := 'END';
2468: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(152) := 'ENFORCE';
2469: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(153) := 'ENTRY';
2470: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(154) := 'ESCAPE';

Line 2467: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(151) := 'END';

2463: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(147) := 'EACH';
2464: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(148) := 'ELSE';
2465: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(149) := 'ELSIF';
2466: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(150) := 'ENABLE';
2467: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(151) := 'END';
2468: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(152) := 'ENFORCE';
2469: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(153) := 'ENTRY';
2470: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(154) := 'ESCAPE';
2471: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(155) := 'ESTIMATE';

Line 2468: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(152) := 'ENFORCE';

2464: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(148) := 'ELSE';
2465: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(149) := 'ELSIF';
2466: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(150) := 'ENABLE';
2467: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(151) := 'END';
2468: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(152) := 'ENFORCE';
2469: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(153) := 'ENTRY';
2470: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(154) := 'ESCAPE';
2471: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(155) := 'ESTIMATE';
2472: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(156) := 'EVENTS';

Line 2469: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(153) := 'ENTRY';

2465: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(149) := 'ELSIF';
2466: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(150) := 'ENABLE';
2467: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(151) := 'END';
2468: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(152) := 'ENFORCE';
2469: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(153) := 'ENTRY';
2470: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(154) := 'ESCAPE';
2471: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(155) := 'ESTIMATE';
2472: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(156) := 'EVENTS';
2473: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(157) := 'EXCEPTION';

Line 2470: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(154) := 'ESCAPE';

2466: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(150) := 'ENABLE';
2467: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(151) := 'END';
2468: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(152) := 'ENFORCE';
2469: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(153) := 'ENTRY';
2470: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(154) := 'ESCAPE';
2471: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(155) := 'ESTIMATE';
2472: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(156) := 'EVENTS';
2473: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(157) := 'EXCEPTION';
2474: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(158) := 'EXCEPTION_INIT';

Line 2471: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(155) := 'ESTIMATE';

2467: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(151) := 'END';
2468: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(152) := 'ENFORCE';
2469: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(153) := 'ENTRY';
2470: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(154) := 'ESCAPE';
2471: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(155) := 'ESTIMATE';
2472: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(156) := 'EVENTS';
2473: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(157) := 'EXCEPTION';
2474: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(158) := 'EXCEPTION_INIT';
2475: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(159) := 'EXCEPTIONS';

Line 2472: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(156) := 'EVENTS';

2468: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(152) := 'ENFORCE';
2469: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(153) := 'ENTRY';
2470: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(154) := 'ESCAPE';
2471: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(155) := 'ESTIMATE';
2472: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(156) := 'EVENTS';
2473: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(157) := 'EXCEPTION';
2474: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(158) := 'EXCEPTION_INIT';
2475: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(159) := 'EXCEPTIONS';
2476: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(160) := 'EXCHANGE';

Line 2473: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(157) := 'EXCEPTION';

2469: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(153) := 'ENTRY';
2470: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(154) := 'ESCAPE';
2471: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(155) := 'ESTIMATE';
2472: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(156) := 'EVENTS';
2473: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(157) := 'EXCEPTION';
2474: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(158) := 'EXCEPTION_INIT';
2475: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(159) := 'EXCEPTIONS';
2476: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(160) := 'EXCHANGE';
2477: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(161) := 'EXCLUDING';

Line 2474: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(158) := 'EXCEPTION_INIT';

2470: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(154) := 'ESCAPE';
2471: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(155) := 'ESTIMATE';
2472: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(156) := 'EVENTS';
2473: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(157) := 'EXCEPTION';
2474: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(158) := 'EXCEPTION_INIT';
2475: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(159) := 'EXCEPTIONS';
2476: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(160) := 'EXCHANGE';
2477: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(161) := 'EXCLUDING';
2478: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(162) := 'EXCLUSIVE';

Line 2475: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(159) := 'EXCEPTIONS';

2471: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(155) := 'ESTIMATE';
2472: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(156) := 'EVENTS';
2473: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(157) := 'EXCEPTION';
2474: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(158) := 'EXCEPTION_INIT';
2475: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(159) := 'EXCEPTIONS';
2476: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(160) := 'EXCHANGE';
2477: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(161) := 'EXCLUDING';
2478: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(162) := 'EXCLUSIVE';
2479: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(163) := 'EXECUTE';

Line 2476: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(160) := 'EXCHANGE';

2472: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(156) := 'EVENTS';
2473: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(157) := 'EXCEPTION';
2474: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(158) := 'EXCEPTION_INIT';
2475: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(159) := 'EXCEPTIONS';
2476: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(160) := 'EXCHANGE';
2477: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(161) := 'EXCLUDING';
2478: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(162) := 'EXCLUSIVE';
2479: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(163) := 'EXECUTE';
2480: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(164) := 'EXEMPT';

Line 2477: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(161) := 'EXCLUDING';

2473: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(157) := 'EXCEPTION';
2474: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(158) := 'EXCEPTION_INIT';
2475: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(159) := 'EXCEPTIONS';
2476: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(160) := 'EXCHANGE';
2477: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(161) := 'EXCLUDING';
2478: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(162) := 'EXCLUSIVE';
2479: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(163) := 'EXECUTE';
2480: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(164) := 'EXEMPT';
2481: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(165) := 'EXISTS';

Line 2478: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(162) := 'EXCLUSIVE';

2474: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(158) := 'EXCEPTION_INIT';
2475: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(159) := 'EXCEPTIONS';
2476: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(160) := 'EXCHANGE';
2477: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(161) := 'EXCLUDING';
2478: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(162) := 'EXCLUSIVE';
2479: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(163) := 'EXECUTE';
2480: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(164) := 'EXEMPT';
2481: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(165) := 'EXISTS';
2482: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(166) := 'EXIT';

Line 2479: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(163) := 'EXECUTE';

2475: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(159) := 'EXCEPTIONS';
2476: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(160) := 'EXCHANGE';
2477: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(161) := 'EXCLUDING';
2478: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(162) := 'EXCLUSIVE';
2479: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(163) := 'EXECUTE';
2480: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(164) := 'EXEMPT';
2481: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(165) := 'EXISTS';
2482: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(166) := 'EXIT';
2483: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(167) := 'EXPIRE';

Line 2480: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(164) := 'EXEMPT';

2476: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(160) := 'EXCHANGE';
2477: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(161) := 'EXCLUDING';
2478: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(162) := 'EXCLUSIVE';
2479: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(163) := 'EXECUTE';
2480: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(164) := 'EXEMPT';
2481: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(165) := 'EXISTS';
2482: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(166) := 'EXIT';
2483: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(167) := 'EXPIRE';
2484: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(168) := 'EXPLAIN';

Line 2481: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(165) := 'EXISTS';

2477: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(161) := 'EXCLUDING';
2478: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(162) := 'EXCLUSIVE';
2479: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(163) := 'EXECUTE';
2480: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(164) := 'EXEMPT';
2481: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(165) := 'EXISTS';
2482: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(166) := 'EXIT';
2483: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(167) := 'EXPIRE';
2484: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(168) := 'EXPLAIN';
2485: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(169) := 'EXTENT';

Line 2482: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(166) := 'EXIT';

2478: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(162) := 'EXCLUSIVE';
2479: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(163) := 'EXECUTE';
2480: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(164) := 'EXEMPT';
2481: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(165) := 'EXISTS';
2482: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(166) := 'EXIT';
2483: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(167) := 'EXPIRE';
2484: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(168) := 'EXPLAIN';
2485: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(169) := 'EXTENT';
2486: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(170) := 'EXTENTS';

Line 2483: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(167) := 'EXPIRE';

2479: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(163) := 'EXECUTE';
2480: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(164) := 'EXEMPT';
2481: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(165) := 'EXISTS';
2482: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(166) := 'EXIT';
2483: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(167) := 'EXPIRE';
2484: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(168) := 'EXPLAIN';
2485: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(169) := 'EXTENT';
2486: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(170) := 'EXTENTS';
2487: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(171) := 'EXTERNALLY';

Line 2484: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(168) := 'EXPLAIN';

2480: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(164) := 'EXEMPT';
2481: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(165) := 'EXISTS';
2482: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(166) := 'EXIT';
2483: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(167) := 'EXPIRE';
2484: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(168) := 'EXPLAIN';
2485: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(169) := 'EXTENT';
2486: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(170) := 'EXTENTS';
2487: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(171) := 'EXTERNALLY';
2488: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(172) := 'FAILED_LOGIN_ATTEMPTS';

Line 2485: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(169) := 'EXTENT';

2481: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(165) := 'EXISTS';
2482: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(166) := 'EXIT';
2483: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(167) := 'EXPIRE';
2484: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(168) := 'EXPLAIN';
2485: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(169) := 'EXTENT';
2486: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(170) := 'EXTENTS';
2487: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(171) := 'EXTERNALLY';
2488: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(172) := 'FAILED_LOGIN_ATTEMPTS';
2489: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(173) := 'FALSE';

Line 2486: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(170) := 'EXTENTS';

2482: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(166) := 'EXIT';
2483: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(167) := 'EXPIRE';
2484: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(168) := 'EXPLAIN';
2485: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(169) := 'EXTENT';
2486: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(170) := 'EXTENTS';
2487: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(171) := 'EXTERNALLY';
2488: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(172) := 'FAILED_LOGIN_ATTEMPTS';
2489: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(173) := 'FALSE';
2490: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(174) := 'FAST';

Line 2487: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(171) := 'EXTERNALLY';

2483: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(167) := 'EXPIRE';
2484: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(168) := 'EXPLAIN';
2485: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(169) := 'EXTENT';
2486: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(170) := 'EXTENTS';
2487: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(171) := 'EXTERNALLY';
2488: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(172) := 'FAILED_LOGIN_ATTEMPTS';
2489: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(173) := 'FALSE';
2490: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(174) := 'FAST';
2491: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(175) := 'FETCH';

Line 2488: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(172) := 'FAILED_LOGIN_ATTEMPTS';

2484: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(168) := 'EXPLAIN';
2485: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(169) := 'EXTENT';
2486: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(170) := 'EXTENTS';
2487: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(171) := 'EXTERNALLY';
2488: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(172) := 'FAILED_LOGIN_ATTEMPTS';
2489: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(173) := 'FALSE';
2490: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(174) := 'FAST';
2491: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(175) := 'FETCH';
2492: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(176) := 'FILE';

Line 2489: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(173) := 'FALSE';

2485: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(169) := 'EXTENT';
2486: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(170) := 'EXTENTS';
2487: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(171) := 'EXTERNALLY';
2488: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(172) := 'FAILED_LOGIN_ATTEMPTS';
2489: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(173) := 'FALSE';
2490: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(174) := 'FAST';
2491: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(175) := 'FETCH';
2492: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(176) := 'FILE';
2493: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(177) := 'FIRST_ROWS';

Line 2490: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(174) := 'FAST';

2486: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(170) := 'EXTENTS';
2487: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(171) := 'EXTERNALLY';
2488: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(172) := 'FAILED_LOGIN_ATTEMPTS';
2489: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(173) := 'FALSE';
2490: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(174) := 'FAST';
2491: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(175) := 'FETCH';
2492: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(176) := 'FILE';
2493: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(177) := 'FIRST_ROWS';
2494: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(178) := 'FLAGGER';

Line 2491: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(175) := 'FETCH';

2487: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(171) := 'EXTERNALLY';
2488: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(172) := 'FAILED_LOGIN_ATTEMPTS';
2489: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(173) := 'FALSE';
2490: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(174) := 'FAST';
2491: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(175) := 'FETCH';
2492: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(176) := 'FILE';
2493: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(177) := 'FIRST_ROWS';
2494: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(178) := 'FLAGGER';
2495: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(179) := 'FLOAT';

Line 2492: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(176) := 'FILE';

2488: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(172) := 'FAILED_LOGIN_ATTEMPTS';
2489: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(173) := 'FALSE';
2490: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(174) := 'FAST';
2491: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(175) := 'FETCH';
2492: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(176) := 'FILE';
2493: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(177) := 'FIRST_ROWS';
2494: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(178) := 'FLAGGER';
2495: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(179) := 'FLOAT';
2496: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(180) := 'FLUSH';

Line 2493: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(177) := 'FIRST_ROWS';

2489: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(173) := 'FALSE';
2490: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(174) := 'FAST';
2491: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(175) := 'FETCH';
2492: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(176) := 'FILE';
2493: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(177) := 'FIRST_ROWS';
2494: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(178) := 'FLAGGER';
2495: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(179) := 'FLOAT';
2496: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(180) := 'FLUSH';
2497: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(181) := 'FOR';

Line 2494: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(178) := 'FLAGGER';

2490: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(174) := 'FAST';
2491: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(175) := 'FETCH';
2492: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(176) := 'FILE';
2493: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(177) := 'FIRST_ROWS';
2494: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(178) := 'FLAGGER';
2495: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(179) := 'FLOAT';
2496: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(180) := 'FLUSH';
2497: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(181) := 'FOR';
2498: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(182) := 'FORCE';

Line 2495: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(179) := 'FLOAT';

2491: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(175) := 'FETCH';
2492: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(176) := 'FILE';
2493: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(177) := 'FIRST_ROWS';
2494: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(178) := 'FLAGGER';
2495: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(179) := 'FLOAT';
2496: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(180) := 'FLUSH';
2497: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(181) := 'FOR';
2498: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(182) := 'FORCE';
2499: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(183) := 'FOREIGN';

Line 2496: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(180) := 'FLUSH';

2492: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(176) := 'FILE';
2493: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(177) := 'FIRST_ROWS';
2494: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(178) := 'FLAGGER';
2495: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(179) := 'FLOAT';
2496: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(180) := 'FLUSH';
2497: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(181) := 'FOR';
2498: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(182) := 'FORCE';
2499: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(183) := 'FOREIGN';
2500: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(184) := 'FORM';

Line 2497: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(181) := 'FOR';

2493: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(177) := 'FIRST_ROWS';
2494: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(178) := 'FLAGGER';
2495: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(179) := 'FLOAT';
2496: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(180) := 'FLUSH';
2497: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(181) := 'FOR';
2498: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(182) := 'FORCE';
2499: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(183) := 'FOREIGN';
2500: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(184) := 'FORM';
2501: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(185) := 'FREELIST';

Line 2498: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(182) := 'FORCE';

2494: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(178) := 'FLAGGER';
2495: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(179) := 'FLOAT';
2496: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(180) := 'FLUSH';
2497: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(181) := 'FOR';
2498: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(182) := 'FORCE';
2499: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(183) := 'FOREIGN';
2500: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(184) := 'FORM';
2501: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(185) := 'FREELIST';
2502: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(186) := 'FREELISTS';

Line 2499: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(183) := 'FOREIGN';

2495: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(179) := 'FLOAT';
2496: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(180) := 'FLUSH';
2497: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(181) := 'FOR';
2498: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(182) := 'FORCE';
2499: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(183) := 'FOREIGN';
2500: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(184) := 'FORM';
2501: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(185) := 'FREELIST';
2502: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(186) := 'FREELISTS';
2503: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(187) := 'FROM';

Line 2500: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(184) := 'FORM';

2496: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(180) := 'FLUSH';
2497: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(181) := 'FOR';
2498: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(182) := 'FORCE';
2499: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(183) := 'FOREIGN';
2500: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(184) := 'FORM';
2501: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(185) := 'FREELIST';
2502: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(186) := 'FREELISTS';
2503: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(187) := 'FROM';
2504: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(188) := 'FULL';

Line 2501: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(185) := 'FREELIST';

2497: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(181) := 'FOR';
2498: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(182) := 'FORCE';
2499: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(183) := 'FOREIGN';
2500: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(184) := 'FORM';
2501: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(185) := 'FREELIST';
2502: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(186) := 'FREELISTS';
2503: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(187) := 'FROM';
2504: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(188) := 'FULL';
2505: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(189) := 'FUNCTION';

Line 2502: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(186) := 'FREELISTS';

2498: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(182) := 'FORCE';
2499: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(183) := 'FOREIGN';
2500: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(184) := 'FORM';
2501: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(185) := 'FREELIST';
2502: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(186) := 'FREELISTS';
2503: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(187) := 'FROM';
2504: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(188) := 'FULL';
2505: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(189) := 'FUNCTION';
2506: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(190) := 'GENERIC';

Line 2503: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(187) := 'FROM';

2499: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(183) := 'FOREIGN';
2500: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(184) := 'FORM';
2501: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(185) := 'FREELIST';
2502: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(186) := 'FREELISTS';
2503: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(187) := 'FROM';
2504: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(188) := 'FULL';
2505: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(189) := 'FUNCTION';
2506: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(190) := 'GENERIC';
2507: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(191) := 'GLOBAL';

Line 2504: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(188) := 'FULL';

2500: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(184) := 'FORM';
2501: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(185) := 'FREELIST';
2502: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(186) := 'FREELISTS';
2503: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(187) := 'FROM';
2504: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(188) := 'FULL';
2505: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(189) := 'FUNCTION';
2506: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(190) := 'GENERIC';
2507: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(191) := 'GLOBAL';
2508: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(192) := 'GLOBAL_NAME';

Line 2505: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(189) := 'FUNCTION';

2501: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(185) := 'FREELIST';
2502: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(186) := 'FREELISTS';
2503: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(187) := 'FROM';
2504: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(188) := 'FULL';
2505: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(189) := 'FUNCTION';
2506: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(190) := 'GENERIC';
2507: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(191) := 'GLOBAL';
2508: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(192) := 'GLOBAL_NAME';
2509: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(193) := 'GLOBALLY';

Line 2506: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(190) := 'GENERIC';

2502: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(186) := 'FREELISTS';
2503: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(187) := 'FROM';
2504: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(188) := 'FULL';
2505: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(189) := 'FUNCTION';
2506: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(190) := 'GENERIC';
2507: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(191) := 'GLOBAL';
2508: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(192) := 'GLOBAL_NAME';
2509: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(193) := 'GLOBALLY';
2510: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(194) := 'GOTO';

Line 2507: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(191) := 'GLOBAL';

2503: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(187) := 'FROM';
2504: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(188) := 'FULL';
2505: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(189) := 'FUNCTION';
2506: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(190) := 'GENERIC';
2507: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(191) := 'GLOBAL';
2508: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(192) := 'GLOBAL_NAME';
2509: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(193) := 'GLOBALLY';
2510: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(194) := 'GOTO';
2511: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(195) := 'GRANT';

Line 2508: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(192) := 'GLOBAL_NAME';

2504: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(188) := 'FULL';
2505: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(189) := 'FUNCTION';
2506: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(190) := 'GENERIC';
2507: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(191) := 'GLOBAL';
2508: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(192) := 'GLOBAL_NAME';
2509: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(193) := 'GLOBALLY';
2510: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(194) := 'GOTO';
2511: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(195) := 'GRANT';
2512: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(196) := 'GROUP';

Line 2509: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(193) := 'GLOBALLY';

2505: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(189) := 'FUNCTION';
2506: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(190) := 'GENERIC';
2507: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(191) := 'GLOBAL';
2508: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(192) := 'GLOBAL_NAME';
2509: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(193) := 'GLOBALLY';
2510: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(194) := 'GOTO';
2511: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(195) := 'GRANT';
2512: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(196) := 'GROUP';
2513: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(197) := 'GROUPS';

Line 2510: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(194) := 'GOTO';

2506: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(190) := 'GENERIC';
2507: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(191) := 'GLOBAL';
2508: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(192) := 'GLOBAL_NAME';
2509: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(193) := 'GLOBALLY';
2510: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(194) := 'GOTO';
2511: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(195) := 'GRANT';
2512: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(196) := 'GROUP';
2513: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(197) := 'GROUPS';
2514: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(198) := 'HASH';

Line 2511: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(195) := 'GRANT';

2507: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(191) := 'GLOBAL';
2508: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(192) := 'GLOBAL_NAME';
2509: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(193) := 'GLOBALLY';
2510: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(194) := 'GOTO';
2511: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(195) := 'GRANT';
2512: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(196) := 'GROUP';
2513: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(197) := 'GROUPS';
2514: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(198) := 'HASH';
2515: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(199) := 'HASHKEYS';

Line 2512: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(196) := 'GROUP';

2508: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(192) := 'GLOBAL_NAME';
2509: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(193) := 'GLOBALLY';
2510: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(194) := 'GOTO';
2511: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(195) := 'GRANT';
2512: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(196) := 'GROUP';
2513: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(197) := 'GROUPS';
2514: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(198) := 'HASH';
2515: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(199) := 'HASHKEYS';
2516: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(200) := 'HAVING';

Line 2513: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(197) := 'GROUPS';

2509: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(193) := 'GLOBALLY';
2510: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(194) := 'GOTO';
2511: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(195) := 'GRANT';
2512: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(196) := 'GROUP';
2513: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(197) := 'GROUPS';
2514: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(198) := 'HASH';
2515: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(199) := 'HASHKEYS';
2516: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(200) := 'HAVING';
2517: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(201) := 'HEADER';

Line 2514: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(198) := 'HASH';

2510: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(194) := 'GOTO';
2511: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(195) := 'GRANT';
2512: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(196) := 'GROUP';
2513: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(197) := 'GROUPS';
2514: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(198) := 'HASH';
2515: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(199) := 'HASHKEYS';
2516: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(200) := 'HAVING';
2517: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(201) := 'HEADER';
2518: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(202) := 'HEAP';

Line 2515: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(199) := 'HASHKEYS';

2511: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(195) := 'GRANT';
2512: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(196) := 'GROUP';
2513: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(197) := 'GROUPS';
2514: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(198) := 'HASH';
2515: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(199) := 'HASHKEYS';
2516: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(200) := 'HAVING';
2517: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(201) := 'HEADER';
2518: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(202) := 'HEAP';
2519: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(203) := 'IDENTIFIED';

Line 2516: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(200) := 'HAVING';

2512: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(196) := 'GROUP';
2513: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(197) := 'GROUPS';
2514: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(198) := 'HASH';
2515: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(199) := 'HASHKEYS';
2516: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(200) := 'HAVING';
2517: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(201) := 'HEADER';
2518: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(202) := 'HEAP';
2519: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(203) := 'IDENTIFIED';
2520: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(204) := 'IDLE_TIME';

Line 2517: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(201) := 'HEADER';

2513: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(197) := 'GROUPS';
2514: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(198) := 'HASH';
2515: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(199) := 'HASHKEYS';
2516: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(200) := 'HAVING';
2517: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(201) := 'HEADER';
2518: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(202) := 'HEAP';
2519: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(203) := 'IDENTIFIED';
2520: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(204) := 'IDLE_TIME';
2521: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(205) := 'IF';

Line 2518: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(202) := 'HEAP';

2514: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(198) := 'HASH';
2515: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(199) := 'HASHKEYS';
2516: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(200) := 'HAVING';
2517: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(201) := 'HEADER';
2518: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(202) := 'HEAP';
2519: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(203) := 'IDENTIFIED';
2520: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(204) := 'IDLE_TIME';
2521: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(205) := 'IF';
2522: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(206) := 'IMMEDIATE';

Line 2519: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(203) := 'IDENTIFIED';

2515: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(199) := 'HASHKEYS';
2516: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(200) := 'HAVING';
2517: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(201) := 'HEADER';
2518: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(202) := 'HEAP';
2519: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(203) := 'IDENTIFIED';
2520: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(204) := 'IDLE_TIME';
2521: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(205) := 'IF';
2522: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(206) := 'IMMEDIATE';
2523: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(207) := 'IN';

Line 2520: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(204) := 'IDLE_TIME';

2516: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(200) := 'HAVING';
2517: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(201) := 'HEADER';
2518: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(202) := 'HEAP';
2519: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(203) := 'IDENTIFIED';
2520: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(204) := 'IDLE_TIME';
2521: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(205) := 'IF';
2522: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(206) := 'IMMEDIATE';
2523: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(207) := 'IN';
2524: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(208) := 'INCLUDING';

Line 2521: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(205) := 'IF';

2517: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(201) := 'HEADER';
2518: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(202) := 'HEAP';
2519: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(203) := 'IDENTIFIED';
2520: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(204) := 'IDLE_TIME';
2521: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(205) := 'IF';
2522: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(206) := 'IMMEDIATE';
2523: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(207) := 'IN';
2524: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(208) := 'INCLUDING';
2525: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(209) := 'INCREMENT';

Line 2522: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(206) := 'IMMEDIATE';

2518: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(202) := 'HEAP';
2519: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(203) := 'IDENTIFIED';
2520: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(204) := 'IDLE_TIME';
2521: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(205) := 'IF';
2522: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(206) := 'IMMEDIATE';
2523: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(207) := 'IN';
2524: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(208) := 'INCLUDING';
2525: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(209) := 'INCREMENT';
2526: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(210) := 'IND_PARTITION';

Line 2523: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(207) := 'IN';

2519: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(203) := 'IDENTIFIED';
2520: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(204) := 'IDLE_TIME';
2521: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(205) := 'IF';
2522: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(206) := 'IMMEDIATE';
2523: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(207) := 'IN';
2524: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(208) := 'INCLUDING';
2525: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(209) := 'INCREMENT';
2526: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(210) := 'IND_PARTITION';
2527: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(211) := 'INDEX';

Line 2524: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(208) := 'INCLUDING';

2520: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(204) := 'IDLE_TIME';
2521: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(205) := 'IF';
2522: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(206) := 'IMMEDIATE';
2523: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(207) := 'IN';
2524: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(208) := 'INCLUDING';
2525: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(209) := 'INCREMENT';
2526: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(210) := 'IND_PARTITION';
2527: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(211) := 'INDEX';
2528: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(212) := 'INDEXED';

Line 2525: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(209) := 'INCREMENT';

2521: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(205) := 'IF';
2522: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(206) := 'IMMEDIATE';
2523: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(207) := 'IN';
2524: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(208) := 'INCLUDING';
2525: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(209) := 'INCREMENT';
2526: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(210) := 'IND_PARTITION';
2527: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(211) := 'INDEX';
2528: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(212) := 'INDEXED';
2529: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(213) := 'INDEXES';

Line 2526: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(210) := 'IND_PARTITION';

2522: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(206) := 'IMMEDIATE';
2523: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(207) := 'IN';
2524: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(208) := 'INCLUDING';
2525: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(209) := 'INCREMENT';
2526: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(210) := 'IND_PARTITION';
2527: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(211) := 'INDEX';
2528: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(212) := 'INDEXED';
2529: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(213) := 'INDEXES';
2530: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(214) := 'INDICATOR';

Line 2527: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(211) := 'INDEX';

2523: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(207) := 'IN';
2524: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(208) := 'INCLUDING';
2525: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(209) := 'INCREMENT';
2526: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(210) := 'IND_PARTITION';
2527: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(211) := 'INDEX';
2528: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(212) := 'INDEXED';
2529: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(213) := 'INDEXES';
2530: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(214) := 'INDICATOR';
2531: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(215) := 'INITIAL';

Line 2528: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(212) := 'INDEXED';

2524: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(208) := 'INCLUDING';
2525: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(209) := 'INCREMENT';
2526: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(210) := 'IND_PARTITION';
2527: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(211) := 'INDEX';
2528: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(212) := 'INDEXED';
2529: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(213) := 'INDEXES';
2530: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(214) := 'INDICATOR';
2531: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(215) := 'INITIAL';
2532: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(216) := 'INITIALLY';

Line 2529: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(213) := 'INDEXES';

2525: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(209) := 'INCREMENT';
2526: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(210) := 'IND_PARTITION';
2527: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(211) := 'INDEX';
2528: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(212) := 'INDEXED';
2529: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(213) := 'INDEXES';
2530: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(214) := 'INDICATOR';
2531: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(215) := 'INITIAL';
2532: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(216) := 'INITIALLY';
2533: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(217) := 'INITRANS';

Line 2530: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(214) := 'INDICATOR';

2526: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(210) := 'IND_PARTITION';
2527: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(211) := 'INDEX';
2528: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(212) := 'INDEXED';
2529: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(213) := 'INDEXES';
2530: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(214) := 'INDICATOR';
2531: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(215) := 'INITIAL';
2532: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(216) := 'INITIALLY';
2533: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(217) := 'INITRANS';
2534: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(218) := 'INSERT';

Line 2531: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(215) := 'INITIAL';

2527: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(211) := 'INDEX';
2528: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(212) := 'INDEXED';
2529: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(213) := 'INDEXES';
2530: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(214) := 'INDICATOR';
2531: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(215) := 'INITIAL';
2532: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(216) := 'INITIALLY';
2533: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(217) := 'INITRANS';
2534: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(218) := 'INSERT';
2535: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(219) := 'INSTANCE';

Line 2532: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(216) := 'INITIALLY';

2528: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(212) := 'INDEXED';
2529: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(213) := 'INDEXES';
2530: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(214) := 'INDICATOR';
2531: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(215) := 'INITIAL';
2532: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(216) := 'INITIALLY';
2533: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(217) := 'INITRANS';
2534: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(218) := 'INSERT';
2535: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(219) := 'INSTANCE';
2536: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(220) := 'INSTANCES';

Line 2533: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(217) := 'INITRANS';

2529: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(213) := 'INDEXES';
2530: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(214) := 'INDICATOR';
2531: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(215) := 'INITIAL';
2532: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(216) := 'INITIALLY';
2533: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(217) := 'INITRANS';
2534: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(218) := 'INSERT';
2535: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(219) := 'INSTANCE';
2536: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(220) := 'INSTANCES';
2537: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(221) := 'INSTEAD';

Line 2534: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(218) := 'INSERT';

2530: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(214) := 'INDICATOR';
2531: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(215) := 'INITIAL';
2532: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(216) := 'INITIALLY';
2533: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(217) := 'INITRANS';
2534: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(218) := 'INSERT';
2535: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(219) := 'INSTANCE';
2536: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(220) := 'INSTANCES';
2537: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(221) := 'INSTEAD';
2538: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(222) := 'INT';

Line 2535: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(219) := 'INSTANCE';

2531: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(215) := 'INITIAL';
2532: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(216) := 'INITIALLY';
2533: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(217) := 'INITRANS';
2534: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(218) := 'INSERT';
2535: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(219) := 'INSTANCE';
2536: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(220) := 'INSTANCES';
2537: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(221) := 'INSTEAD';
2538: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(222) := 'INT';
2539: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(223) := 'INTEGER';

Line 2536: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(220) := 'INSTANCES';

2532: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(216) := 'INITIALLY';
2533: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(217) := 'INITRANS';
2534: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(218) := 'INSERT';
2535: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(219) := 'INSTANCE';
2536: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(220) := 'INSTANCES';
2537: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(221) := 'INSTEAD';
2538: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(222) := 'INT';
2539: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(223) := 'INTEGER';
2540: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(224) := 'INTERFACE';

Line 2537: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(221) := 'INSTEAD';

2533: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(217) := 'INITRANS';
2534: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(218) := 'INSERT';
2535: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(219) := 'INSTANCE';
2536: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(220) := 'INSTANCES';
2537: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(221) := 'INSTEAD';
2538: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(222) := 'INT';
2539: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(223) := 'INTEGER';
2540: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(224) := 'INTERFACE';
2541: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(225) := 'INTERMEDIATE';

Line 2538: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(222) := 'INT';

2534: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(218) := 'INSERT';
2535: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(219) := 'INSTANCE';
2536: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(220) := 'INSTANCES';
2537: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(221) := 'INSTEAD';
2538: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(222) := 'INT';
2539: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(223) := 'INTEGER';
2540: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(224) := 'INTERFACE';
2541: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(225) := 'INTERMEDIATE';
2542: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(226) := 'INTERSECT';

Line 2539: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(223) := 'INTEGER';

2535: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(219) := 'INSTANCE';
2536: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(220) := 'INSTANCES';
2537: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(221) := 'INSTEAD';
2538: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(222) := 'INT';
2539: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(223) := 'INTEGER';
2540: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(224) := 'INTERFACE';
2541: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(225) := 'INTERMEDIATE';
2542: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(226) := 'INTERSECT';
2543: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(227) := 'INTO';

Line 2540: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(224) := 'INTERFACE';

2536: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(220) := 'INSTANCES';
2537: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(221) := 'INSTEAD';
2538: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(222) := 'INT';
2539: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(223) := 'INTEGER';
2540: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(224) := 'INTERFACE';
2541: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(225) := 'INTERMEDIATE';
2542: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(226) := 'INTERSECT';
2543: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(227) := 'INTO';
2544: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(228) := 'IS';

Line 2541: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(225) := 'INTERMEDIATE';

2537: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(221) := 'INSTEAD';
2538: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(222) := 'INT';
2539: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(223) := 'INTEGER';
2540: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(224) := 'INTERFACE';
2541: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(225) := 'INTERMEDIATE';
2542: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(226) := 'INTERSECT';
2543: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(227) := 'INTO';
2544: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(228) := 'IS';
2545: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(229) := 'ISOLATION';

Line 2542: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(226) := 'INTERSECT';

2538: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(222) := 'INT';
2539: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(223) := 'INTEGER';
2540: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(224) := 'INTERFACE';
2541: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(225) := 'INTERMEDIATE';
2542: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(226) := 'INTERSECT';
2543: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(227) := 'INTO';
2544: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(228) := 'IS';
2545: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(229) := 'ISOLATION';
2546: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(230) := 'ISOLATION_LEVEL';

Line 2543: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(227) := 'INTO';

2539: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(223) := 'INTEGER';
2540: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(224) := 'INTERFACE';
2541: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(225) := 'INTERMEDIATE';
2542: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(226) := 'INTERSECT';
2543: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(227) := 'INTO';
2544: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(228) := 'IS';
2545: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(229) := 'ISOLATION';
2546: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(230) := 'ISOLATION_LEVEL';
2547: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(231) := 'KEEP';

Line 2544: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(228) := 'IS';

2540: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(224) := 'INTERFACE';
2541: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(225) := 'INTERMEDIATE';
2542: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(226) := 'INTERSECT';
2543: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(227) := 'INTO';
2544: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(228) := 'IS';
2545: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(229) := 'ISOLATION';
2546: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(230) := 'ISOLATION_LEVEL';
2547: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(231) := 'KEEP';
2548: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(232) := 'KEY';

Line 2545: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(229) := 'ISOLATION';

2541: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(225) := 'INTERMEDIATE';
2542: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(226) := 'INTERSECT';
2543: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(227) := 'INTO';
2544: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(228) := 'IS';
2545: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(229) := 'ISOLATION';
2546: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(230) := 'ISOLATION_LEVEL';
2547: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(231) := 'KEEP';
2548: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(232) := 'KEY';
2549: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(233) := 'KILL';

Line 2546: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(230) := 'ISOLATION_LEVEL';

2542: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(226) := 'INTERSECT';
2543: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(227) := 'INTO';
2544: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(228) := 'IS';
2545: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(229) := 'ISOLATION';
2546: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(230) := 'ISOLATION_LEVEL';
2547: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(231) := 'KEEP';
2548: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(232) := 'KEY';
2549: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(233) := 'KILL';
2550: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(234) := 'LAYER';

Line 2547: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(231) := 'KEEP';

2543: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(227) := 'INTO';
2544: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(228) := 'IS';
2545: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(229) := 'ISOLATION';
2546: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(230) := 'ISOLATION_LEVEL';
2547: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(231) := 'KEEP';
2548: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(232) := 'KEY';
2549: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(233) := 'KILL';
2550: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(234) := 'LAYER';
2551: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(235) := 'LESS';

Line 2548: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(232) := 'KEY';

2544: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(228) := 'IS';
2545: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(229) := 'ISOLATION';
2546: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(230) := 'ISOLATION_LEVEL';
2547: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(231) := 'KEEP';
2548: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(232) := 'KEY';
2549: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(233) := 'KILL';
2550: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(234) := 'LAYER';
2551: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(235) := 'LESS';
2552: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(236) := 'LEVEL';

Line 2549: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(233) := 'KILL';

2545: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(229) := 'ISOLATION';
2546: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(230) := 'ISOLATION_LEVEL';
2547: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(231) := 'KEEP';
2548: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(232) := 'KEY';
2549: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(233) := 'KILL';
2550: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(234) := 'LAYER';
2551: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(235) := 'LESS';
2552: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(236) := 'LEVEL';
2553: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(237) := 'LEVELLIKE';

Line 2550: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(234) := 'LAYER';

2546: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(230) := 'ISOLATION_LEVEL';
2547: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(231) := 'KEEP';
2548: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(232) := 'KEY';
2549: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(233) := 'KILL';
2550: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(234) := 'LAYER';
2551: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(235) := 'LESS';
2552: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(236) := 'LEVEL';
2553: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(237) := 'LEVELLIKE';
2554: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(238) := 'LIBRARY';

Line 2551: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(235) := 'LESS';

2547: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(231) := 'KEEP';
2548: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(232) := 'KEY';
2549: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(233) := 'KILL';
2550: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(234) := 'LAYER';
2551: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(235) := 'LESS';
2552: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(236) := 'LEVEL';
2553: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(237) := 'LEVELLIKE';
2554: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(238) := 'LIBRARY';
2555: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(239) := 'LIKE';

Line 2552: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(236) := 'LEVEL';

2548: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(232) := 'KEY';
2549: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(233) := 'KILL';
2550: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(234) := 'LAYER';
2551: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(235) := 'LESS';
2552: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(236) := 'LEVEL';
2553: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(237) := 'LEVELLIKE';
2554: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(238) := 'LIBRARY';
2555: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(239) := 'LIKE';
2556: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(240) := 'LIMIT';

Line 2553: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(237) := 'LEVELLIKE';

2549: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(233) := 'KILL';
2550: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(234) := 'LAYER';
2551: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(235) := 'LESS';
2552: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(236) := 'LEVEL';
2553: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(237) := 'LEVELLIKE';
2554: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(238) := 'LIBRARY';
2555: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(239) := 'LIKE';
2556: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(240) := 'LIMIT';
2557: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(241) := 'LIMITED';

Line 2554: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(238) := 'LIBRARY';

2550: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(234) := 'LAYER';
2551: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(235) := 'LESS';
2552: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(236) := 'LEVEL';
2553: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(237) := 'LEVELLIKE';
2554: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(238) := 'LIBRARY';
2555: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(239) := 'LIKE';
2556: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(240) := 'LIMIT';
2557: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(241) := 'LIMITED';
2558: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(242) := 'LINK';

Line 2555: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(239) := 'LIKE';

2551: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(235) := 'LESS';
2552: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(236) := 'LEVEL';
2553: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(237) := 'LEVELLIKE';
2554: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(238) := 'LIBRARY';
2555: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(239) := 'LIKE';
2556: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(240) := 'LIMIT';
2557: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(241) := 'LIMITED';
2558: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(242) := 'LINK';
2559: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(243) := 'LIST';

Line 2556: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(240) := 'LIMIT';

2552: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(236) := 'LEVEL';
2553: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(237) := 'LEVELLIKE';
2554: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(238) := 'LIBRARY';
2555: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(239) := 'LIKE';
2556: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(240) := 'LIMIT';
2557: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(241) := 'LIMITED';
2558: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(242) := 'LINK';
2559: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(243) := 'LIST';
2560: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(244) := 'LOB';

Line 2557: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(241) := 'LIMITED';

2553: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(237) := 'LEVELLIKE';
2554: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(238) := 'LIBRARY';
2555: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(239) := 'LIKE';
2556: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(240) := 'LIMIT';
2557: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(241) := 'LIMITED';
2558: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(242) := 'LINK';
2559: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(243) := 'LIST';
2560: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(244) := 'LOB';
2561: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(245) := 'LOCAL';

Line 2558: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(242) := 'LINK';

2554: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(238) := 'LIBRARY';
2555: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(239) := 'LIKE';
2556: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(240) := 'LIMIT';
2557: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(241) := 'LIMITED';
2558: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(242) := 'LINK';
2559: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(243) := 'LIST';
2560: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(244) := 'LOB';
2561: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(245) := 'LOCAL';
2562: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(246) := 'LOCK';

Line 2559: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(243) := 'LIST';

2555: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(239) := 'LIKE';
2556: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(240) := 'LIMIT';
2557: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(241) := 'LIMITED';
2558: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(242) := 'LINK';
2559: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(243) := 'LIST';
2560: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(244) := 'LOB';
2561: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(245) := 'LOCAL';
2562: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(246) := 'LOCK';
2563: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(247) := 'LOG';

Line 2560: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(244) := 'LOB';

2556: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(240) := 'LIMIT';
2557: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(241) := 'LIMITED';
2558: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(242) := 'LINK';
2559: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(243) := 'LIST';
2560: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(244) := 'LOB';
2561: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(245) := 'LOCAL';
2562: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(246) := 'LOCK';
2563: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(247) := 'LOG';
2564: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(248) := 'LOGFILE';

Line 2561: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(245) := 'LOCAL';

2557: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(241) := 'LIMITED';
2558: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(242) := 'LINK';
2559: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(243) := 'LIST';
2560: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(244) := 'LOB';
2561: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(245) := 'LOCAL';
2562: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(246) := 'LOCK';
2563: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(247) := 'LOG';
2564: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(248) := 'LOGFILE';
2565: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(249) := 'LOGGING';

Line 2562: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(246) := 'LOCK';

2558: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(242) := 'LINK';
2559: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(243) := 'LIST';
2560: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(244) := 'LOB';
2561: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(245) := 'LOCAL';
2562: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(246) := 'LOCK';
2563: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(247) := 'LOG';
2564: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(248) := 'LOGFILE';
2565: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(249) := 'LOGGING';
2566: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(250) := 'LOGICAL_READS_PER_';

Line 2563: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(247) := 'LOG';

2559: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(243) := 'LIST';
2560: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(244) := 'LOB';
2561: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(245) := 'LOCAL';
2562: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(246) := 'LOCK';
2563: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(247) := 'LOG';
2564: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(248) := 'LOGFILE';
2565: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(249) := 'LOGGING';
2566: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(250) := 'LOGICAL_READS_PER_';
2567: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(251) := 'LOGICAL_READS_PER_CALL';

Line 2564: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(248) := 'LOGFILE';

2560: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(244) := 'LOB';
2561: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(245) := 'LOCAL';
2562: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(246) := 'LOCK';
2563: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(247) := 'LOG';
2564: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(248) := 'LOGFILE';
2565: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(249) := 'LOGGING';
2566: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(250) := 'LOGICAL_READS_PER_';
2567: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(251) := 'LOGICAL_READS_PER_CALL';
2568: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(252) := 'LONG';

Line 2565: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(249) := 'LOGGING';

2561: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(245) := 'LOCAL';
2562: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(246) := 'LOCK';
2563: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(247) := 'LOG';
2564: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(248) := 'LOGFILE';
2565: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(249) := 'LOGGING';
2566: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(250) := 'LOGICAL_READS_PER_';
2567: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(251) := 'LOGICAL_READS_PER_CALL';
2568: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(252) := 'LONG';
2569: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(253) := 'LOOP';

Line 2566: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(250) := 'LOGICAL_READS_PER_';

2562: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(246) := 'LOCK';
2563: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(247) := 'LOG';
2564: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(248) := 'LOGFILE';
2565: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(249) := 'LOGGING';
2566: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(250) := 'LOGICAL_READS_PER_';
2567: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(251) := 'LOGICAL_READS_PER_CALL';
2568: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(252) := 'LONG';
2569: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(253) := 'LOOP';
2570: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(254) := 'MANAGE';

Line 2567: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(251) := 'LOGICAL_READS_PER_CALL';

2563: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(247) := 'LOG';
2564: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(248) := 'LOGFILE';
2565: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(249) := 'LOGGING';
2566: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(250) := 'LOGICAL_READS_PER_';
2567: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(251) := 'LOGICAL_READS_PER_CALL';
2568: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(252) := 'LONG';
2569: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(253) := 'LOOP';
2570: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(254) := 'MANAGE';
2571: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(255) := 'MASTER';

Line 2568: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(252) := 'LONG';

2564: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(248) := 'LOGFILE';
2565: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(249) := 'LOGGING';
2566: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(250) := 'LOGICAL_READS_PER_';
2567: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(251) := 'LOGICAL_READS_PER_CALL';
2568: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(252) := 'LONG';
2569: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(253) := 'LOOP';
2570: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(254) := 'MANAGE';
2571: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(255) := 'MASTER';
2572: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(256) := 'MAX';

Line 2569: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(253) := 'LOOP';

2565: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(249) := 'LOGGING';
2566: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(250) := 'LOGICAL_READS_PER_';
2567: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(251) := 'LOGICAL_READS_PER_CALL';
2568: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(252) := 'LONG';
2569: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(253) := 'LOOP';
2570: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(254) := 'MANAGE';
2571: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(255) := 'MASTER';
2572: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(256) := 'MAX';
2573: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(257) := 'MAXARCHLOGS';

Line 2570: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(254) := 'MANAGE';

2566: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(250) := 'LOGICAL_READS_PER_';
2567: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(251) := 'LOGICAL_READS_PER_CALL';
2568: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(252) := 'LONG';
2569: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(253) := 'LOOP';
2570: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(254) := 'MANAGE';
2571: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(255) := 'MASTER';
2572: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(256) := 'MAX';
2573: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(257) := 'MAXARCHLOGS';
2574: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(258) := 'MAXDATAFILES';

Line 2571: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(255) := 'MASTER';

2567: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(251) := 'LOGICAL_READS_PER_CALL';
2568: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(252) := 'LONG';
2569: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(253) := 'LOOP';
2570: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(254) := 'MANAGE';
2571: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(255) := 'MASTER';
2572: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(256) := 'MAX';
2573: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(257) := 'MAXARCHLOGS';
2574: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(258) := 'MAXDATAFILES';
2575: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(259) := 'MAXEXTENTS';

Line 2572: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(256) := 'MAX';

2568: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(252) := 'LONG';
2569: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(253) := 'LOOP';
2570: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(254) := 'MANAGE';
2571: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(255) := 'MASTER';
2572: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(256) := 'MAX';
2573: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(257) := 'MAXARCHLOGS';
2574: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(258) := 'MAXDATAFILES';
2575: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(259) := 'MAXEXTENTS';
2576: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(260) := 'MAXINSTANCES';

Line 2573: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(257) := 'MAXARCHLOGS';

2569: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(253) := 'LOOP';
2570: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(254) := 'MANAGE';
2571: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(255) := 'MASTER';
2572: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(256) := 'MAX';
2573: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(257) := 'MAXARCHLOGS';
2574: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(258) := 'MAXDATAFILES';
2575: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(259) := 'MAXEXTENTS';
2576: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(260) := 'MAXINSTANCES';
2577: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(261) := 'MAXLOGFILES';

Line 2574: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(258) := 'MAXDATAFILES';

2570: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(254) := 'MANAGE';
2571: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(255) := 'MASTER';
2572: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(256) := 'MAX';
2573: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(257) := 'MAXARCHLOGS';
2574: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(258) := 'MAXDATAFILES';
2575: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(259) := 'MAXEXTENTS';
2576: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(260) := 'MAXINSTANCES';
2577: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(261) := 'MAXLOGFILES';
2578: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(262) := 'MAXLOGHISTORY';

Line 2575: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(259) := 'MAXEXTENTS';

2571: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(255) := 'MASTER';
2572: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(256) := 'MAX';
2573: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(257) := 'MAXARCHLOGS';
2574: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(258) := 'MAXDATAFILES';
2575: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(259) := 'MAXEXTENTS';
2576: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(260) := 'MAXINSTANCES';
2577: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(261) := 'MAXLOGFILES';
2578: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(262) := 'MAXLOGHISTORY';
2579: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(263) := 'MAXLOGMEMBERS';

Line 2576: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(260) := 'MAXINSTANCES';

2572: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(256) := 'MAX';
2573: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(257) := 'MAXARCHLOGS';
2574: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(258) := 'MAXDATAFILES';
2575: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(259) := 'MAXEXTENTS';
2576: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(260) := 'MAXINSTANCES';
2577: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(261) := 'MAXLOGFILES';
2578: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(262) := 'MAXLOGHISTORY';
2579: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(263) := 'MAXLOGMEMBERS';
2580: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(264) := 'MAXSIZE';

Line 2577: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(261) := 'MAXLOGFILES';

2573: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(257) := 'MAXARCHLOGS';
2574: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(258) := 'MAXDATAFILES';
2575: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(259) := 'MAXEXTENTS';
2576: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(260) := 'MAXINSTANCES';
2577: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(261) := 'MAXLOGFILES';
2578: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(262) := 'MAXLOGHISTORY';
2579: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(263) := 'MAXLOGMEMBERS';
2580: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(264) := 'MAXSIZE';
2581: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(265) := 'MAXTRANS';

Line 2578: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(262) := 'MAXLOGHISTORY';

2574: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(258) := 'MAXDATAFILES';
2575: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(259) := 'MAXEXTENTS';
2576: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(260) := 'MAXINSTANCES';
2577: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(261) := 'MAXLOGFILES';
2578: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(262) := 'MAXLOGHISTORY';
2579: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(263) := 'MAXLOGMEMBERS';
2580: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(264) := 'MAXSIZE';
2581: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(265) := 'MAXTRANS';
2582: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(266) := 'MAXVALUE';

Line 2579: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(263) := 'MAXLOGMEMBERS';

2575: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(259) := 'MAXEXTENTS';
2576: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(260) := 'MAXINSTANCES';
2577: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(261) := 'MAXLOGFILES';
2578: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(262) := 'MAXLOGHISTORY';
2579: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(263) := 'MAXLOGMEMBERS';
2580: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(264) := 'MAXSIZE';
2581: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(265) := 'MAXTRANS';
2582: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(266) := 'MAXVALUE';
2583: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(267) := 'MEMBER';

Line 2580: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(264) := 'MAXSIZE';

2576: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(260) := 'MAXINSTANCES';
2577: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(261) := 'MAXLOGFILES';
2578: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(262) := 'MAXLOGHISTORY';
2579: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(263) := 'MAXLOGMEMBERS';
2580: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(264) := 'MAXSIZE';
2581: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(265) := 'MAXTRANS';
2582: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(266) := 'MAXVALUE';
2583: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(267) := 'MEMBER';
2584: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(268) := 'MIN';

Line 2581: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(265) := 'MAXTRANS';

2577: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(261) := 'MAXLOGFILES';
2578: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(262) := 'MAXLOGHISTORY';
2579: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(263) := 'MAXLOGMEMBERS';
2580: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(264) := 'MAXSIZE';
2581: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(265) := 'MAXTRANS';
2582: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(266) := 'MAXVALUE';
2583: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(267) := 'MEMBER';
2584: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(268) := 'MIN';
2585: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(269) := 'MINEXTENTS';

Line 2582: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(266) := 'MAXVALUE';

2578: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(262) := 'MAXLOGHISTORY';
2579: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(263) := 'MAXLOGMEMBERS';
2580: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(264) := 'MAXSIZE';
2581: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(265) := 'MAXTRANS';
2582: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(266) := 'MAXVALUE';
2583: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(267) := 'MEMBER';
2584: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(268) := 'MIN';
2585: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(269) := 'MINEXTENTS';
2586: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(270) := 'MINIMUM';

Line 2583: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(267) := 'MEMBER';

2579: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(263) := 'MAXLOGMEMBERS';
2580: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(264) := 'MAXSIZE';
2581: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(265) := 'MAXTRANS';
2582: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(266) := 'MAXVALUE';
2583: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(267) := 'MEMBER';
2584: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(268) := 'MIN';
2585: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(269) := 'MINEXTENTS';
2586: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(270) := 'MINIMUM';
2587: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(271) := 'MINUS';

Line 2584: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(268) := 'MIN';

2580: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(264) := 'MAXSIZE';
2581: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(265) := 'MAXTRANS';
2582: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(266) := 'MAXVALUE';
2583: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(267) := 'MEMBER';
2584: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(268) := 'MIN';
2585: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(269) := 'MINEXTENTS';
2586: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(270) := 'MINIMUM';
2587: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(271) := 'MINUS';
2588: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(272) := 'MINVALUE';

Line 2585: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(269) := 'MINEXTENTS';

2581: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(265) := 'MAXTRANS';
2582: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(266) := 'MAXVALUE';
2583: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(267) := 'MEMBER';
2584: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(268) := 'MIN';
2585: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(269) := 'MINEXTENTS';
2586: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(270) := 'MINIMUM';
2587: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(271) := 'MINUS';
2588: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(272) := 'MINVALUE';
2589: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(273) := 'MLSLABEL';

Line 2586: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(270) := 'MINIMUM';

2582: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(266) := 'MAXVALUE';
2583: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(267) := 'MEMBER';
2584: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(268) := 'MIN';
2585: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(269) := 'MINEXTENTS';
2586: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(270) := 'MINIMUM';
2587: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(271) := 'MINUS';
2588: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(272) := 'MINVALUE';
2589: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(273) := 'MLSLABEL';
2590: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(274) := 'MOD';

Line 2587: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(271) := 'MINUS';

2583: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(267) := 'MEMBER';
2584: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(268) := 'MIN';
2585: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(269) := 'MINEXTENTS';
2586: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(270) := 'MINIMUM';
2587: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(271) := 'MINUS';
2588: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(272) := 'MINVALUE';
2589: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(273) := 'MLSLABEL';
2590: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(274) := 'MOD';
2591: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(275) := 'MODE';

Line 2588: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(272) := 'MINVALUE';

2584: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(268) := 'MIN';
2585: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(269) := 'MINEXTENTS';
2586: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(270) := 'MINIMUM';
2587: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(271) := 'MINUS';
2588: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(272) := 'MINVALUE';
2589: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(273) := 'MLSLABEL';
2590: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(274) := 'MOD';
2591: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(275) := 'MODE';
2592: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(276) := 'MODIFY';

Line 2589: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(273) := 'MLSLABEL';

2585: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(269) := 'MINEXTENTS';
2586: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(270) := 'MINIMUM';
2587: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(271) := 'MINUS';
2588: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(272) := 'MINVALUE';
2589: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(273) := 'MLSLABEL';
2590: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(274) := 'MOD';
2591: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(275) := 'MODE';
2592: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(276) := 'MODIFY';
2593: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(277) := 'MOUNT';

Line 2590: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(274) := 'MOD';

2586: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(270) := 'MINIMUM';
2587: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(271) := 'MINUS';
2588: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(272) := 'MINVALUE';
2589: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(273) := 'MLSLABEL';
2590: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(274) := 'MOD';
2591: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(275) := 'MODE';
2592: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(276) := 'MODIFY';
2593: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(277) := 'MOUNT';
2594: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(278) := 'MOVE';

Line 2591: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(275) := 'MODE';

2587: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(271) := 'MINUS';
2588: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(272) := 'MINVALUE';
2589: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(273) := 'MLSLABEL';
2590: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(274) := 'MOD';
2591: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(275) := 'MODE';
2592: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(276) := 'MODIFY';
2593: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(277) := 'MOUNT';
2594: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(278) := 'MOVE';
2595: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(279) := 'MTS_DISPATCHERS';

Line 2592: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(276) := 'MODIFY';

2588: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(272) := 'MINVALUE';
2589: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(273) := 'MLSLABEL';
2590: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(274) := 'MOD';
2591: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(275) := 'MODE';
2592: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(276) := 'MODIFY';
2593: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(277) := 'MOUNT';
2594: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(278) := 'MOVE';
2595: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(279) := 'MTS_DISPATCHERS';
2596: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(280) := 'MULTISET';

Line 2593: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(277) := 'MOUNT';

2589: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(273) := 'MLSLABEL';
2590: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(274) := 'MOD';
2591: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(275) := 'MODE';
2592: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(276) := 'MODIFY';
2593: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(277) := 'MOUNT';
2594: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(278) := 'MOVE';
2595: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(279) := 'MTS_DISPATCHERS';
2596: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(280) := 'MULTISET';
2597: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(281) := 'NATIONAL';

Line 2594: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(278) := 'MOVE';

2590: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(274) := 'MOD';
2591: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(275) := 'MODE';
2592: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(276) := 'MODIFY';
2593: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(277) := 'MOUNT';
2594: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(278) := 'MOVE';
2595: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(279) := 'MTS_DISPATCHERS';
2596: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(280) := 'MULTISET';
2597: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(281) := 'NATIONAL';
2598: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(282) := 'NATURAL';

Line 2595: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(279) := 'MTS_DISPATCHERS';

2591: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(275) := 'MODE';
2592: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(276) := 'MODIFY';
2593: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(277) := 'MOUNT';
2594: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(278) := 'MOVE';
2595: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(279) := 'MTS_DISPATCHERS';
2596: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(280) := 'MULTISET';
2597: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(281) := 'NATIONAL';
2598: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(282) := 'NATURAL';
2599: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(283) := 'NATURALN';

Line 2596: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(280) := 'MULTISET';

2592: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(276) := 'MODIFY';
2593: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(277) := 'MOUNT';
2594: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(278) := 'MOVE';
2595: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(279) := 'MTS_DISPATCHERS';
2596: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(280) := 'MULTISET';
2597: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(281) := 'NATIONAL';
2598: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(282) := 'NATURAL';
2599: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(283) := 'NATURALN';
2600: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(284) := 'NCHAR';

Line 2597: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(281) := 'NATIONAL';

2593: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(277) := 'MOUNT';
2594: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(278) := 'MOVE';
2595: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(279) := 'MTS_DISPATCHERS';
2596: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(280) := 'MULTISET';
2597: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(281) := 'NATIONAL';
2598: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(282) := 'NATURAL';
2599: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(283) := 'NATURALN';
2600: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(284) := 'NCHAR';
2601: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(285) := 'NCHAR_CS';

Line 2598: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(282) := 'NATURAL';

2594: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(278) := 'MOVE';
2595: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(279) := 'MTS_DISPATCHERS';
2596: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(280) := 'MULTISET';
2597: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(281) := 'NATIONAL';
2598: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(282) := 'NATURAL';
2599: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(283) := 'NATURALN';
2600: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(284) := 'NCHAR';
2601: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(285) := 'NCHAR_CS';
2602: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(286) := 'NCLOB';

Line 2599: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(283) := 'NATURALN';

2595: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(279) := 'MTS_DISPATCHERS';
2596: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(280) := 'MULTISET';
2597: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(281) := 'NATIONAL';
2598: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(282) := 'NATURAL';
2599: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(283) := 'NATURALN';
2600: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(284) := 'NCHAR';
2601: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(285) := 'NCHAR_CS';
2602: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(286) := 'NCLOB';
2603: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(287) := 'NEEDED';

Line 2600: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(284) := 'NCHAR';

2596: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(280) := 'MULTISET';
2597: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(281) := 'NATIONAL';
2598: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(282) := 'NATURAL';
2599: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(283) := 'NATURALN';
2600: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(284) := 'NCHAR';
2601: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(285) := 'NCHAR_CS';
2602: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(286) := 'NCLOB';
2603: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(287) := 'NEEDED';
2604: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(288) := 'NESTED';

Line 2601: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(285) := 'NCHAR_CS';

2597: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(281) := 'NATIONAL';
2598: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(282) := 'NATURAL';
2599: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(283) := 'NATURALN';
2600: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(284) := 'NCHAR';
2601: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(285) := 'NCHAR_CS';
2602: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(286) := 'NCLOB';
2603: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(287) := 'NEEDED';
2604: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(288) := 'NESTED';
2605: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(289) := 'NETWORK';

Line 2602: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(286) := 'NCLOB';

2598: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(282) := 'NATURAL';
2599: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(283) := 'NATURALN';
2600: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(284) := 'NCHAR';
2601: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(285) := 'NCHAR_CS';
2602: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(286) := 'NCLOB';
2603: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(287) := 'NEEDED';
2604: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(288) := 'NESTED';
2605: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(289) := 'NETWORK';
2606: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(290) := 'NEW';

Line 2603: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(287) := 'NEEDED';

2599: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(283) := 'NATURALN';
2600: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(284) := 'NCHAR';
2601: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(285) := 'NCHAR_CS';
2602: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(286) := 'NCLOB';
2603: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(287) := 'NEEDED';
2604: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(288) := 'NESTED';
2605: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(289) := 'NETWORK';
2606: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(290) := 'NEW';
2607: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(291) := 'NEXT';

Line 2604: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(288) := 'NESTED';

2600: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(284) := 'NCHAR';
2601: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(285) := 'NCHAR_CS';
2602: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(286) := 'NCLOB';
2603: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(287) := 'NEEDED';
2604: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(288) := 'NESTED';
2605: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(289) := 'NETWORK';
2606: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(290) := 'NEW';
2607: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(291) := 'NEXT';
2608: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(292) := 'NEXTVAL';

Line 2605: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(289) := 'NETWORK';

2601: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(285) := 'NCHAR_CS';
2602: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(286) := 'NCLOB';
2603: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(287) := 'NEEDED';
2604: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(288) := 'NESTED';
2605: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(289) := 'NETWORK';
2606: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(290) := 'NEW';
2607: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(291) := 'NEXT';
2608: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(292) := 'NEXTVAL';
2609: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(293) := 'NLS_CALENDAR';

Line 2606: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(290) := 'NEW';

2602: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(286) := 'NCLOB';
2603: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(287) := 'NEEDED';
2604: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(288) := 'NESTED';
2605: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(289) := 'NETWORK';
2606: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(290) := 'NEW';
2607: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(291) := 'NEXT';
2608: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(292) := 'NEXTVAL';
2609: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(293) := 'NLS_CALENDAR';
2610: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(294) := 'NLS_CHARACTERSET';

Line 2607: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(291) := 'NEXT';

2603: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(287) := 'NEEDED';
2604: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(288) := 'NESTED';
2605: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(289) := 'NETWORK';
2606: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(290) := 'NEW';
2607: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(291) := 'NEXT';
2608: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(292) := 'NEXTVAL';
2609: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(293) := 'NLS_CALENDAR';
2610: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(294) := 'NLS_CHARACTERSET';
2611: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(295) := 'NLS_ISO_CURRENCY';

Line 2608: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(292) := 'NEXTVAL';

2604: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(288) := 'NESTED';
2605: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(289) := 'NETWORK';
2606: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(290) := 'NEW';
2607: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(291) := 'NEXT';
2608: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(292) := 'NEXTVAL';
2609: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(293) := 'NLS_CALENDAR';
2610: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(294) := 'NLS_CHARACTERSET';
2611: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(295) := 'NLS_ISO_CURRENCY';
2612: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(296) := 'NLS_LANGUAGE';

Line 2609: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(293) := 'NLS_CALENDAR';

2605: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(289) := 'NETWORK';
2606: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(290) := 'NEW';
2607: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(291) := 'NEXT';
2608: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(292) := 'NEXTVAL';
2609: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(293) := 'NLS_CALENDAR';
2610: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(294) := 'NLS_CHARACTERSET';
2611: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(295) := 'NLS_ISO_CURRENCY';
2612: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(296) := 'NLS_LANGUAGE';
2613: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(297) := 'NLS_NUMERIC_';

Line 2610: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(294) := 'NLS_CHARACTERSET';

2606: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(290) := 'NEW';
2607: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(291) := 'NEXT';
2608: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(292) := 'NEXTVAL';
2609: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(293) := 'NLS_CALENDAR';
2610: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(294) := 'NLS_CHARACTERSET';
2611: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(295) := 'NLS_ISO_CURRENCY';
2612: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(296) := 'NLS_LANGUAGE';
2613: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(297) := 'NLS_NUMERIC_';
2614: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(298) := 'NLS_SORT';

Line 2611: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(295) := 'NLS_ISO_CURRENCY';

2607: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(291) := 'NEXT';
2608: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(292) := 'NEXTVAL';
2609: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(293) := 'NLS_CALENDAR';
2610: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(294) := 'NLS_CHARACTERSET';
2611: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(295) := 'NLS_ISO_CURRENCY';
2612: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(296) := 'NLS_LANGUAGE';
2613: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(297) := 'NLS_NUMERIC_';
2614: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(298) := 'NLS_SORT';
2615: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(299) := 'NLS_TERRITORY';

Line 2612: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(296) := 'NLS_LANGUAGE';

2608: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(292) := 'NEXTVAL';
2609: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(293) := 'NLS_CALENDAR';
2610: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(294) := 'NLS_CHARACTERSET';
2611: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(295) := 'NLS_ISO_CURRENCY';
2612: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(296) := 'NLS_LANGUAGE';
2613: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(297) := 'NLS_NUMERIC_';
2614: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(298) := 'NLS_SORT';
2615: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(299) := 'NLS_TERRITORY';
2616: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(300) := 'NOARCHIVELOG';

Line 2613: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(297) := 'NLS_NUMERIC_';

2609: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(293) := 'NLS_CALENDAR';
2610: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(294) := 'NLS_CHARACTERSET';
2611: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(295) := 'NLS_ISO_CURRENCY';
2612: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(296) := 'NLS_LANGUAGE';
2613: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(297) := 'NLS_NUMERIC_';
2614: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(298) := 'NLS_SORT';
2615: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(299) := 'NLS_TERRITORY';
2616: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(300) := 'NOARCHIVELOG';
2617: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(301) := 'NOAUDIT';

Line 2614: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(298) := 'NLS_SORT';

2610: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(294) := 'NLS_CHARACTERSET';
2611: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(295) := 'NLS_ISO_CURRENCY';
2612: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(296) := 'NLS_LANGUAGE';
2613: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(297) := 'NLS_NUMERIC_';
2614: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(298) := 'NLS_SORT';
2615: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(299) := 'NLS_TERRITORY';
2616: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(300) := 'NOARCHIVELOG';
2617: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(301) := 'NOAUDIT';
2618: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(302) := 'NOCACHE';

Line 2615: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(299) := 'NLS_TERRITORY';

2611: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(295) := 'NLS_ISO_CURRENCY';
2612: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(296) := 'NLS_LANGUAGE';
2613: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(297) := 'NLS_NUMERIC_';
2614: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(298) := 'NLS_SORT';
2615: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(299) := 'NLS_TERRITORY';
2616: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(300) := 'NOARCHIVELOG';
2617: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(301) := 'NOAUDIT';
2618: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(302) := 'NOCACHE';
2619: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(303) := 'NOCOMPRESS';

Line 2616: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(300) := 'NOARCHIVELOG';

2612: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(296) := 'NLS_LANGUAGE';
2613: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(297) := 'NLS_NUMERIC_';
2614: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(298) := 'NLS_SORT';
2615: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(299) := 'NLS_TERRITORY';
2616: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(300) := 'NOARCHIVELOG';
2617: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(301) := 'NOAUDIT';
2618: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(302) := 'NOCACHE';
2619: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(303) := 'NOCOMPRESS';
2620: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(304) := 'NOCYCLE';

Line 2617: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(301) := 'NOAUDIT';

2613: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(297) := 'NLS_NUMERIC_';
2614: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(298) := 'NLS_SORT';
2615: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(299) := 'NLS_TERRITORY';
2616: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(300) := 'NOARCHIVELOG';
2617: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(301) := 'NOAUDIT';
2618: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(302) := 'NOCACHE';
2619: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(303) := 'NOCOMPRESS';
2620: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(304) := 'NOCYCLE';
2621: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(305) := 'NOFORCE';

Line 2618: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(302) := 'NOCACHE';

2614: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(298) := 'NLS_SORT';
2615: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(299) := 'NLS_TERRITORY';
2616: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(300) := 'NOARCHIVELOG';
2617: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(301) := 'NOAUDIT';
2618: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(302) := 'NOCACHE';
2619: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(303) := 'NOCOMPRESS';
2620: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(304) := 'NOCYCLE';
2621: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(305) := 'NOFORCE';
2622: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(306) := 'NOLOGGING';

Line 2619: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(303) := 'NOCOMPRESS';

2615: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(299) := 'NLS_TERRITORY';
2616: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(300) := 'NOARCHIVELOG';
2617: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(301) := 'NOAUDIT';
2618: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(302) := 'NOCACHE';
2619: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(303) := 'NOCOMPRESS';
2620: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(304) := 'NOCYCLE';
2621: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(305) := 'NOFORCE';
2622: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(306) := 'NOLOGGING';
2623: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(307) := 'NOMAXVALUE';

Line 2620: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(304) := 'NOCYCLE';

2616: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(300) := 'NOARCHIVELOG';
2617: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(301) := 'NOAUDIT';
2618: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(302) := 'NOCACHE';
2619: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(303) := 'NOCOMPRESS';
2620: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(304) := 'NOCYCLE';
2621: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(305) := 'NOFORCE';
2622: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(306) := 'NOLOGGING';
2623: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(307) := 'NOMAXVALUE';
2624: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(308) := 'NOMINVALUE';

Line 2621: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(305) := 'NOFORCE';

2617: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(301) := 'NOAUDIT';
2618: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(302) := 'NOCACHE';
2619: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(303) := 'NOCOMPRESS';
2620: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(304) := 'NOCYCLE';
2621: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(305) := 'NOFORCE';
2622: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(306) := 'NOLOGGING';
2623: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(307) := 'NOMAXVALUE';
2624: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(308) := 'NOMINVALUE';
2625: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(309) := 'NONE';

Line 2622: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(306) := 'NOLOGGING';

2618: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(302) := 'NOCACHE';
2619: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(303) := 'NOCOMPRESS';
2620: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(304) := 'NOCYCLE';
2621: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(305) := 'NOFORCE';
2622: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(306) := 'NOLOGGING';
2623: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(307) := 'NOMAXVALUE';
2624: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(308) := 'NOMINVALUE';
2625: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(309) := 'NONE';
2626: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(310) := 'NOORDER';

Line 2623: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(307) := 'NOMAXVALUE';

2619: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(303) := 'NOCOMPRESS';
2620: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(304) := 'NOCYCLE';
2621: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(305) := 'NOFORCE';
2622: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(306) := 'NOLOGGING';
2623: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(307) := 'NOMAXVALUE';
2624: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(308) := 'NOMINVALUE';
2625: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(309) := 'NONE';
2626: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(310) := 'NOORDER';
2627: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(311) := 'NOOVERIDE';

Line 2624: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(308) := 'NOMINVALUE';

2620: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(304) := 'NOCYCLE';
2621: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(305) := 'NOFORCE';
2622: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(306) := 'NOLOGGING';
2623: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(307) := 'NOMAXVALUE';
2624: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(308) := 'NOMINVALUE';
2625: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(309) := 'NONE';
2626: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(310) := 'NOORDER';
2627: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(311) := 'NOOVERIDE';
2628: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(312) := 'NOPARALLEL';

Line 2625: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(309) := 'NONE';

2621: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(305) := 'NOFORCE';
2622: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(306) := 'NOLOGGING';
2623: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(307) := 'NOMAXVALUE';
2624: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(308) := 'NOMINVALUE';
2625: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(309) := 'NONE';
2626: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(310) := 'NOORDER';
2627: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(311) := 'NOOVERIDE';
2628: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(312) := 'NOPARALLEL';
2629: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(313) := 'NORESETLOGS';

Line 2626: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(310) := 'NOORDER';

2622: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(306) := 'NOLOGGING';
2623: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(307) := 'NOMAXVALUE';
2624: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(308) := 'NOMINVALUE';
2625: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(309) := 'NONE';
2626: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(310) := 'NOORDER';
2627: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(311) := 'NOOVERIDE';
2628: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(312) := 'NOPARALLEL';
2629: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(313) := 'NORESETLOGS';
2630: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(314) := 'NOREVERSE';

Line 2627: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(311) := 'NOOVERIDE';

2623: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(307) := 'NOMAXVALUE';
2624: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(308) := 'NOMINVALUE';
2625: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(309) := 'NONE';
2626: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(310) := 'NOORDER';
2627: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(311) := 'NOOVERIDE';
2628: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(312) := 'NOPARALLEL';
2629: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(313) := 'NORESETLOGS';
2630: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(314) := 'NOREVERSE';
2631: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(315) := 'NORMAL';

Line 2628: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(312) := 'NOPARALLEL';

2624: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(308) := 'NOMINVALUE';
2625: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(309) := 'NONE';
2626: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(310) := 'NOORDER';
2627: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(311) := 'NOOVERIDE';
2628: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(312) := 'NOPARALLEL';
2629: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(313) := 'NORESETLOGS';
2630: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(314) := 'NOREVERSE';
2631: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(315) := 'NORMAL';
2632: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(316) := 'NOS_SPECIAL_CHARS';

Line 2629: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(313) := 'NORESETLOGS';

2625: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(309) := 'NONE';
2626: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(310) := 'NOORDER';
2627: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(311) := 'NOOVERIDE';
2628: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(312) := 'NOPARALLEL';
2629: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(313) := 'NORESETLOGS';
2630: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(314) := 'NOREVERSE';
2631: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(315) := 'NORMAL';
2632: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(316) := 'NOS_SPECIAL_CHARS';
2633: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(317) := 'NOSORT';

Line 2630: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(314) := 'NOREVERSE';

2626: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(310) := 'NOORDER';
2627: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(311) := 'NOOVERIDE';
2628: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(312) := 'NOPARALLEL';
2629: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(313) := 'NORESETLOGS';
2630: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(314) := 'NOREVERSE';
2631: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(315) := 'NORMAL';
2632: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(316) := 'NOS_SPECIAL_CHARS';
2633: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(317) := 'NOSORT';
2634: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(318) := 'NOT';

Line 2631: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(315) := 'NORMAL';

2627: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(311) := 'NOOVERIDE';
2628: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(312) := 'NOPARALLEL';
2629: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(313) := 'NORESETLOGS';
2630: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(314) := 'NOREVERSE';
2631: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(315) := 'NORMAL';
2632: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(316) := 'NOS_SPECIAL_CHARS';
2633: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(317) := 'NOSORT';
2634: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(318) := 'NOT';
2635: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(319) := 'NOTHING';

Line 2632: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(316) := 'NOS_SPECIAL_CHARS';

2628: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(312) := 'NOPARALLEL';
2629: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(313) := 'NORESETLOGS';
2630: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(314) := 'NOREVERSE';
2631: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(315) := 'NORMAL';
2632: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(316) := 'NOS_SPECIAL_CHARS';
2633: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(317) := 'NOSORT';
2634: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(318) := 'NOT';
2635: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(319) := 'NOTHING';
2636: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(320) := 'NOWAIT';

Line 2633: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(317) := 'NOSORT';

2629: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(313) := 'NORESETLOGS';
2630: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(314) := 'NOREVERSE';
2631: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(315) := 'NORMAL';
2632: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(316) := 'NOS_SPECIAL_CHARS';
2633: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(317) := 'NOSORT';
2634: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(318) := 'NOT';
2635: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(319) := 'NOTHING';
2636: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(320) := 'NOWAIT';
2637: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(321) := 'NULL';

Line 2634: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(318) := 'NOT';

2630: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(314) := 'NOREVERSE';
2631: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(315) := 'NORMAL';
2632: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(316) := 'NOS_SPECIAL_CHARS';
2633: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(317) := 'NOSORT';
2634: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(318) := 'NOT';
2635: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(319) := 'NOTHING';
2636: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(320) := 'NOWAIT';
2637: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(321) := 'NULL';
2638: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(322) := 'NUMBER';

Line 2635: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(319) := 'NOTHING';

2631: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(315) := 'NORMAL';
2632: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(316) := 'NOS_SPECIAL_CHARS';
2633: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(317) := 'NOSORT';
2634: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(318) := 'NOT';
2635: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(319) := 'NOTHING';
2636: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(320) := 'NOWAIT';
2637: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(321) := 'NULL';
2638: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(322) := 'NUMBER';
2639: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(323) := 'NUMBER_BASE';

Line 2636: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(320) := 'NOWAIT';

2632: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(316) := 'NOS_SPECIAL_CHARS';
2633: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(317) := 'NOSORT';
2634: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(318) := 'NOT';
2635: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(319) := 'NOTHING';
2636: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(320) := 'NOWAIT';
2637: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(321) := 'NULL';
2638: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(322) := 'NUMBER';
2639: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(323) := 'NUMBER_BASE';
2640: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(324) := 'NUMERIC';

Line 2637: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(321) := 'NULL';

2633: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(317) := 'NOSORT';
2634: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(318) := 'NOT';
2635: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(319) := 'NOTHING';
2636: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(320) := 'NOWAIT';
2637: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(321) := 'NULL';
2638: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(322) := 'NUMBER';
2639: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(323) := 'NUMBER_BASE';
2640: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(324) := 'NUMERIC';
2641: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(325) := 'NVARCHAR2';

Line 2638: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(322) := 'NUMBER';

2634: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(318) := 'NOT';
2635: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(319) := 'NOTHING';
2636: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(320) := 'NOWAIT';
2637: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(321) := 'NULL';
2638: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(322) := 'NUMBER';
2639: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(323) := 'NUMBER_BASE';
2640: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(324) := 'NUMERIC';
2641: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(325) := 'NVARCHAR2';
2642: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(326) := 'OBJECT';

Line 2639: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(323) := 'NUMBER_BASE';

2635: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(319) := 'NOTHING';
2636: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(320) := 'NOWAIT';
2637: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(321) := 'NULL';
2638: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(322) := 'NUMBER';
2639: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(323) := 'NUMBER_BASE';
2640: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(324) := 'NUMERIC';
2641: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(325) := 'NVARCHAR2';
2642: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(326) := 'OBJECT';
2643: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(327) := 'OBJNO';

Line 2640: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(324) := 'NUMERIC';

2636: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(320) := 'NOWAIT';
2637: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(321) := 'NULL';
2638: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(322) := 'NUMBER';
2639: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(323) := 'NUMBER_BASE';
2640: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(324) := 'NUMERIC';
2641: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(325) := 'NVARCHAR2';
2642: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(326) := 'OBJECT';
2643: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(327) := 'OBJNO';
2644: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(328) := 'OBJNO_REUSE';

Line 2641: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(325) := 'NVARCHAR2';

2637: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(321) := 'NULL';
2638: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(322) := 'NUMBER';
2639: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(323) := 'NUMBER_BASE';
2640: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(324) := 'NUMERIC';
2641: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(325) := 'NVARCHAR2';
2642: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(326) := 'OBJECT';
2643: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(327) := 'OBJNO';
2644: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(328) := 'OBJNO_REUSE';
2645: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(329) := 'OF';

Line 2642: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(326) := 'OBJECT';

2638: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(322) := 'NUMBER';
2639: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(323) := 'NUMBER_BASE';
2640: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(324) := 'NUMERIC';
2641: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(325) := 'NVARCHAR2';
2642: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(326) := 'OBJECT';
2643: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(327) := 'OBJNO';
2644: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(328) := 'OBJNO_REUSE';
2645: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(329) := 'OF';
2646: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(330) := 'OFF';

Line 2643: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(327) := 'OBJNO';

2639: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(323) := 'NUMBER_BASE';
2640: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(324) := 'NUMERIC';
2641: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(325) := 'NVARCHAR2';
2642: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(326) := 'OBJECT';
2643: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(327) := 'OBJNO';
2644: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(328) := 'OBJNO_REUSE';
2645: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(329) := 'OF';
2646: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(330) := 'OFF';
2647: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(331) := 'OFFLINE';

Line 2644: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(328) := 'OBJNO_REUSE';

2640: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(324) := 'NUMERIC';
2641: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(325) := 'NVARCHAR2';
2642: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(326) := 'OBJECT';
2643: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(327) := 'OBJNO';
2644: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(328) := 'OBJNO_REUSE';
2645: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(329) := 'OF';
2646: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(330) := 'OFF';
2647: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(331) := 'OFFLINE';
2648: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(332) := 'OID';

Line 2645: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(329) := 'OF';

2641: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(325) := 'NVARCHAR2';
2642: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(326) := 'OBJECT';
2643: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(327) := 'OBJNO';
2644: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(328) := 'OBJNO_REUSE';
2645: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(329) := 'OF';
2646: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(330) := 'OFF';
2647: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(331) := 'OFFLINE';
2648: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(332) := 'OID';
2649: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(333) := 'OIDINDEX';

Line 2646: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(330) := 'OFF';

2642: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(326) := 'OBJECT';
2643: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(327) := 'OBJNO';
2644: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(328) := 'OBJNO_REUSE';
2645: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(329) := 'OF';
2646: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(330) := 'OFF';
2647: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(331) := 'OFFLINE';
2648: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(332) := 'OID';
2649: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(333) := 'OIDINDEX';
2650: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(334) := 'OLD';

Line 2647: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(331) := 'OFFLINE';

2643: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(327) := 'OBJNO';
2644: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(328) := 'OBJNO_REUSE';
2645: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(329) := 'OF';
2646: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(330) := 'OFF';
2647: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(331) := 'OFFLINE';
2648: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(332) := 'OID';
2649: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(333) := 'OIDINDEX';
2650: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(334) := 'OLD';
2651: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(335) := 'ON';

Line 2648: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(332) := 'OID';

2644: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(328) := 'OBJNO_REUSE';
2645: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(329) := 'OF';
2646: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(330) := 'OFF';
2647: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(331) := 'OFFLINE';
2648: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(332) := 'OID';
2649: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(333) := 'OIDINDEX';
2650: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(334) := 'OLD';
2651: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(335) := 'ON';
2652: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(336) := 'ONLINE';

Line 2649: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(333) := 'OIDINDEX';

2645: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(329) := 'OF';
2646: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(330) := 'OFF';
2647: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(331) := 'OFFLINE';
2648: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(332) := 'OID';
2649: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(333) := 'OIDINDEX';
2650: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(334) := 'OLD';
2651: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(335) := 'ON';
2652: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(336) := 'ONLINE';
2653: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(337) := 'ONLY';

Line 2650: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(334) := 'OLD';

2646: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(330) := 'OFF';
2647: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(331) := 'OFFLINE';
2648: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(332) := 'OID';
2649: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(333) := 'OIDINDEX';
2650: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(334) := 'OLD';
2651: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(335) := 'ON';
2652: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(336) := 'ONLINE';
2653: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(337) := 'ONLY';
2654: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(338) := 'OPCODE';

Line 2651: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(335) := 'ON';

2647: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(331) := 'OFFLINE';
2648: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(332) := 'OID';
2649: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(333) := 'OIDINDEX';
2650: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(334) := 'OLD';
2651: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(335) := 'ON';
2652: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(336) := 'ONLINE';
2653: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(337) := 'ONLY';
2654: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(338) := 'OPCODE';
2655: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(339) := 'OPEN';

Line 2652: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(336) := 'ONLINE';

2648: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(332) := 'OID';
2649: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(333) := 'OIDINDEX';
2650: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(334) := 'OLD';
2651: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(335) := 'ON';
2652: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(336) := 'ONLINE';
2653: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(337) := 'ONLY';
2654: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(338) := 'OPCODE';
2655: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(339) := 'OPEN';
2656: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(340) := 'OPTIMAL';

Line 2653: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(337) := 'ONLY';

2649: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(333) := 'OIDINDEX';
2650: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(334) := 'OLD';
2651: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(335) := 'ON';
2652: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(336) := 'ONLINE';
2653: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(337) := 'ONLY';
2654: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(338) := 'OPCODE';
2655: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(339) := 'OPEN';
2656: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(340) := 'OPTIMAL';
2657: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(341) := 'OPTIMIZER_GOAL';

Line 2654: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(338) := 'OPCODE';

2650: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(334) := 'OLD';
2651: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(335) := 'ON';
2652: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(336) := 'ONLINE';
2653: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(337) := 'ONLY';
2654: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(338) := 'OPCODE';
2655: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(339) := 'OPEN';
2656: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(340) := 'OPTIMAL';
2657: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(341) := 'OPTIMIZER_GOAL';
2658: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(342) := 'OPTION';

Line 2655: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(339) := 'OPEN';

2651: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(335) := 'ON';
2652: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(336) := 'ONLINE';
2653: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(337) := 'ONLY';
2654: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(338) := 'OPCODE';
2655: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(339) := 'OPEN';
2656: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(340) := 'OPTIMAL';
2657: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(341) := 'OPTIMIZER_GOAL';
2658: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(342) := 'OPTION';
2659: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(343) := 'OR';

Line 2656: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(340) := 'OPTIMAL';

2652: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(336) := 'ONLINE';
2653: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(337) := 'ONLY';
2654: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(338) := 'OPCODE';
2655: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(339) := 'OPEN';
2656: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(340) := 'OPTIMAL';
2657: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(341) := 'OPTIMIZER_GOAL';
2658: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(342) := 'OPTION';
2659: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(343) := 'OR';
2660: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(344) := 'ORDER';

Line 2657: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(341) := 'OPTIMIZER_GOAL';

2653: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(337) := 'ONLY';
2654: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(338) := 'OPCODE';
2655: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(339) := 'OPEN';
2656: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(340) := 'OPTIMAL';
2657: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(341) := 'OPTIMIZER_GOAL';
2658: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(342) := 'OPTION';
2659: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(343) := 'OR';
2660: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(344) := 'ORDER';
2661: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(345) := 'ORGANIZATION';

Line 2658: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(342) := 'OPTION';

2654: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(338) := 'OPCODE';
2655: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(339) := 'OPEN';
2656: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(340) := 'OPTIMAL';
2657: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(341) := 'OPTIMIZER_GOAL';
2658: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(342) := 'OPTION';
2659: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(343) := 'OR';
2660: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(344) := 'ORDER';
2661: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(345) := 'ORGANIZATION';
2662: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(346) := 'OTHERS';

Line 2659: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(343) := 'OR';

2655: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(339) := 'OPEN';
2656: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(340) := 'OPTIMAL';
2657: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(341) := 'OPTIMIZER_GOAL';
2658: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(342) := 'OPTION';
2659: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(343) := 'OR';
2660: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(344) := 'ORDER';
2661: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(345) := 'ORGANIZATION';
2662: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(346) := 'OTHERS';
2663: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(347) := 'OUT';

Line 2660: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(344) := 'ORDER';

2656: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(340) := 'OPTIMAL';
2657: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(341) := 'OPTIMIZER_GOAL';
2658: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(342) := 'OPTION';
2659: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(343) := 'OR';
2660: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(344) := 'ORDER';
2661: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(345) := 'ORGANIZATION';
2662: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(346) := 'OTHERS';
2663: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(347) := 'OUT';
2664: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(348) := 'OVERFLOW';

Line 2661: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(345) := 'ORGANIZATION';

2657: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(341) := 'OPTIMIZER_GOAL';
2658: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(342) := 'OPTION';
2659: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(343) := 'OR';
2660: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(344) := 'ORDER';
2661: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(345) := 'ORGANIZATION';
2662: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(346) := 'OTHERS';
2663: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(347) := 'OUT';
2664: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(348) := 'OVERFLOW';
2665: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(349) := 'OWN';

Line 2662: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(346) := 'OTHERS';

2658: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(342) := 'OPTION';
2659: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(343) := 'OR';
2660: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(344) := 'ORDER';
2661: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(345) := 'ORGANIZATION';
2662: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(346) := 'OTHERS';
2663: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(347) := 'OUT';
2664: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(348) := 'OVERFLOW';
2665: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(349) := 'OWN';
2666: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(350) := 'PACKAGE';

Line 2663: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(347) := 'OUT';

2659: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(343) := 'OR';
2660: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(344) := 'ORDER';
2661: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(345) := 'ORGANIZATION';
2662: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(346) := 'OTHERS';
2663: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(347) := 'OUT';
2664: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(348) := 'OVERFLOW';
2665: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(349) := 'OWN';
2666: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(350) := 'PACKAGE';
2667: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(351) := 'PARALLEL';

Line 2664: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(348) := 'OVERFLOW';

2660: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(344) := 'ORDER';
2661: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(345) := 'ORGANIZATION';
2662: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(346) := 'OTHERS';
2663: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(347) := 'OUT';
2664: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(348) := 'OVERFLOW';
2665: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(349) := 'OWN';
2666: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(350) := 'PACKAGE';
2667: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(351) := 'PARALLEL';
2668: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(352) := 'PARTITION';

Line 2665: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(349) := 'OWN';

2661: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(345) := 'ORGANIZATION';
2662: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(346) := 'OTHERS';
2663: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(347) := 'OUT';
2664: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(348) := 'OVERFLOW';
2665: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(349) := 'OWN';
2666: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(350) := 'PACKAGE';
2667: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(351) := 'PARALLEL';
2668: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(352) := 'PARTITION';
2669: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(353) := 'PASSWORD';

Line 2666: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(350) := 'PACKAGE';

2662: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(346) := 'OTHERS';
2663: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(347) := 'OUT';
2664: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(348) := 'OVERFLOW';
2665: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(349) := 'OWN';
2666: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(350) := 'PACKAGE';
2667: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(351) := 'PARALLEL';
2668: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(352) := 'PARTITION';
2669: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(353) := 'PASSWORD';
2670: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(354) := 'PASSWORD_GRACE_TIME';

Line 2667: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(351) := 'PARALLEL';

2663: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(347) := 'OUT';
2664: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(348) := 'OVERFLOW';
2665: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(349) := 'OWN';
2666: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(350) := 'PACKAGE';
2667: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(351) := 'PARALLEL';
2668: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(352) := 'PARTITION';
2669: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(353) := 'PASSWORD';
2670: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(354) := 'PASSWORD_GRACE_TIME';
2671: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(355) := 'PASSWORD_LIFE_TIME';

Line 2668: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(352) := 'PARTITION';

2664: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(348) := 'OVERFLOW';
2665: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(349) := 'OWN';
2666: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(350) := 'PACKAGE';
2667: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(351) := 'PARALLEL';
2668: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(352) := 'PARTITION';
2669: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(353) := 'PASSWORD';
2670: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(354) := 'PASSWORD_GRACE_TIME';
2671: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(355) := 'PASSWORD_LIFE_TIME';
2672: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(356) := 'PASSWORD_LOCK_TIME';

Line 2669: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(353) := 'PASSWORD';

2665: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(349) := 'OWN';
2666: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(350) := 'PACKAGE';
2667: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(351) := 'PARALLEL';
2668: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(352) := 'PARTITION';
2669: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(353) := 'PASSWORD';
2670: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(354) := 'PASSWORD_GRACE_TIME';
2671: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(355) := 'PASSWORD_LIFE_TIME';
2672: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(356) := 'PASSWORD_LOCK_TIME';
2673: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(357) := 'PASSWORD_REUSE_MAX';

Line 2670: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(354) := 'PASSWORD_GRACE_TIME';

2666: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(350) := 'PACKAGE';
2667: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(351) := 'PARALLEL';
2668: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(352) := 'PARTITION';
2669: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(353) := 'PASSWORD';
2670: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(354) := 'PASSWORD_GRACE_TIME';
2671: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(355) := 'PASSWORD_LIFE_TIME';
2672: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(356) := 'PASSWORD_LOCK_TIME';
2673: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(357) := 'PASSWORD_REUSE_MAX';
2674: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(358) := 'PASSWORD_REUSE_TIME';

Line 2671: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(355) := 'PASSWORD_LIFE_TIME';

2667: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(351) := 'PARALLEL';
2668: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(352) := 'PARTITION';
2669: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(353) := 'PASSWORD';
2670: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(354) := 'PASSWORD_GRACE_TIME';
2671: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(355) := 'PASSWORD_LIFE_TIME';
2672: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(356) := 'PASSWORD_LOCK_TIME';
2673: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(357) := 'PASSWORD_REUSE_MAX';
2674: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(358) := 'PASSWORD_REUSE_TIME';
2675: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(359) := 'PASSWORD_VERIFY_';

Line 2672: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(356) := 'PASSWORD_LOCK_TIME';

2668: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(352) := 'PARTITION';
2669: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(353) := 'PASSWORD';
2670: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(354) := 'PASSWORD_GRACE_TIME';
2671: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(355) := 'PASSWORD_LIFE_TIME';
2672: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(356) := 'PASSWORD_LOCK_TIME';
2673: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(357) := 'PASSWORD_REUSE_MAX';
2674: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(358) := 'PASSWORD_REUSE_TIME';
2675: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(359) := 'PASSWORD_VERIFY_';
2676: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(360) := 'PCTFREE';

Line 2673: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(357) := 'PASSWORD_REUSE_MAX';

2669: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(353) := 'PASSWORD';
2670: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(354) := 'PASSWORD_GRACE_TIME';
2671: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(355) := 'PASSWORD_LIFE_TIME';
2672: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(356) := 'PASSWORD_LOCK_TIME';
2673: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(357) := 'PASSWORD_REUSE_MAX';
2674: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(358) := 'PASSWORD_REUSE_TIME';
2675: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(359) := 'PASSWORD_VERIFY_';
2676: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(360) := 'PCTFREE';
2677: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(361) := 'PCTINCREASE';

Line 2674: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(358) := 'PASSWORD_REUSE_TIME';

2670: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(354) := 'PASSWORD_GRACE_TIME';
2671: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(355) := 'PASSWORD_LIFE_TIME';
2672: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(356) := 'PASSWORD_LOCK_TIME';
2673: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(357) := 'PASSWORD_REUSE_MAX';
2674: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(358) := 'PASSWORD_REUSE_TIME';
2675: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(359) := 'PASSWORD_VERIFY_';
2676: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(360) := 'PCTFREE';
2677: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(361) := 'PCTINCREASE';
2678: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(362) := 'PCTTHRESHOLD';

Line 2675: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(359) := 'PASSWORD_VERIFY_';

2671: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(355) := 'PASSWORD_LIFE_TIME';
2672: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(356) := 'PASSWORD_LOCK_TIME';
2673: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(357) := 'PASSWORD_REUSE_MAX';
2674: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(358) := 'PASSWORD_REUSE_TIME';
2675: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(359) := 'PASSWORD_VERIFY_';
2676: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(360) := 'PCTFREE';
2677: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(361) := 'PCTINCREASE';
2678: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(362) := 'PCTTHRESHOLD';
2679: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(363) := 'PCTUSED';

Line 2676: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(360) := 'PCTFREE';

2672: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(356) := 'PASSWORD_LOCK_TIME';
2673: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(357) := 'PASSWORD_REUSE_MAX';
2674: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(358) := 'PASSWORD_REUSE_TIME';
2675: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(359) := 'PASSWORD_VERIFY_';
2676: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(360) := 'PCTFREE';
2677: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(361) := 'PCTINCREASE';
2678: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(362) := 'PCTTHRESHOLD';
2679: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(363) := 'PCTUSED';
2680: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(364) := 'PCTVERSION';

Line 2677: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(361) := 'PCTINCREASE';

2673: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(357) := 'PASSWORD_REUSE_MAX';
2674: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(358) := 'PASSWORD_REUSE_TIME';
2675: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(359) := 'PASSWORD_VERIFY_';
2676: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(360) := 'PCTFREE';
2677: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(361) := 'PCTINCREASE';
2678: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(362) := 'PCTTHRESHOLD';
2679: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(363) := 'PCTUSED';
2680: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(364) := 'PCTVERSION';
2681: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(365) := 'PERCENT';

Line 2678: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(362) := 'PCTTHRESHOLD';

2674: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(358) := 'PASSWORD_REUSE_TIME';
2675: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(359) := 'PASSWORD_VERIFY_';
2676: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(360) := 'PCTFREE';
2677: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(361) := 'PCTINCREASE';
2678: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(362) := 'PCTTHRESHOLD';
2679: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(363) := 'PCTUSED';
2680: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(364) := 'PCTVERSION';
2681: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(365) := 'PERCENT';
2682: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(366) := 'PERMANENT';

Line 2679: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(363) := 'PCTUSED';

2675: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(359) := 'PASSWORD_VERIFY_';
2676: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(360) := 'PCTFREE';
2677: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(361) := 'PCTINCREASE';
2678: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(362) := 'PCTTHRESHOLD';
2679: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(363) := 'PCTUSED';
2680: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(364) := 'PCTVERSION';
2681: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(365) := 'PERCENT';
2682: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(366) := 'PERMANENT';
2683: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(367) := 'PLAN';

Line 2680: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(364) := 'PCTVERSION';

2676: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(360) := 'PCTFREE';
2677: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(361) := 'PCTINCREASE';
2678: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(362) := 'PCTTHRESHOLD';
2679: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(363) := 'PCTUSED';
2680: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(364) := 'PCTVERSION';
2681: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(365) := 'PERCENT';
2682: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(366) := 'PERMANENT';
2683: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(367) := 'PLAN';
2684: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(368) := 'PLS_INTEGER';

Line 2681: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(365) := 'PERCENT';

2677: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(361) := 'PCTINCREASE';
2678: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(362) := 'PCTTHRESHOLD';
2679: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(363) := 'PCTUSED';
2680: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(364) := 'PCTVERSION';
2681: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(365) := 'PERCENT';
2682: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(366) := 'PERMANENT';
2683: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(367) := 'PLAN';
2684: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(368) := 'PLS_INTEGER';
2685: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(369) := 'PLSQL_DEBUG';

Line 2682: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(366) := 'PERMANENT';

2678: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(362) := 'PCTTHRESHOLD';
2679: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(363) := 'PCTUSED';
2680: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(364) := 'PCTVERSION';
2681: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(365) := 'PERCENT';
2682: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(366) := 'PERMANENT';
2683: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(367) := 'PLAN';
2684: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(368) := 'PLS_INTEGER';
2685: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(369) := 'PLSQL_DEBUG';
2686: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(370) := 'POSITIVE';

Line 2683: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(367) := 'PLAN';

2679: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(363) := 'PCTUSED';
2680: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(364) := 'PCTVERSION';
2681: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(365) := 'PERCENT';
2682: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(366) := 'PERMANENT';
2683: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(367) := 'PLAN';
2684: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(368) := 'PLS_INTEGER';
2685: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(369) := 'PLSQL_DEBUG';
2686: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(370) := 'POSITIVE';
2687: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(371) := 'POSITIVEN';

Line 2684: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(368) := 'PLS_INTEGER';

2680: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(364) := 'PCTVERSION';
2681: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(365) := 'PERCENT';
2682: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(366) := 'PERMANENT';
2683: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(367) := 'PLAN';
2684: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(368) := 'PLS_INTEGER';
2685: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(369) := 'PLSQL_DEBUG';
2686: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(370) := 'POSITIVE';
2687: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(371) := 'POSITIVEN';
2688: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(372) := 'POST_TRANSACTION';

Line 2685: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(369) := 'PLSQL_DEBUG';

2681: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(365) := 'PERCENT';
2682: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(366) := 'PERMANENT';
2683: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(367) := 'PLAN';
2684: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(368) := 'PLS_INTEGER';
2685: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(369) := 'PLSQL_DEBUG';
2686: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(370) := 'POSITIVE';
2687: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(371) := 'POSITIVEN';
2688: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(372) := 'POST_TRANSACTION';
2689: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(373) := 'PRAGMA';

Line 2686: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(370) := 'POSITIVE';

2682: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(366) := 'PERMANENT';
2683: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(367) := 'PLAN';
2684: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(368) := 'PLS_INTEGER';
2685: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(369) := 'PLSQL_DEBUG';
2686: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(370) := 'POSITIVE';
2687: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(371) := 'POSITIVEN';
2688: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(372) := 'POST_TRANSACTION';
2689: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(373) := 'PRAGMA';
2690: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(374) := 'PRECISION';

Line 2687: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(371) := 'POSITIVEN';

2683: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(367) := 'PLAN';
2684: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(368) := 'PLS_INTEGER';
2685: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(369) := 'PLSQL_DEBUG';
2686: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(370) := 'POSITIVE';
2687: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(371) := 'POSITIVEN';
2688: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(372) := 'POST_TRANSACTION';
2689: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(373) := 'PRAGMA';
2690: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(374) := 'PRECISION';
2691: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(375) := 'PRESERVE';

Line 2688: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(372) := 'POST_TRANSACTION';

2684: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(368) := 'PLS_INTEGER';
2685: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(369) := 'PLSQL_DEBUG';
2686: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(370) := 'POSITIVE';
2687: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(371) := 'POSITIVEN';
2688: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(372) := 'POST_TRANSACTION';
2689: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(373) := 'PRAGMA';
2690: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(374) := 'PRECISION';
2691: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(375) := 'PRESERVE';
2692: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(376) := 'PRIMARY';

Line 2689: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(373) := 'PRAGMA';

2685: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(369) := 'PLSQL_DEBUG';
2686: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(370) := 'POSITIVE';
2687: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(371) := 'POSITIVEN';
2688: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(372) := 'POST_TRANSACTION';
2689: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(373) := 'PRAGMA';
2690: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(374) := 'PRECISION';
2691: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(375) := 'PRESERVE';
2692: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(376) := 'PRIMARY';
2693: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(377) := 'PRIOR';

Line 2690: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(374) := 'PRECISION';

2686: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(370) := 'POSITIVE';
2687: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(371) := 'POSITIVEN';
2688: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(372) := 'POST_TRANSACTION';
2689: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(373) := 'PRAGMA';
2690: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(374) := 'PRECISION';
2691: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(375) := 'PRESERVE';
2692: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(376) := 'PRIMARY';
2693: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(377) := 'PRIOR';
2694: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(378) := 'PRIVATE';

Line 2691: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(375) := 'PRESERVE';

2687: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(371) := 'POSITIVEN';
2688: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(372) := 'POST_TRANSACTION';
2689: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(373) := 'PRAGMA';
2690: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(374) := 'PRECISION';
2691: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(375) := 'PRESERVE';
2692: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(376) := 'PRIMARY';
2693: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(377) := 'PRIOR';
2694: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(378) := 'PRIVATE';
2695: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(379) := 'PRIVATE_SGA';

Line 2692: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(376) := 'PRIMARY';

2688: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(372) := 'POST_TRANSACTION';
2689: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(373) := 'PRAGMA';
2690: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(374) := 'PRECISION';
2691: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(375) := 'PRESERVE';
2692: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(376) := 'PRIMARY';
2693: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(377) := 'PRIOR';
2694: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(378) := 'PRIVATE';
2695: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(379) := 'PRIVATE_SGA';
2696: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(380) := 'PRIVILEGE';

Line 2693: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(377) := 'PRIOR';

2689: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(373) := 'PRAGMA';
2690: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(374) := 'PRECISION';
2691: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(375) := 'PRESERVE';
2692: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(376) := 'PRIMARY';
2693: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(377) := 'PRIOR';
2694: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(378) := 'PRIVATE';
2695: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(379) := 'PRIVATE_SGA';
2696: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(380) := 'PRIVILEGE';
2697: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(381) := 'PRIVILEGES';

Line 2694: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(378) := 'PRIVATE';

2690: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(374) := 'PRECISION';
2691: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(375) := 'PRESERVE';
2692: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(376) := 'PRIMARY';
2693: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(377) := 'PRIOR';
2694: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(378) := 'PRIVATE';
2695: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(379) := 'PRIVATE_SGA';
2696: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(380) := 'PRIVILEGE';
2697: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(381) := 'PRIVILEGES';
2698: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(382) := 'PROCEDURE';

Line 2695: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(379) := 'PRIVATE_SGA';

2691: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(375) := 'PRESERVE';
2692: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(376) := 'PRIMARY';
2693: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(377) := 'PRIOR';
2694: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(378) := 'PRIVATE';
2695: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(379) := 'PRIVATE_SGA';
2696: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(380) := 'PRIVILEGE';
2697: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(381) := 'PRIVILEGES';
2698: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(382) := 'PROCEDURE';
2699: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(383) := 'PROFILE';

Line 2696: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(380) := 'PRIVILEGE';

2692: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(376) := 'PRIMARY';
2693: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(377) := 'PRIOR';
2694: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(378) := 'PRIVATE';
2695: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(379) := 'PRIVATE_SGA';
2696: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(380) := 'PRIVILEGE';
2697: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(381) := 'PRIVILEGES';
2698: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(382) := 'PROCEDURE';
2699: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(383) := 'PROFILE';
2700: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(384) := 'PUBLIC';

Line 2697: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(381) := 'PRIVILEGES';

2693: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(377) := 'PRIOR';
2694: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(378) := 'PRIVATE';
2695: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(379) := 'PRIVATE_SGA';
2696: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(380) := 'PRIVILEGE';
2697: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(381) := 'PRIVILEGES';
2698: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(382) := 'PROCEDURE';
2699: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(383) := 'PROFILE';
2700: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(384) := 'PUBLIC';
2701: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(385) := 'PURGE';

Line 2698: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(382) := 'PROCEDURE';

2694: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(378) := 'PRIVATE';
2695: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(379) := 'PRIVATE_SGA';
2696: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(380) := 'PRIVILEGE';
2697: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(381) := 'PRIVILEGES';
2698: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(382) := 'PROCEDURE';
2699: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(383) := 'PROFILE';
2700: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(384) := 'PUBLIC';
2701: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(385) := 'PURGE';
2702: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(386) := 'QUARTER';

Line 2699: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(383) := 'PROFILE';

2695: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(379) := 'PRIVATE_SGA';
2696: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(380) := 'PRIVILEGE';
2697: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(381) := 'PRIVILEGES';
2698: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(382) := 'PROCEDURE';
2699: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(383) := 'PROFILE';
2700: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(384) := 'PUBLIC';
2701: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(385) := 'PURGE';
2702: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(386) := 'QUARTER';
2703: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(387) := 'QUEUE';

Line 2700: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(384) := 'PUBLIC';

2696: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(380) := 'PRIVILEGE';
2697: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(381) := 'PRIVILEGES';
2698: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(382) := 'PROCEDURE';
2699: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(383) := 'PROFILE';
2700: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(384) := 'PUBLIC';
2701: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(385) := 'PURGE';
2702: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(386) := 'QUARTER';
2703: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(387) := 'QUEUE';
2704: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(388) := 'QUOTA';

Line 2701: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(385) := 'PURGE';

2697: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(381) := 'PRIVILEGES';
2698: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(382) := 'PROCEDURE';
2699: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(383) := 'PROFILE';
2700: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(384) := 'PUBLIC';
2701: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(385) := 'PURGE';
2702: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(386) := 'QUARTER';
2703: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(387) := 'QUEUE';
2704: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(388) := 'QUOTA';
2705: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(389) := 'RAISE';

Line 2702: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(386) := 'QUARTER';

2698: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(382) := 'PROCEDURE';
2699: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(383) := 'PROFILE';
2700: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(384) := 'PUBLIC';
2701: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(385) := 'PURGE';
2702: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(386) := 'QUARTER';
2703: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(387) := 'QUEUE';
2704: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(388) := 'QUOTA';
2705: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(389) := 'RAISE';
2706: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(390) := 'RANGE';

Line 2703: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(387) := 'QUEUE';

2699: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(383) := 'PROFILE';
2700: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(384) := 'PUBLIC';
2701: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(385) := 'PURGE';
2702: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(386) := 'QUARTER';
2703: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(387) := 'QUEUE';
2704: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(388) := 'QUOTA';
2705: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(389) := 'RAISE';
2706: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(390) := 'RANGE';
2707: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(391) := 'RAW';

Line 2704: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(388) := 'QUOTA';

2700: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(384) := 'PUBLIC';
2701: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(385) := 'PURGE';
2702: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(386) := 'QUARTER';
2703: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(387) := 'QUEUE';
2704: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(388) := 'QUOTA';
2705: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(389) := 'RAISE';
2706: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(390) := 'RANGE';
2707: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(391) := 'RAW';
2708: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(392) := 'RBA';

Line 2705: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(389) := 'RAISE';

2701: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(385) := 'PURGE';
2702: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(386) := 'QUARTER';
2703: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(387) := 'QUEUE';
2704: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(388) := 'QUOTA';
2705: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(389) := 'RAISE';
2706: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(390) := 'RANGE';
2707: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(391) := 'RAW';
2708: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(392) := 'RBA';
2709: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(393) := 'READ';

Line 2706: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(390) := 'RANGE';

2702: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(386) := 'QUARTER';
2703: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(387) := 'QUEUE';
2704: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(388) := 'QUOTA';
2705: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(389) := 'RAISE';
2706: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(390) := 'RANGE';
2707: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(391) := 'RAW';
2708: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(392) := 'RBA';
2709: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(393) := 'READ';
2710: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(394) := 'REAL';

Line 2707: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(391) := 'RAW';

2703: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(387) := 'QUEUE';
2704: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(388) := 'QUOTA';
2705: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(389) := 'RAISE';
2706: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(390) := 'RANGE';
2707: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(391) := 'RAW';
2708: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(392) := 'RBA';
2709: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(393) := 'READ';
2710: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(394) := 'REAL';
2711: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(395) := 'REBUILD';

Line 2708: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(392) := 'RBA';

2704: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(388) := 'QUOTA';
2705: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(389) := 'RAISE';
2706: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(390) := 'RANGE';
2707: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(391) := 'RAW';
2708: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(392) := 'RBA';
2709: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(393) := 'READ';
2710: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(394) := 'REAL';
2711: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(395) := 'REBUILD';
2712: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(396) := 'RECORD';

Line 2709: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(393) := 'READ';

2705: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(389) := 'RAISE';
2706: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(390) := 'RANGE';
2707: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(391) := 'RAW';
2708: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(392) := 'RBA';
2709: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(393) := 'READ';
2710: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(394) := 'REAL';
2711: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(395) := 'REBUILD';
2712: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(396) := 'RECORD';
2713: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(397) := 'RECOVER';

Line 2710: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(394) := 'REAL';

2706: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(390) := 'RANGE';
2707: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(391) := 'RAW';
2708: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(392) := 'RBA';
2709: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(393) := 'READ';
2710: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(394) := 'REAL';
2711: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(395) := 'REBUILD';
2712: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(396) := 'RECORD';
2713: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(397) := 'RECOVER';
2714: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(398) := 'RECOVERABLE';

Line 2711: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(395) := 'REBUILD';

2707: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(391) := 'RAW';
2708: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(392) := 'RBA';
2709: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(393) := 'READ';
2710: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(394) := 'REAL';
2711: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(395) := 'REBUILD';
2712: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(396) := 'RECORD';
2713: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(397) := 'RECOVER';
2714: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(398) := 'RECOVERABLE';
2715: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(399) := 'RECOVERY';

Line 2712: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(396) := 'RECORD';

2708: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(392) := 'RBA';
2709: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(393) := 'READ';
2710: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(394) := 'REAL';
2711: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(395) := 'REBUILD';
2712: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(396) := 'RECORD';
2713: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(397) := 'RECOVER';
2714: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(398) := 'RECOVERABLE';
2715: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(399) := 'RECOVERY';
2716: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(400) := 'REF';

Line 2713: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(397) := 'RECOVER';

2709: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(393) := 'READ';
2710: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(394) := 'REAL';
2711: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(395) := 'REBUILD';
2712: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(396) := 'RECORD';
2713: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(397) := 'RECOVER';
2714: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(398) := 'RECOVERABLE';
2715: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(399) := 'RECOVERY';
2716: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(400) := 'REF';
2717: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(401) := 'REFERENCES';

Line 2714: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(398) := 'RECOVERABLE';

2710: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(394) := 'REAL';
2711: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(395) := 'REBUILD';
2712: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(396) := 'RECORD';
2713: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(397) := 'RECOVER';
2714: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(398) := 'RECOVERABLE';
2715: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(399) := 'RECOVERY';
2716: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(400) := 'REF';
2717: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(401) := 'REFERENCES';
2718: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(402) := 'REFERENCING';

Line 2715: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(399) := 'RECOVERY';

2711: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(395) := 'REBUILD';
2712: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(396) := 'RECORD';
2713: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(397) := 'RECOVER';
2714: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(398) := 'RECOVERABLE';
2715: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(399) := 'RECOVERY';
2716: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(400) := 'REF';
2717: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(401) := 'REFERENCES';
2718: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(402) := 'REFERENCING';
2719: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(403) := 'RELEASE';

Line 2716: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(400) := 'REF';

2712: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(396) := 'RECORD';
2713: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(397) := 'RECOVER';
2714: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(398) := 'RECOVERABLE';
2715: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(399) := 'RECOVERY';
2716: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(400) := 'REF';
2717: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(401) := 'REFERENCES';
2718: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(402) := 'REFERENCING';
2719: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(403) := 'RELEASE';
2720: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(404) := 'REFRESH';

Line 2717: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(401) := 'REFERENCES';

2713: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(397) := 'RECOVER';
2714: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(398) := 'RECOVERABLE';
2715: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(399) := 'RECOVERY';
2716: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(400) := 'REF';
2717: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(401) := 'REFERENCES';
2718: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(402) := 'REFERENCING';
2719: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(403) := 'RELEASE';
2720: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(404) := 'REFRESH';
2721: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(405) := 'RENAME';

Line 2718: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(402) := 'REFERENCING';

2714: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(398) := 'RECOVERABLE';
2715: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(399) := 'RECOVERY';
2716: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(400) := 'REF';
2717: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(401) := 'REFERENCES';
2718: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(402) := 'REFERENCING';
2719: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(403) := 'RELEASE';
2720: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(404) := 'REFRESH';
2721: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(405) := 'RENAME';
2722: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(406) := 'REMR';

Line 2719: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(403) := 'RELEASE';

2715: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(399) := 'RECOVERY';
2716: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(400) := 'REF';
2717: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(401) := 'REFERENCES';
2718: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(402) := 'REFERENCING';
2719: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(403) := 'RELEASE';
2720: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(404) := 'REFRESH';
2721: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(405) := 'RENAME';
2722: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(406) := 'REMR';
2723: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(407) := 'REPLACE';

Line 2720: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(404) := 'REFRESH';

2716: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(400) := 'REF';
2717: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(401) := 'REFERENCES';
2718: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(402) := 'REFERENCING';
2719: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(403) := 'RELEASE';
2720: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(404) := 'REFRESH';
2721: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(405) := 'RENAME';
2722: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(406) := 'REMR';
2723: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(407) := 'REPLACE';
2724: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(408) := 'RESET';

Line 2721: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(405) := 'RENAME';

2717: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(401) := 'REFERENCES';
2718: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(402) := 'REFERENCING';
2719: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(403) := 'RELEASE';
2720: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(404) := 'REFRESH';
2721: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(405) := 'RENAME';
2722: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(406) := 'REMR';
2723: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(407) := 'REPLACE';
2724: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(408) := 'RESET';
2725: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(409) := 'RESETLOGS';

Line 2722: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(406) := 'REMR';

2718: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(402) := 'REFERENCING';
2719: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(403) := 'RELEASE';
2720: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(404) := 'REFRESH';
2721: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(405) := 'RENAME';
2722: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(406) := 'REMR';
2723: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(407) := 'REPLACE';
2724: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(408) := 'RESET';
2725: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(409) := 'RESETLOGS';
2726: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(410) := 'RESIZE';

Line 2723: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(407) := 'REPLACE';

2719: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(403) := 'RELEASE';
2720: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(404) := 'REFRESH';
2721: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(405) := 'RENAME';
2722: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(406) := 'REMR';
2723: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(407) := 'REPLACE';
2724: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(408) := 'RESET';
2725: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(409) := 'RESETLOGS';
2726: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(410) := 'RESIZE';
2727: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(411) := 'RESOURCE';

Line 2724: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(408) := 'RESET';

2720: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(404) := 'REFRESH';
2721: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(405) := 'RENAME';
2722: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(406) := 'REMR';
2723: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(407) := 'REPLACE';
2724: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(408) := 'RESET';
2725: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(409) := 'RESETLOGS';
2726: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(410) := 'RESIZE';
2727: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(411) := 'RESOURCE';
2728: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(412) := 'RESTRICTED';

Line 2725: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(409) := 'RESETLOGS';

2721: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(405) := 'RENAME';
2722: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(406) := 'REMR';
2723: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(407) := 'REPLACE';
2724: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(408) := 'RESET';
2725: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(409) := 'RESETLOGS';
2726: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(410) := 'RESIZE';
2727: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(411) := 'RESOURCE';
2728: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(412) := 'RESTRICTED';
2729: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(413) := 'RETURN';

Line 2726: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(410) := 'RESIZE';

2722: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(406) := 'REMR';
2723: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(407) := 'REPLACE';
2724: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(408) := 'RESET';
2725: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(409) := 'RESETLOGS';
2726: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(410) := 'RESIZE';
2727: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(411) := 'RESOURCE';
2728: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(412) := 'RESTRICTED';
2729: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(413) := 'RETURN';
2730: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(414) := 'RETURNING';

Line 2727: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(411) := 'RESOURCE';

2723: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(407) := 'REPLACE';
2724: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(408) := 'RESET';
2725: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(409) := 'RESETLOGS';
2726: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(410) := 'RESIZE';
2727: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(411) := 'RESOURCE';
2728: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(412) := 'RESTRICTED';
2729: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(413) := 'RETURN';
2730: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(414) := 'RETURNING';
2731: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(415) := 'REUSE';

Line 2728: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(412) := 'RESTRICTED';

2724: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(408) := 'RESET';
2725: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(409) := 'RESETLOGS';
2726: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(410) := 'RESIZE';
2727: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(411) := 'RESOURCE';
2728: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(412) := 'RESTRICTED';
2729: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(413) := 'RETURN';
2730: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(414) := 'RETURNING';
2731: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(415) := 'REUSE';
2732: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(416) := 'REVERSE';

Line 2729: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(413) := 'RETURN';

2725: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(409) := 'RESETLOGS';
2726: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(410) := 'RESIZE';
2727: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(411) := 'RESOURCE';
2728: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(412) := 'RESTRICTED';
2729: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(413) := 'RETURN';
2730: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(414) := 'RETURNING';
2731: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(415) := 'REUSE';
2732: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(416) := 'REVERSE';
2733: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(417) := 'REVOKE';

Line 2730: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(414) := 'RETURNING';

2726: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(410) := 'RESIZE';
2727: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(411) := 'RESOURCE';
2728: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(412) := 'RESTRICTED';
2729: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(413) := 'RETURN';
2730: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(414) := 'RETURNING';
2731: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(415) := 'REUSE';
2732: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(416) := 'REVERSE';
2733: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(417) := 'REVOKE';
2734: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(418) := 'ROLE';

Line 2731: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(415) := 'REUSE';

2727: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(411) := 'RESOURCE';
2728: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(412) := 'RESTRICTED';
2729: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(413) := 'RETURN';
2730: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(414) := 'RETURNING';
2731: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(415) := 'REUSE';
2732: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(416) := 'REVERSE';
2733: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(417) := 'REVOKE';
2734: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(418) := 'ROLE';
2735: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(419) := 'ROLES';

Line 2732: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(416) := 'REVERSE';

2728: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(412) := 'RESTRICTED';
2729: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(413) := 'RETURN';
2730: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(414) := 'RETURNING';
2731: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(415) := 'REUSE';
2732: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(416) := 'REVERSE';
2733: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(417) := 'REVOKE';
2734: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(418) := 'ROLE';
2735: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(419) := 'ROLES';
2736: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(420) := 'ROLLBACK';

Line 2733: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(417) := 'REVOKE';

2729: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(413) := 'RETURN';
2730: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(414) := 'RETURNING';
2731: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(415) := 'REUSE';
2732: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(416) := 'REVERSE';
2733: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(417) := 'REVOKE';
2734: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(418) := 'ROLE';
2735: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(419) := 'ROLES';
2736: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(420) := 'ROLLBACK';
2737: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(421) := 'ROW';

Line 2734: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(418) := 'ROLE';

2730: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(414) := 'RETURNING';
2731: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(415) := 'REUSE';
2732: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(416) := 'REVERSE';
2733: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(417) := 'REVOKE';
2734: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(418) := 'ROLE';
2735: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(419) := 'ROLES';
2736: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(420) := 'ROLLBACK';
2737: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(421) := 'ROW';
2738: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(422) := 'ROWID';

Line 2735: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(419) := 'ROLES';

2731: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(415) := 'REUSE';
2732: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(416) := 'REVERSE';
2733: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(417) := 'REVOKE';
2734: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(418) := 'ROLE';
2735: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(419) := 'ROLES';
2736: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(420) := 'ROLLBACK';
2737: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(421) := 'ROW';
2738: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(422) := 'ROWID';
2739: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(423) := 'ROWLABEL';

Line 2736: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(420) := 'ROLLBACK';

2732: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(416) := 'REVERSE';
2733: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(417) := 'REVOKE';
2734: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(418) := 'ROLE';
2735: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(419) := 'ROLES';
2736: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(420) := 'ROLLBACK';
2737: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(421) := 'ROW';
2738: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(422) := 'ROWID';
2739: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(423) := 'ROWLABEL';
2740: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(424) := 'ROWNUM';

Line 2737: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(421) := 'ROW';

2733: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(417) := 'REVOKE';
2734: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(418) := 'ROLE';
2735: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(419) := 'ROLES';
2736: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(420) := 'ROLLBACK';
2737: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(421) := 'ROW';
2738: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(422) := 'ROWID';
2739: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(423) := 'ROWLABEL';
2740: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(424) := 'ROWNUM';
2741: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(425) := 'ROWS';

Line 2738: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(422) := 'ROWID';

2734: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(418) := 'ROLE';
2735: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(419) := 'ROLES';
2736: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(420) := 'ROLLBACK';
2737: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(421) := 'ROW';
2738: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(422) := 'ROWID';
2739: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(423) := 'ROWLABEL';
2740: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(424) := 'ROWNUM';
2741: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(425) := 'ROWS';
2742: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(426) := 'ROWTYPE';

Line 2739: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(423) := 'ROWLABEL';

2735: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(419) := 'ROLES';
2736: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(420) := 'ROLLBACK';
2737: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(421) := 'ROW';
2738: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(422) := 'ROWID';
2739: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(423) := 'ROWLABEL';
2740: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(424) := 'ROWNUM';
2741: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(425) := 'ROWS';
2742: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(426) := 'ROWTYPE';
2743: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(427) := 'RULE';

Line 2740: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(424) := 'ROWNUM';

2736: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(420) := 'ROLLBACK';
2737: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(421) := 'ROW';
2738: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(422) := 'ROWID';
2739: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(423) := 'ROWLABEL';
2740: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(424) := 'ROWNUM';
2741: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(425) := 'ROWS';
2742: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(426) := 'ROWTYPE';
2743: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(427) := 'RULE';
2744: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(428) := 'RUN';

Line 2741: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(425) := 'ROWS';

2737: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(421) := 'ROW';
2738: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(422) := 'ROWID';
2739: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(423) := 'ROWLABEL';
2740: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(424) := 'ROWNUM';
2741: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(425) := 'ROWS';
2742: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(426) := 'ROWTYPE';
2743: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(427) := 'RULE';
2744: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(428) := 'RUN';
2745: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(429) := 'SAMPLE';

Line 2742: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(426) := 'ROWTYPE';

2738: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(422) := 'ROWID';
2739: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(423) := 'ROWLABEL';
2740: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(424) := 'ROWNUM';
2741: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(425) := 'ROWS';
2742: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(426) := 'ROWTYPE';
2743: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(427) := 'RULE';
2744: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(428) := 'RUN';
2745: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(429) := 'SAMPLE';
2746: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(430) := 'SAVEPOINT';

Line 2743: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(427) := 'RULE';

2739: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(423) := 'ROWLABEL';
2740: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(424) := 'ROWNUM';
2741: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(425) := 'ROWS';
2742: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(426) := 'ROWTYPE';
2743: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(427) := 'RULE';
2744: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(428) := 'RUN';
2745: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(429) := 'SAMPLE';
2746: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(430) := 'SAVEPOINT';
2747: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(431) := 'SCAN_INSTANCES';

Line 2744: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(428) := 'RUN';

2740: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(424) := 'ROWNUM';
2741: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(425) := 'ROWS';
2742: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(426) := 'ROWTYPE';
2743: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(427) := 'RULE';
2744: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(428) := 'RUN';
2745: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(429) := 'SAMPLE';
2746: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(430) := 'SAVEPOINT';
2747: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(431) := 'SCAN_INSTANCES';
2748: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(432) := 'SCHEMA';

Line 2745: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(429) := 'SAMPLE';

2741: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(425) := 'ROWS';
2742: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(426) := 'ROWTYPE';
2743: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(427) := 'RULE';
2744: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(428) := 'RUN';
2745: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(429) := 'SAMPLE';
2746: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(430) := 'SAVEPOINT';
2747: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(431) := 'SCAN_INSTANCES';
2748: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(432) := 'SCHEMA';
2749: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(433) := 'SCN';

Line 2746: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(430) := 'SAVEPOINT';

2742: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(426) := 'ROWTYPE';
2743: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(427) := 'RULE';
2744: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(428) := 'RUN';
2745: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(429) := 'SAMPLE';
2746: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(430) := 'SAVEPOINT';
2747: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(431) := 'SCAN_INSTANCES';
2748: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(432) := 'SCHEMA';
2749: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(433) := 'SCN';
2750: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(434) := 'SCOPE';

Line 2747: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(431) := 'SCAN_INSTANCES';

2743: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(427) := 'RULE';
2744: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(428) := 'RUN';
2745: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(429) := 'SAMPLE';
2746: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(430) := 'SAVEPOINT';
2747: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(431) := 'SCAN_INSTANCES';
2748: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(432) := 'SCHEMA';
2749: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(433) := 'SCN';
2750: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(434) := 'SCOPE';
2751: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(435) := 'SD_ALL';

Line 2748: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(432) := 'SCHEMA';

2744: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(428) := 'RUN';
2745: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(429) := 'SAMPLE';
2746: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(430) := 'SAVEPOINT';
2747: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(431) := 'SCAN_INSTANCES';
2748: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(432) := 'SCHEMA';
2749: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(433) := 'SCN';
2750: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(434) := 'SCOPE';
2751: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(435) := 'SD_ALL';
2752: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(436) := 'SD_INHIBIT';

Line 2749: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(433) := 'SCN';

2745: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(429) := 'SAMPLE';
2746: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(430) := 'SAVEPOINT';
2747: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(431) := 'SCAN_INSTANCES';
2748: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(432) := 'SCHEMA';
2749: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(433) := 'SCN';
2750: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(434) := 'SCOPE';
2751: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(435) := 'SD_ALL';
2752: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(436) := 'SD_INHIBIT';
2753: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(437) := 'SD_SHOW';

Line 2750: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(434) := 'SCOPE';

2746: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(430) := 'SAVEPOINT';
2747: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(431) := 'SCAN_INSTANCES';
2748: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(432) := 'SCHEMA';
2749: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(433) := 'SCN';
2750: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(434) := 'SCOPE';
2751: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(435) := 'SD_ALL';
2752: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(436) := 'SD_INHIBIT';
2753: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(437) := 'SD_SHOW';
2754: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(438) := 'SEG_BLOCK';

Line 2751: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(435) := 'SD_ALL';

2747: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(431) := 'SCAN_INSTANCES';
2748: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(432) := 'SCHEMA';
2749: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(433) := 'SCN';
2750: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(434) := 'SCOPE';
2751: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(435) := 'SD_ALL';
2752: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(436) := 'SD_INHIBIT';
2753: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(437) := 'SD_SHOW';
2754: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(438) := 'SEG_BLOCK';
2755: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(439) := 'SEG_FILE';

Line 2752: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(436) := 'SD_INHIBIT';

2748: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(432) := 'SCHEMA';
2749: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(433) := 'SCN';
2750: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(434) := 'SCOPE';
2751: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(435) := 'SD_ALL';
2752: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(436) := 'SD_INHIBIT';
2753: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(437) := 'SD_SHOW';
2754: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(438) := 'SEG_BLOCK';
2755: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(439) := 'SEG_FILE';
2756: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(440) := 'SEGMENT';

Line 2753: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(437) := 'SD_SHOW';

2749: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(433) := 'SCN';
2750: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(434) := 'SCOPE';
2751: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(435) := 'SD_ALL';
2752: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(436) := 'SD_INHIBIT';
2753: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(437) := 'SD_SHOW';
2754: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(438) := 'SEG_BLOCK';
2755: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(439) := 'SEG_FILE';
2756: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(440) := 'SEGMENT';
2757: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(441) := 'SELECT';

Line 2754: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(438) := 'SEG_BLOCK';

2750: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(434) := 'SCOPE';
2751: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(435) := 'SD_ALL';
2752: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(436) := 'SD_INHIBIT';
2753: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(437) := 'SD_SHOW';
2754: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(438) := 'SEG_BLOCK';
2755: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(439) := 'SEG_FILE';
2756: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(440) := 'SEGMENT';
2757: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(441) := 'SELECT';
2758: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(442) := 'SEPARATE';

Line 2755: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(439) := 'SEG_FILE';

2751: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(435) := 'SD_ALL';
2752: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(436) := 'SD_INHIBIT';
2753: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(437) := 'SD_SHOW';
2754: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(438) := 'SEG_BLOCK';
2755: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(439) := 'SEG_FILE';
2756: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(440) := 'SEGMENT';
2757: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(441) := 'SELECT';
2758: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(442) := 'SEPARATE';
2759: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(443) := 'SEQUENCE';

Line 2756: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(440) := 'SEGMENT';

2752: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(436) := 'SD_INHIBIT';
2753: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(437) := 'SD_SHOW';
2754: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(438) := 'SEG_BLOCK';
2755: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(439) := 'SEG_FILE';
2756: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(440) := 'SEGMENT';
2757: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(441) := 'SELECT';
2758: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(442) := 'SEPARATE';
2759: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(443) := 'SEQUENCE';
2760: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(444) := 'SERIALIZABLE';

Line 2757: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(441) := 'SELECT';

2753: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(437) := 'SD_SHOW';
2754: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(438) := 'SEG_BLOCK';
2755: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(439) := 'SEG_FILE';
2756: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(440) := 'SEGMENT';
2757: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(441) := 'SELECT';
2758: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(442) := 'SEPARATE';
2759: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(443) := 'SEQUENCE';
2760: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(444) := 'SERIALIZABLE';
2761: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(445) := 'SESSION';

Line 2758: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(442) := 'SEPARATE';

2754: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(438) := 'SEG_BLOCK';
2755: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(439) := 'SEG_FILE';
2756: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(440) := 'SEGMENT';
2757: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(441) := 'SELECT';
2758: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(442) := 'SEPARATE';
2759: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(443) := 'SEQUENCE';
2760: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(444) := 'SERIALIZABLE';
2761: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(445) := 'SESSION';
2762: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(446) := 'SESSION_CACHED_';

Line 2759: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(443) := 'SEQUENCE';

2755: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(439) := 'SEG_FILE';
2756: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(440) := 'SEGMENT';
2757: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(441) := 'SELECT';
2758: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(442) := 'SEPARATE';
2759: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(443) := 'SEQUENCE';
2760: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(444) := 'SERIALIZABLE';
2761: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(445) := 'SESSION';
2762: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(446) := 'SESSION_CACHED_';
2763: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(447) := 'SESSIONS_PER_USER';

Line 2760: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(444) := 'SERIALIZABLE';

2756: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(440) := 'SEGMENT';
2757: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(441) := 'SELECT';
2758: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(442) := 'SEPARATE';
2759: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(443) := 'SEQUENCE';
2760: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(444) := 'SERIALIZABLE';
2761: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(445) := 'SESSION';
2762: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(446) := 'SESSION_CACHED_';
2763: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(447) := 'SESSIONS_PER_USER';
2764: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(448) := 'SET';

Line 2761: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(445) := 'SESSION';

2757: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(441) := 'SELECT';
2758: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(442) := 'SEPARATE';
2759: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(443) := 'SEQUENCE';
2760: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(444) := 'SERIALIZABLE';
2761: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(445) := 'SESSION';
2762: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(446) := 'SESSION_CACHED_';
2763: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(447) := 'SESSIONS_PER_USER';
2764: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(448) := 'SET';
2765: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(449) := 'SHARE';

Line 2762: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(446) := 'SESSION_CACHED_';

2758: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(442) := 'SEPARATE';
2759: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(443) := 'SEQUENCE';
2760: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(444) := 'SERIALIZABLE';
2761: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(445) := 'SESSION';
2762: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(446) := 'SESSION_CACHED_';
2763: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(447) := 'SESSIONS_PER_USER';
2764: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(448) := 'SET';
2765: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(449) := 'SHARE';
2766: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(450) := 'SHARED';

Line 2763: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(447) := 'SESSIONS_PER_USER';

2759: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(443) := 'SEQUENCE';
2760: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(444) := 'SERIALIZABLE';
2761: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(445) := 'SESSION';
2762: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(446) := 'SESSION_CACHED_';
2763: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(447) := 'SESSIONS_PER_USER';
2764: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(448) := 'SET';
2765: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(449) := 'SHARE';
2766: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(450) := 'SHARED';
2767: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(451) := 'SHARED_POOL';

Line 2764: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(448) := 'SET';

2760: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(444) := 'SERIALIZABLE';
2761: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(445) := 'SESSION';
2762: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(446) := 'SESSION_CACHED_';
2763: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(447) := 'SESSIONS_PER_USER';
2764: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(448) := 'SET';
2765: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(449) := 'SHARE';
2766: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(450) := 'SHARED';
2767: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(451) := 'SHARED_POOL';
2768: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(452) := 'SHRINK';

Line 2765: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(449) := 'SHARE';

2761: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(445) := 'SESSION';
2762: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(446) := 'SESSION_CACHED_';
2763: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(447) := 'SESSIONS_PER_USER';
2764: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(448) := 'SET';
2765: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(449) := 'SHARE';
2766: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(450) := 'SHARED';
2767: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(451) := 'SHARED_POOL';
2768: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(452) := 'SHRINK';
2769: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(453) := 'SIZE';

Line 2766: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(450) := 'SHARED';

2762: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(446) := 'SESSION_CACHED_';
2763: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(447) := 'SESSIONS_PER_USER';
2764: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(448) := 'SET';
2765: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(449) := 'SHARE';
2766: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(450) := 'SHARED';
2767: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(451) := 'SHARED_POOL';
2768: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(452) := 'SHRINK';
2769: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(453) := 'SIZE';
2770: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(454) := 'SKIM_UNUSABLE_INDEXES';

Line 2767: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(451) := 'SHARED_POOL';

2763: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(447) := 'SESSIONS_PER_USER';
2764: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(448) := 'SET';
2765: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(449) := 'SHARE';
2766: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(450) := 'SHARED';
2767: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(451) := 'SHARED_POOL';
2768: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(452) := 'SHRINK';
2769: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(453) := 'SIZE';
2770: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(454) := 'SKIM_UNUSABLE_INDEXES';
2771: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(455) := 'SMALLINT';

Line 2768: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(452) := 'SHRINK';

2764: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(448) := 'SET';
2765: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(449) := 'SHARE';
2766: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(450) := 'SHARED';
2767: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(451) := 'SHARED_POOL';
2768: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(452) := 'SHRINK';
2769: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(453) := 'SIZE';
2770: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(454) := 'SKIM_UNUSABLE_INDEXES';
2771: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(455) := 'SMALLINT';
2772: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(456) := 'SNAPSHOT';

Line 2769: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(453) := 'SIZE';

2765: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(449) := 'SHARE';
2766: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(450) := 'SHARED';
2767: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(451) := 'SHARED_POOL';
2768: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(452) := 'SHRINK';
2769: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(453) := 'SIZE';
2770: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(454) := 'SKIM_UNUSABLE_INDEXES';
2771: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(455) := 'SMALLINT';
2772: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(456) := 'SNAPSHOT';
2773: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(457) := 'SOME';

Line 2770: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(454) := 'SKIM_UNUSABLE_INDEXES';

2766: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(450) := 'SHARED';
2767: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(451) := 'SHARED_POOL';
2768: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(452) := 'SHRINK';
2769: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(453) := 'SIZE';
2770: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(454) := 'SKIM_UNUSABLE_INDEXES';
2771: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(455) := 'SMALLINT';
2772: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(456) := 'SNAPSHOT';
2773: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(457) := 'SOME';
2774: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(458) := 'SORT';

Line 2771: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(455) := 'SMALLINT';

2767: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(451) := 'SHARED_POOL';
2768: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(452) := 'SHRINK';
2769: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(453) := 'SIZE';
2770: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(454) := 'SKIM_UNUSABLE_INDEXES';
2771: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(455) := 'SMALLINT';
2772: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(456) := 'SNAPSHOT';
2773: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(457) := 'SOME';
2774: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(458) := 'SORT';
2775: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(459) := 'SPACE';

Line 2772: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(456) := 'SNAPSHOT';

2768: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(452) := 'SHRINK';
2769: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(453) := 'SIZE';
2770: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(454) := 'SKIM_UNUSABLE_INDEXES';
2771: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(455) := 'SMALLINT';
2772: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(456) := 'SNAPSHOT';
2773: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(457) := 'SOME';
2774: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(458) := 'SORT';
2775: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(459) := 'SPACE';
2776: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(460) := 'SPECIFICATION';

Line 2773: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(457) := 'SOME';

2769: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(453) := 'SIZE';
2770: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(454) := 'SKIM_UNUSABLE_INDEXES';
2771: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(455) := 'SMALLINT';
2772: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(456) := 'SNAPSHOT';
2773: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(457) := 'SOME';
2774: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(458) := 'SORT';
2775: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(459) := 'SPACE';
2776: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(460) := 'SPECIFICATION';
2777: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(461) := 'SPLIT';

Line 2774: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(458) := 'SORT';

2770: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(454) := 'SKIM_UNUSABLE_INDEXES';
2771: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(455) := 'SMALLINT';
2772: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(456) := 'SNAPSHOT';
2773: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(457) := 'SOME';
2774: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(458) := 'SORT';
2775: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(459) := 'SPACE';
2776: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(460) := 'SPECIFICATION';
2777: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(461) := 'SPLIT';
2778: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(462) := 'SQL';

Line 2775: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(459) := 'SPACE';

2771: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(455) := 'SMALLINT';
2772: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(456) := 'SNAPSHOT';
2773: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(457) := 'SOME';
2774: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(458) := 'SORT';
2775: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(459) := 'SPACE';
2776: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(460) := 'SPECIFICATION';
2777: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(461) := 'SPLIT';
2778: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(462) := 'SQL';
2779: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(463) := 'SQL_TRACE';

Line 2776: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(460) := 'SPECIFICATION';

2772: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(456) := 'SNAPSHOT';
2773: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(457) := 'SOME';
2774: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(458) := 'SORT';
2775: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(459) := 'SPACE';
2776: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(460) := 'SPECIFICATION';
2777: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(461) := 'SPLIT';
2778: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(462) := 'SQL';
2779: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(463) := 'SQL_TRACE';
2780: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(464) := 'SQLCODE';

Line 2777: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(461) := 'SPLIT';

2773: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(457) := 'SOME';
2774: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(458) := 'SORT';
2775: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(459) := 'SPACE';
2776: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(460) := 'SPECIFICATION';
2777: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(461) := 'SPLIT';
2778: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(462) := 'SQL';
2779: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(463) := 'SQL_TRACE';
2780: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(464) := 'SQLCODE';
2781: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(465) := 'SQLERRM';

Line 2778: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(462) := 'SQL';

2774: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(458) := 'SORT';
2775: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(459) := 'SPACE';
2776: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(460) := 'SPECIFICATION';
2777: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(461) := 'SPLIT';
2778: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(462) := 'SQL';
2779: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(463) := 'SQL_TRACE';
2780: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(464) := 'SQLCODE';
2781: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(465) := 'SQLERRM';
2782: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(466) := 'SQLERROR';

Line 2779: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(463) := 'SQL_TRACE';

2775: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(459) := 'SPACE';
2776: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(460) := 'SPECIFICATION';
2777: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(461) := 'SPLIT';
2778: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(462) := 'SQL';
2779: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(463) := 'SQL_TRACE';
2780: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(464) := 'SQLCODE';
2781: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(465) := 'SQLERRM';
2782: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(466) := 'SQLERROR';
2783: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(467) := 'STANDBY';

Line 2780: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(464) := 'SQLCODE';

2776: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(460) := 'SPECIFICATION';
2777: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(461) := 'SPLIT';
2778: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(462) := 'SQL';
2779: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(463) := 'SQL_TRACE';
2780: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(464) := 'SQLCODE';
2781: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(465) := 'SQLERRM';
2782: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(466) := 'SQLERROR';
2783: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(467) := 'STANDBY';
2784: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(468) := 'START';

Line 2781: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(465) := 'SQLERRM';

2777: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(461) := 'SPLIT';
2778: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(462) := 'SQL';
2779: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(463) := 'SQL_TRACE';
2780: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(464) := 'SQLCODE';
2781: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(465) := 'SQLERRM';
2782: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(466) := 'SQLERROR';
2783: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(467) := 'STANDBY';
2784: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(468) := 'START';
2785: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(469) := 'STATE';

Line 2782: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(466) := 'SQLERROR';

2778: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(462) := 'SQL';
2779: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(463) := 'SQL_TRACE';
2780: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(464) := 'SQLCODE';
2781: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(465) := 'SQLERRM';
2782: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(466) := 'SQLERROR';
2783: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(467) := 'STANDBY';
2784: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(468) := 'START';
2785: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(469) := 'STATE';
2786: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(470) := 'STATEMENT';

Line 2783: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(467) := 'STANDBY';

2779: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(463) := 'SQL_TRACE';
2780: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(464) := 'SQLCODE';
2781: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(465) := 'SQLERRM';
2782: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(466) := 'SQLERROR';
2783: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(467) := 'STANDBY';
2784: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(468) := 'START';
2785: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(469) := 'STATE';
2786: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(470) := 'STATEMENT';
2787: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(471) := 'STATEMENT_ID';

Line 2784: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(468) := 'START';

2780: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(464) := 'SQLCODE';
2781: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(465) := 'SQLERRM';
2782: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(466) := 'SQLERROR';
2783: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(467) := 'STANDBY';
2784: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(468) := 'START';
2785: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(469) := 'STATE';
2786: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(470) := 'STATEMENT';
2787: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(471) := 'STATEMENT_ID';
2788: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(472) := 'STATISTICS';

Line 2785: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(469) := 'STATE';

2781: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(465) := 'SQLERRM';
2782: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(466) := 'SQLERROR';
2783: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(467) := 'STANDBY';
2784: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(468) := 'START';
2785: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(469) := 'STATE';
2786: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(470) := 'STATEMENT';
2787: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(471) := 'STATEMENT_ID';
2788: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(472) := 'STATISTICS';
2789: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(473) := 'STOP';

Line 2786: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(470) := 'STATEMENT';

2782: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(466) := 'SQLERROR';
2783: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(467) := 'STANDBY';
2784: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(468) := 'START';
2785: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(469) := 'STATE';
2786: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(470) := 'STATEMENT';
2787: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(471) := 'STATEMENT_ID';
2788: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(472) := 'STATISTICS';
2789: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(473) := 'STOP';
2790: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(474) := 'STORAGE';

Line 2787: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(471) := 'STATEMENT_ID';

2783: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(467) := 'STANDBY';
2784: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(468) := 'START';
2785: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(469) := 'STATE';
2786: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(470) := 'STATEMENT';
2787: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(471) := 'STATEMENT_ID';
2788: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(472) := 'STATISTICS';
2789: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(473) := 'STOP';
2790: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(474) := 'STORAGE';
2791: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(475) := 'STORE';

Line 2788: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(472) := 'STATISTICS';

2784: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(468) := 'START';
2785: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(469) := 'STATE';
2786: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(470) := 'STATEMENT';
2787: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(471) := 'STATEMENT_ID';
2788: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(472) := 'STATISTICS';
2789: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(473) := 'STOP';
2790: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(474) := 'STORAGE';
2791: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(475) := 'STORE';
2792: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(476) := 'STRUCTURE';

Line 2789: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(473) := 'STOP';

2785: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(469) := 'STATE';
2786: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(470) := 'STATEMENT';
2787: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(471) := 'STATEMENT_ID';
2788: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(472) := 'STATISTICS';
2789: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(473) := 'STOP';
2790: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(474) := 'STORAGE';
2791: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(475) := 'STORE';
2792: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(476) := 'STRUCTURE';
2793: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(477) := 'STTDEV';

Line 2790: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(474) := 'STORAGE';

2786: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(470) := 'STATEMENT';
2787: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(471) := 'STATEMENT_ID';
2788: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(472) := 'STATISTICS';
2789: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(473) := 'STOP';
2790: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(474) := 'STORAGE';
2791: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(475) := 'STORE';
2792: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(476) := 'STRUCTURE';
2793: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(477) := 'STTDEV';
2794: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(478) := 'SUBTYPE';

Line 2791: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(475) := 'STORE';

2787: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(471) := 'STATEMENT_ID';
2788: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(472) := 'STATISTICS';
2789: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(473) := 'STOP';
2790: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(474) := 'STORAGE';
2791: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(475) := 'STORE';
2792: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(476) := 'STRUCTURE';
2793: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(477) := 'STTDEV';
2794: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(478) := 'SUBTYPE';
2795: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(479) := 'SUCCESSFUL';

Line 2792: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(476) := 'STRUCTURE';

2788: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(472) := 'STATISTICS';
2789: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(473) := 'STOP';
2790: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(474) := 'STORAGE';
2791: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(475) := 'STORE';
2792: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(476) := 'STRUCTURE';
2793: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(477) := 'STTDEV';
2794: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(478) := 'SUBTYPE';
2795: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(479) := 'SUCCESSFUL';
2796: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(480) := 'SUM';

Line 2793: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(477) := 'STTDEV';

2789: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(473) := 'STOP';
2790: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(474) := 'STORAGE';
2791: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(475) := 'STORE';
2792: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(476) := 'STRUCTURE';
2793: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(477) := 'STTDEV';
2794: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(478) := 'SUBTYPE';
2795: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(479) := 'SUCCESSFUL';
2796: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(480) := 'SUM';
2797: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(481) := 'SWITCH';

Line 2794: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(478) := 'SUBTYPE';

2790: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(474) := 'STORAGE';
2791: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(475) := 'STORE';
2792: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(476) := 'STRUCTURE';
2793: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(477) := 'STTDEV';
2794: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(478) := 'SUBTYPE';
2795: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(479) := 'SUCCESSFUL';
2796: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(480) := 'SUM';
2797: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(481) := 'SWITCH';
2798: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(482) := 'SYNONYM';

Line 2795: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(479) := 'SUCCESSFUL';

2791: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(475) := 'STORE';
2792: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(476) := 'STRUCTURE';
2793: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(477) := 'STTDEV';
2794: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(478) := 'SUBTYPE';
2795: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(479) := 'SUCCESSFUL';
2796: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(480) := 'SUM';
2797: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(481) := 'SWITCH';
2798: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(482) := 'SYNONYM';
2799: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(483) := 'SYSDATE';

Line 2796: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(480) := 'SUM';

2792: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(476) := 'STRUCTURE';
2793: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(477) := 'STTDEV';
2794: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(478) := 'SUBTYPE';
2795: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(479) := 'SUCCESSFUL';
2796: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(480) := 'SUM';
2797: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(481) := 'SWITCH';
2798: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(482) := 'SYNONYM';
2799: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(483) := 'SYSDATE';
2800: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(484) := 'SYSDBA';

Line 2797: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(481) := 'SWITCH';

2793: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(477) := 'STTDEV';
2794: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(478) := 'SUBTYPE';
2795: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(479) := 'SUCCESSFUL';
2796: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(480) := 'SUM';
2797: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(481) := 'SWITCH';
2798: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(482) := 'SYNONYM';
2799: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(483) := 'SYSDATE';
2800: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(484) := 'SYSDBA';
2801: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(485) := 'SYSOPER';

Line 2798: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(482) := 'SYNONYM';

2794: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(478) := 'SUBTYPE';
2795: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(479) := 'SUCCESSFUL';
2796: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(480) := 'SUM';
2797: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(481) := 'SWITCH';
2798: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(482) := 'SYNONYM';
2799: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(483) := 'SYSDATE';
2800: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(484) := 'SYSDBA';
2801: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(485) := 'SYSOPER';
2802: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(486) := 'SYSTEM';

Line 2799: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(483) := 'SYSDATE';

2795: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(479) := 'SUCCESSFUL';
2796: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(480) := 'SUM';
2797: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(481) := 'SWITCH';
2798: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(482) := 'SYNONYM';
2799: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(483) := 'SYSDATE';
2800: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(484) := 'SYSDBA';
2801: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(485) := 'SYSOPER';
2802: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(486) := 'SYSTEM';
2803: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(487) := 'TABAUTH';

Line 2800: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(484) := 'SYSDBA';

2796: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(480) := 'SUM';
2797: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(481) := 'SWITCH';
2798: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(482) := 'SYNONYM';
2799: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(483) := 'SYSDATE';
2800: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(484) := 'SYSDBA';
2801: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(485) := 'SYSOPER';
2802: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(486) := 'SYSTEM';
2803: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(487) := 'TABAUTH';
2804: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(488) := 'TABLE';

Line 2801: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(485) := 'SYSOPER';

2797: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(481) := 'SWITCH';
2798: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(482) := 'SYNONYM';
2799: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(483) := 'SYSDATE';
2800: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(484) := 'SYSDBA';
2801: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(485) := 'SYSOPER';
2802: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(486) := 'SYSTEM';
2803: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(487) := 'TABAUTH';
2804: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(488) := 'TABLE';
2805: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(489) := 'TABLES';

Line 2802: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(486) := 'SYSTEM';

2798: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(482) := 'SYNONYM';
2799: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(483) := 'SYSDATE';
2800: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(484) := 'SYSDBA';
2801: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(485) := 'SYSOPER';
2802: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(486) := 'SYSTEM';
2803: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(487) := 'TABAUTH';
2804: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(488) := 'TABLE';
2805: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(489) := 'TABLES';
2806: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(490) := 'TABLESPACE';

Line 2803: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(487) := 'TABAUTH';

2799: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(483) := 'SYSDATE';
2800: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(484) := 'SYSDBA';
2801: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(485) := 'SYSOPER';
2802: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(486) := 'SYSTEM';
2803: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(487) := 'TABAUTH';
2804: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(488) := 'TABLE';
2805: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(489) := 'TABLES';
2806: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(490) := 'TABLESPACE';
2807: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(491) := 'TABLESPACE_NO';

Line 2804: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(488) := 'TABLE';

2800: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(484) := 'SYSDBA';
2801: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(485) := 'SYSOPER';
2802: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(486) := 'SYSTEM';
2803: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(487) := 'TABAUTH';
2804: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(488) := 'TABLE';
2805: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(489) := 'TABLES';
2806: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(490) := 'TABLESPACE';
2807: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(491) := 'TABLESPACE_NO';
2808: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(492) := 'TABNO';

Line 2805: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(489) := 'TABLES';

2801: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(485) := 'SYSOPER';
2802: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(486) := 'SYSTEM';
2803: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(487) := 'TABAUTH';
2804: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(488) := 'TABLE';
2805: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(489) := 'TABLES';
2806: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(490) := 'TABLESPACE';
2807: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(491) := 'TABLESPACE_NO';
2808: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(492) := 'TABNO';
2809: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(493) := 'TASK';

Line 2806: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(490) := 'TABLESPACE';

2802: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(486) := 'SYSTEM';
2803: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(487) := 'TABAUTH';
2804: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(488) := 'TABLE';
2805: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(489) := 'TABLES';
2806: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(490) := 'TABLESPACE';
2807: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(491) := 'TABLESPACE_NO';
2808: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(492) := 'TABNO';
2809: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(493) := 'TASK';
2810: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(494) := 'TEMPORARY';

Line 2807: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(491) := 'TABLESPACE_NO';

2803: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(487) := 'TABAUTH';
2804: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(488) := 'TABLE';
2805: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(489) := 'TABLES';
2806: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(490) := 'TABLESPACE';
2807: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(491) := 'TABLESPACE_NO';
2808: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(492) := 'TABNO';
2809: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(493) := 'TASK';
2810: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(494) := 'TEMPORARY';
2811: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(495) := 'TERMINATE';

Line 2808: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(492) := 'TABNO';

2804: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(488) := 'TABLE';
2805: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(489) := 'TABLES';
2806: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(490) := 'TABLESPACE';
2807: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(491) := 'TABLESPACE_NO';
2808: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(492) := 'TABNO';
2809: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(493) := 'TASK';
2810: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(494) := 'TEMPORARY';
2811: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(495) := 'TERMINATE';
2812: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(496) := 'THAN';

Line 2809: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(493) := 'TASK';

2805: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(489) := 'TABLES';
2806: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(490) := 'TABLESPACE';
2807: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(491) := 'TABLESPACE_NO';
2808: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(492) := 'TABNO';
2809: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(493) := 'TASK';
2810: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(494) := 'TEMPORARY';
2811: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(495) := 'TERMINATE';
2812: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(496) := 'THAN';
2813: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(497) := 'THE';

Line 2810: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(494) := 'TEMPORARY';

2806: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(490) := 'TABLESPACE';
2807: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(491) := 'TABLESPACE_NO';
2808: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(492) := 'TABNO';
2809: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(493) := 'TASK';
2810: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(494) := 'TEMPORARY';
2811: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(495) := 'TERMINATE';
2812: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(496) := 'THAN';
2813: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(497) := 'THE';
2814: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(498) := 'THEN';

Line 2811: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(495) := 'TERMINATE';

2807: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(491) := 'TABLESPACE_NO';
2808: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(492) := 'TABNO';
2809: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(493) := 'TASK';
2810: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(494) := 'TEMPORARY';
2811: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(495) := 'TERMINATE';
2812: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(496) := 'THAN';
2813: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(497) := 'THE';
2814: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(498) := 'THEN';
2815: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(499) := 'THENTINYINT';

Line 2812: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(496) := 'THAN';

2808: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(492) := 'TABNO';
2809: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(493) := 'TASK';
2810: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(494) := 'TEMPORARY';
2811: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(495) := 'TERMINATE';
2812: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(496) := 'THAN';
2813: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(497) := 'THE';
2814: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(498) := 'THEN';
2815: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(499) := 'THENTINYINT';
2816: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(500) := 'THREAD';

Line 2813: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(497) := 'THE';

2809: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(493) := 'TASK';
2810: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(494) := 'TEMPORARY';
2811: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(495) := 'TERMINATE';
2812: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(496) := 'THAN';
2813: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(497) := 'THE';
2814: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(498) := 'THEN';
2815: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(499) := 'THENTINYINT';
2816: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(500) := 'THREAD';
2817: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(501) := 'TIME';

Line 2814: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(498) := 'THEN';

2810: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(494) := 'TEMPORARY';
2811: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(495) := 'TERMINATE';
2812: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(496) := 'THAN';
2813: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(497) := 'THE';
2814: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(498) := 'THEN';
2815: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(499) := 'THENTINYINT';
2816: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(500) := 'THREAD';
2817: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(501) := 'TIME';
2818: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(502) := 'TIMESTAMP';

Line 2815: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(499) := 'THENTINYINT';

2811: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(495) := 'TERMINATE';
2812: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(496) := 'THAN';
2813: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(497) := 'THE';
2814: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(498) := 'THEN';
2815: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(499) := 'THENTINYINT';
2816: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(500) := 'THREAD';
2817: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(501) := 'TIME';
2818: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(502) := 'TIMESTAMP';
2819: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(503) := 'TO';

Line 2816: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(500) := 'THREAD';

2812: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(496) := 'THAN';
2813: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(497) := 'THE';
2814: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(498) := 'THEN';
2815: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(499) := 'THENTINYINT';
2816: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(500) := 'THREAD';
2817: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(501) := 'TIME';
2818: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(502) := 'TIMESTAMP';
2819: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(503) := 'TO';
2820: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(504) := 'TOPLEVEL';

Line 2817: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(501) := 'TIME';

2813: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(497) := 'THE';
2814: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(498) := 'THEN';
2815: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(499) := 'THENTINYINT';
2816: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(500) := 'THREAD';
2817: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(501) := 'TIME';
2818: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(502) := 'TIMESTAMP';
2819: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(503) := 'TO';
2820: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(504) := 'TOPLEVEL';
2821: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(505) := 'TRACE';

Line 2818: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(502) := 'TIMESTAMP';

2814: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(498) := 'THEN';
2815: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(499) := 'THENTINYINT';
2816: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(500) := 'THREAD';
2817: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(501) := 'TIME';
2818: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(502) := 'TIMESTAMP';
2819: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(503) := 'TO';
2820: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(504) := 'TOPLEVEL';
2821: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(505) := 'TRACE';
2822: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(506) := 'TRACING';

Line 2819: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(503) := 'TO';

2815: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(499) := 'THENTINYINT';
2816: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(500) := 'THREAD';
2817: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(501) := 'TIME';
2818: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(502) := 'TIMESTAMP';
2819: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(503) := 'TO';
2820: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(504) := 'TOPLEVEL';
2821: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(505) := 'TRACE';
2822: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(506) := 'TRACING';
2823: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(507) := 'TRANSACTION';

Line 2820: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(504) := 'TOPLEVEL';

2816: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(500) := 'THREAD';
2817: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(501) := 'TIME';
2818: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(502) := 'TIMESTAMP';
2819: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(503) := 'TO';
2820: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(504) := 'TOPLEVEL';
2821: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(505) := 'TRACE';
2822: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(506) := 'TRACING';
2823: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(507) := 'TRANSACTION';
2824: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(508) := 'TRANSITIONAL';

Line 2821: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(505) := 'TRACE';

2817: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(501) := 'TIME';
2818: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(502) := 'TIMESTAMP';
2819: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(503) := 'TO';
2820: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(504) := 'TOPLEVEL';
2821: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(505) := 'TRACE';
2822: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(506) := 'TRACING';
2823: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(507) := 'TRANSACTION';
2824: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(508) := 'TRANSITIONAL';
2825: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(509) := 'TRIGGER';

Line 2822: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(506) := 'TRACING';

2818: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(502) := 'TIMESTAMP';
2819: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(503) := 'TO';
2820: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(504) := 'TOPLEVEL';
2821: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(505) := 'TRACE';
2822: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(506) := 'TRACING';
2823: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(507) := 'TRANSACTION';
2824: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(508) := 'TRANSITIONAL';
2825: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(509) := 'TRIGGER';
2826: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(510) := 'TRIGGERS';

Line 2823: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(507) := 'TRANSACTION';

2819: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(503) := 'TO';
2820: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(504) := 'TOPLEVEL';
2821: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(505) := 'TRACE';
2822: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(506) := 'TRACING';
2823: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(507) := 'TRANSACTION';
2824: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(508) := 'TRANSITIONAL';
2825: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(509) := 'TRIGGER';
2826: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(510) := 'TRIGGERS';
2827: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(511) := 'TRUE';

Line 2824: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(508) := 'TRANSITIONAL';

2820: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(504) := 'TOPLEVEL';
2821: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(505) := 'TRACE';
2822: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(506) := 'TRACING';
2823: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(507) := 'TRANSACTION';
2824: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(508) := 'TRANSITIONAL';
2825: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(509) := 'TRIGGER';
2826: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(510) := 'TRIGGERS';
2827: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(511) := 'TRUE';
2828: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(512) := 'TRUNCATE';

Line 2825: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(509) := 'TRIGGER';

2821: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(505) := 'TRACE';
2822: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(506) := 'TRACING';
2823: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(507) := 'TRANSACTION';
2824: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(508) := 'TRANSITIONAL';
2825: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(509) := 'TRIGGER';
2826: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(510) := 'TRIGGERS';
2827: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(511) := 'TRUE';
2828: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(512) := 'TRUNCATE';
2829: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(513) := 'TX';

Line 2826: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(510) := 'TRIGGERS';

2822: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(506) := 'TRACING';
2823: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(507) := 'TRANSACTION';
2824: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(508) := 'TRANSITIONAL';
2825: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(509) := 'TRIGGER';
2826: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(510) := 'TRIGGERS';
2827: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(511) := 'TRUE';
2828: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(512) := 'TRUNCATE';
2829: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(513) := 'TX';
2830: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(514) := 'TYPE';

Line 2827: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(511) := 'TRUE';

2823: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(507) := 'TRANSACTION';
2824: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(508) := 'TRANSITIONAL';
2825: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(509) := 'TRIGGER';
2826: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(510) := 'TRIGGERS';
2827: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(511) := 'TRUE';
2828: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(512) := 'TRUNCATE';
2829: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(513) := 'TX';
2830: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(514) := 'TYPE';
2831: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(515) := 'UBA';

Line 2828: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(512) := 'TRUNCATE';

2824: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(508) := 'TRANSITIONAL';
2825: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(509) := 'TRIGGER';
2826: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(510) := 'TRIGGERS';
2827: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(511) := 'TRUE';
2828: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(512) := 'TRUNCATE';
2829: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(513) := 'TX';
2830: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(514) := 'TYPE';
2831: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(515) := 'UBA';
2832: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(516) := 'UID';

Line 2829: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(513) := 'TX';

2825: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(509) := 'TRIGGER';
2826: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(510) := 'TRIGGERS';
2827: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(511) := 'TRUE';
2828: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(512) := 'TRUNCATE';
2829: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(513) := 'TX';
2830: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(514) := 'TYPE';
2831: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(515) := 'UBA';
2832: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(516) := 'UID';
2833: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(517) := 'UNARCHIVED';

Line 2830: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(514) := 'TYPE';

2826: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(510) := 'TRIGGERS';
2827: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(511) := 'TRUE';
2828: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(512) := 'TRUNCATE';
2829: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(513) := 'TX';
2830: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(514) := 'TYPE';
2831: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(515) := 'UBA';
2832: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(516) := 'UID';
2833: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(517) := 'UNARCHIVED';
2834: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(518) := 'UNDER';

Line 2831: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(515) := 'UBA';

2827: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(511) := 'TRUE';
2828: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(512) := 'TRUNCATE';
2829: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(513) := 'TX';
2830: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(514) := 'TYPE';
2831: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(515) := 'UBA';
2832: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(516) := 'UID';
2833: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(517) := 'UNARCHIVED';
2834: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(518) := 'UNDER';
2835: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(519) := 'UNDO';

Line 2832: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(516) := 'UID';

2828: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(512) := 'TRUNCATE';
2829: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(513) := 'TX';
2830: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(514) := 'TYPE';
2831: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(515) := 'UBA';
2832: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(516) := 'UID';
2833: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(517) := 'UNARCHIVED';
2834: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(518) := 'UNDER';
2835: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(519) := 'UNDO';
2836: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(520) := 'UNION';

Line 2833: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(517) := 'UNARCHIVED';

2829: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(513) := 'TX';
2830: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(514) := 'TYPE';
2831: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(515) := 'UBA';
2832: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(516) := 'UID';
2833: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(517) := 'UNARCHIVED';
2834: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(518) := 'UNDER';
2835: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(519) := 'UNDO';
2836: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(520) := 'UNION';
2837: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(521) := 'UNIQUE';

Line 2834: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(518) := 'UNDER';

2830: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(514) := 'TYPE';
2831: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(515) := 'UBA';
2832: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(516) := 'UID';
2833: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(517) := 'UNARCHIVED';
2834: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(518) := 'UNDER';
2835: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(519) := 'UNDO';
2836: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(520) := 'UNION';
2837: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(521) := 'UNIQUE';
2838: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(522) := 'UNLIMITED';

Line 2835: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(519) := 'UNDO';

2831: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(515) := 'UBA';
2832: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(516) := 'UID';
2833: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(517) := 'UNARCHIVED';
2834: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(518) := 'UNDER';
2835: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(519) := 'UNDO';
2836: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(520) := 'UNION';
2837: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(521) := 'UNIQUE';
2838: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(522) := 'UNLIMITED';
2839: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(523) := 'UNLOCK';

Line 2836: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(520) := 'UNION';

2832: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(516) := 'UID';
2833: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(517) := 'UNARCHIVED';
2834: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(518) := 'UNDER';
2835: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(519) := 'UNDO';
2836: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(520) := 'UNION';
2837: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(521) := 'UNIQUE';
2838: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(522) := 'UNLIMITED';
2839: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(523) := 'UNLOCK';
2840: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(524) := 'UNRECOVERABLE';

Line 2837: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(521) := 'UNIQUE';

2833: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(517) := 'UNARCHIVED';
2834: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(518) := 'UNDER';
2835: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(519) := 'UNDO';
2836: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(520) := 'UNION';
2837: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(521) := 'UNIQUE';
2838: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(522) := 'UNLIMITED';
2839: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(523) := 'UNLOCK';
2840: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(524) := 'UNRECOVERABLE';
2841: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(525) := 'UNTIL';

Line 2838: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(522) := 'UNLIMITED';

2834: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(518) := 'UNDER';
2835: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(519) := 'UNDO';
2836: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(520) := 'UNION';
2837: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(521) := 'UNIQUE';
2838: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(522) := 'UNLIMITED';
2839: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(523) := 'UNLOCK';
2840: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(524) := 'UNRECOVERABLE';
2841: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(525) := 'UNTIL';
2842: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(526) := 'UNUSABLE';

Line 2839: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(523) := 'UNLOCK';

2835: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(519) := 'UNDO';
2836: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(520) := 'UNION';
2837: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(521) := 'UNIQUE';
2838: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(522) := 'UNLIMITED';
2839: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(523) := 'UNLOCK';
2840: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(524) := 'UNRECOVERABLE';
2841: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(525) := 'UNTIL';
2842: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(526) := 'UNUSABLE';
2843: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(527) := 'UNUSED';

Line 2840: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(524) := 'UNRECOVERABLE';

2836: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(520) := 'UNION';
2837: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(521) := 'UNIQUE';
2838: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(522) := 'UNLIMITED';
2839: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(523) := 'UNLOCK';
2840: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(524) := 'UNRECOVERABLE';
2841: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(525) := 'UNTIL';
2842: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(526) := 'UNUSABLE';
2843: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(527) := 'UNUSED';
2844: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(528) := 'UPDATABLE';

Line 2841: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(525) := 'UNTIL';

2837: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(521) := 'UNIQUE';
2838: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(522) := 'UNLIMITED';
2839: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(523) := 'UNLOCK';
2840: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(524) := 'UNRECOVERABLE';
2841: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(525) := 'UNTIL';
2842: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(526) := 'UNUSABLE';
2843: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(527) := 'UNUSED';
2844: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(528) := 'UPDATABLE';
2845: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(529) := 'UPDATE';

Line 2842: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(526) := 'UNUSABLE';

2838: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(522) := 'UNLIMITED';
2839: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(523) := 'UNLOCK';
2840: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(524) := 'UNRECOVERABLE';
2841: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(525) := 'UNTIL';
2842: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(526) := 'UNUSABLE';
2843: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(527) := 'UNUSED';
2844: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(528) := 'UPDATABLE';
2845: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(529) := 'UPDATE';
2846: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(530) := 'USAGE';

Line 2843: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(527) := 'UNUSED';

2839: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(523) := 'UNLOCK';
2840: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(524) := 'UNRECOVERABLE';
2841: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(525) := 'UNTIL';
2842: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(526) := 'UNUSABLE';
2843: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(527) := 'UNUSED';
2844: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(528) := 'UPDATABLE';
2845: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(529) := 'UPDATE';
2846: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(530) := 'USAGE';
2847: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(531) := 'USE';

Line 2844: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(528) := 'UPDATABLE';

2840: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(524) := 'UNRECOVERABLE';
2841: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(525) := 'UNTIL';
2842: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(526) := 'UNUSABLE';
2843: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(527) := 'UNUSED';
2844: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(528) := 'UPDATABLE';
2845: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(529) := 'UPDATE';
2846: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(530) := 'USAGE';
2847: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(531) := 'USE';
2848: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(532) := 'USER';

Line 2845: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(529) := 'UPDATE';

2841: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(525) := 'UNTIL';
2842: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(526) := 'UNUSABLE';
2843: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(527) := 'UNUSED';
2844: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(528) := 'UPDATABLE';
2845: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(529) := 'UPDATE';
2846: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(530) := 'USAGE';
2847: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(531) := 'USE';
2848: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(532) := 'USER';
2849: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(533) := 'USING';

Line 2846: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(530) := 'USAGE';

2842: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(526) := 'UNUSABLE';
2843: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(527) := 'UNUSED';
2844: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(528) := 'UPDATABLE';
2845: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(529) := 'UPDATE';
2846: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(530) := 'USAGE';
2847: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(531) := 'USE';
2848: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(532) := 'USER';
2849: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(533) := 'USING';
2850: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(534) := 'VALIDATE';

Line 2847: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(531) := 'USE';

2843: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(527) := 'UNUSED';
2844: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(528) := 'UPDATABLE';
2845: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(529) := 'UPDATE';
2846: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(530) := 'USAGE';
2847: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(531) := 'USE';
2848: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(532) := 'USER';
2849: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(533) := 'USING';
2850: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(534) := 'VALIDATE';
2851: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(535) := 'VALIDATION';

Line 2848: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(532) := 'USER';

2844: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(528) := 'UPDATABLE';
2845: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(529) := 'UPDATE';
2846: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(530) := 'USAGE';
2847: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(531) := 'USE';
2848: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(532) := 'USER';
2849: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(533) := 'USING';
2850: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(534) := 'VALIDATE';
2851: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(535) := 'VALIDATION';
2852: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(536) := 'VALUE';

Line 2849: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(533) := 'USING';

2845: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(529) := 'UPDATE';
2846: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(530) := 'USAGE';
2847: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(531) := 'USE';
2848: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(532) := 'USER';
2849: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(533) := 'USING';
2850: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(534) := 'VALIDATE';
2851: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(535) := 'VALIDATION';
2852: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(536) := 'VALUE';
2853: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(537) := 'VALUES';

Line 2850: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(534) := 'VALIDATE';

2846: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(530) := 'USAGE';
2847: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(531) := 'USE';
2848: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(532) := 'USER';
2849: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(533) := 'USING';
2850: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(534) := 'VALIDATE';
2851: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(535) := 'VALIDATION';
2852: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(536) := 'VALUE';
2853: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(537) := 'VALUES';
2854: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(538) := 'VARBINARY';

Line 2851: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(535) := 'VALIDATION';

2847: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(531) := 'USE';
2848: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(532) := 'USER';
2849: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(533) := 'USING';
2850: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(534) := 'VALIDATE';
2851: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(535) := 'VALIDATION';
2852: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(536) := 'VALUE';
2853: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(537) := 'VALUES';
2854: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(538) := 'VARBINARY';
2855: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(539) := 'VARCHAR';

Line 2852: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(536) := 'VALUE';

2848: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(532) := 'USER';
2849: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(533) := 'USING';
2850: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(534) := 'VALIDATE';
2851: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(535) := 'VALIDATION';
2852: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(536) := 'VALUE';
2853: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(537) := 'VALUES';
2854: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(538) := 'VARBINARY';
2855: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(539) := 'VARCHAR';
2856: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(540) := 'VARCHAR2';

Line 2853: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(537) := 'VALUES';

2849: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(533) := 'USING';
2850: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(534) := 'VALIDATE';
2851: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(535) := 'VALIDATION';
2852: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(536) := 'VALUE';
2853: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(537) := 'VALUES';
2854: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(538) := 'VARBINARY';
2855: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(539) := 'VARCHAR';
2856: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(540) := 'VARCHAR2';
2857: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(541) := 'VARIANCE';

Line 2854: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(538) := 'VARBINARY';

2850: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(534) := 'VALIDATE';
2851: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(535) := 'VALIDATION';
2852: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(536) := 'VALUE';
2853: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(537) := 'VALUES';
2854: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(538) := 'VARBINARY';
2855: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(539) := 'VARCHAR';
2856: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(540) := 'VARCHAR2';
2857: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(541) := 'VARIANCE';
2858: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(542) := 'VARRAY';

Line 2855: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(539) := 'VARCHAR';

2851: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(535) := 'VALIDATION';
2852: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(536) := 'VALUE';
2853: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(537) := 'VALUES';
2854: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(538) := 'VARBINARY';
2855: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(539) := 'VARCHAR';
2856: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(540) := 'VARCHAR2';
2857: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(541) := 'VARIANCE';
2858: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(542) := 'VARRAY';
2859: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(543) := 'VARYING';

Line 2856: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(540) := 'VARCHAR2';

2852: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(536) := 'VALUE';
2853: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(537) := 'VALUES';
2854: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(538) := 'VARBINARY';
2855: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(539) := 'VARCHAR';
2856: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(540) := 'VARCHAR2';
2857: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(541) := 'VARIANCE';
2858: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(542) := 'VARRAY';
2859: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(543) := 'VARYING';
2860: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(544) := 'VIEW';

Line 2857: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(541) := 'VARIANCE';

2853: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(537) := 'VALUES';
2854: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(538) := 'VARBINARY';
2855: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(539) := 'VARCHAR';
2856: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(540) := 'VARCHAR2';
2857: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(541) := 'VARIANCE';
2858: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(542) := 'VARRAY';
2859: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(543) := 'VARYING';
2860: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(544) := 'VIEW';
2861: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(545) := 'VIEWS';

Line 2858: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(542) := 'VARRAY';

2854: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(538) := 'VARBINARY';
2855: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(539) := 'VARCHAR';
2856: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(540) := 'VARCHAR2';
2857: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(541) := 'VARIANCE';
2858: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(542) := 'VARRAY';
2859: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(543) := 'VARYING';
2860: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(544) := 'VIEW';
2861: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(545) := 'VIEWS';
2862: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(546) := 'WHEN';

Line 2859: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(543) := 'VARYING';

2855: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(539) := 'VARCHAR';
2856: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(540) := 'VARCHAR2';
2857: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(541) := 'VARIANCE';
2858: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(542) := 'VARRAY';
2859: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(543) := 'VARYING';
2860: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(544) := 'VIEW';
2861: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(545) := 'VIEWS';
2862: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(546) := 'WHEN';
2863: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(547) := 'WHENEVER';

Line 2860: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(544) := 'VIEW';

2856: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(540) := 'VARCHAR2';
2857: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(541) := 'VARIANCE';
2858: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(542) := 'VARRAY';
2859: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(543) := 'VARYING';
2860: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(544) := 'VIEW';
2861: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(545) := 'VIEWS';
2862: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(546) := 'WHEN';
2863: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(547) := 'WHENEVER';
2864: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(548) := 'WHERE';

Line 2861: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(545) := 'VIEWS';

2857: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(541) := 'VARIANCE';
2858: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(542) := 'VARRAY';
2859: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(543) := 'VARYING';
2860: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(544) := 'VIEW';
2861: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(545) := 'VIEWS';
2862: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(546) := 'WHEN';
2863: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(547) := 'WHENEVER';
2864: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(548) := 'WHERE';
2865: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(549) := 'WHILE';

Line 2862: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(546) := 'WHEN';

2858: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(542) := 'VARRAY';
2859: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(543) := 'VARYING';
2860: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(544) := 'VIEW';
2861: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(545) := 'VIEWS';
2862: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(546) := 'WHEN';
2863: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(547) := 'WHENEVER';
2864: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(548) := 'WHERE';
2865: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(549) := 'WHILE';
2866: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(550) := 'WITH';

Line 2863: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(547) := 'WHENEVER';

2859: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(543) := 'VARYING';
2860: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(544) := 'VIEW';
2861: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(545) := 'VIEWS';
2862: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(546) := 'WHEN';
2863: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(547) := 'WHENEVER';
2864: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(548) := 'WHERE';
2865: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(549) := 'WHILE';
2866: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(550) := 'WITH';
2867: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(551) := 'WITHOUT';

Line 2864: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(548) := 'WHERE';

2860: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(544) := 'VIEW';
2861: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(545) := 'VIEWS';
2862: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(546) := 'WHEN';
2863: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(547) := 'WHENEVER';
2864: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(548) := 'WHERE';
2865: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(549) := 'WHILE';
2866: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(550) := 'WITH';
2867: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(551) := 'WITHOUT';
2868: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(552) := 'WORK';

Line 2865: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(549) := 'WHILE';

2861: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(545) := 'VIEWS';
2862: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(546) := 'WHEN';
2863: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(547) := 'WHENEVER';
2864: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(548) := 'WHERE';
2865: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(549) := 'WHILE';
2866: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(550) := 'WITH';
2867: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(551) := 'WITHOUT';
2868: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(552) := 'WORK';
2869: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(553) := 'WRITE';

Line 2866: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(550) := 'WITH';

2862: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(546) := 'WHEN';
2863: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(547) := 'WHENEVER';
2864: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(548) := 'WHERE';
2865: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(549) := 'WHILE';
2866: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(550) := 'WITH';
2867: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(551) := 'WITHOUT';
2868: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(552) := 'WORK';
2869: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(553) := 'WRITE';
2870: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(554) := 'XID';

Line 2867: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(551) := 'WITHOUT';

2863: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(547) := 'WHENEVER';
2864: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(548) := 'WHERE';
2865: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(549) := 'WHILE';
2866: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(550) := 'WITH';
2867: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(551) := 'WITHOUT';
2868: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(552) := 'WORK';
2869: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(553) := 'WRITE';
2870: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(554) := 'XID';
2871: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(555) := 'XOR';

Line 2868: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(552) := 'WORK';

2864: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(548) := 'WHERE';
2865: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(549) := 'WHILE';
2866: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(550) := 'WITH';
2867: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(551) := 'WITHOUT';
2868: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(552) := 'WORK';
2869: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(553) := 'WRITE';
2870: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(554) := 'XID';
2871: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(555) := 'XOR';
2872:

Line 2869: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(553) := 'WRITE';

2865: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(549) := 'WHILE';
2866: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(550) := 'WITH';
2867: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(551) := 'WITHOUT';
2868: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(552) := 'WORK';
2869: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(553) := 'WRITE';
2870: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(554) := 'XID';
2871: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(555) := 'XOR';
2872:
2873: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN

Line 2870: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(554) := 'XID';

2866: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(550) := 'WITH';
2867: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(551) := 'WITHOUT';
2868: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(552) := 'WORK';
2869: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(553) := 'WRITE';
2870: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(554) := 'XID';
2871: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(555) := 'XOR';
2872:
2873: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
2874: BSC_MO_HELPER_PKG.writeTmp('Completed InitArrReservedWords', FND_LOG.LEVEL_PROCEDURE);

Line 2871: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(555) := 'XOR';

2867: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(551) := 'WITHOUT';
2868: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(552) := 'WORK';
2869: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(553) := 'WRITE';
2870: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(554) := 'XID';
2871: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(555) := 'XOR';
2872:
2873: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
2874: BSC_MO_HELPER_PKG.writeTmp('Completed InitArrReservedWords', FND_LOG.LEVEL_PROCEDURE);
2875: END IF;

Line 2873: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN

2869: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(553) := 'WRITE';
2870: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(554) := 'XID';
2871: BSC_METADATA_OPTIMIZER_PKG.gArrReservedWords(555) := 'XOR';
2872:
2873: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
2874: BSC_MO_HELPER_PKG.writeTmp('Completed InitArrReservedWords', FND_LOG.LEVEL_PROCEDURE);
2875: END IF;
2876:
2877: End;

Line 2892: FieldLOV BSC_METADATA_OPTIMIZER_PKG.clsMeasureLOV;

2888: --***************************************************************************
2889: PROCEDURE InitLOV IS
2890:
2891: l_stmt varchar2(1000);
2892: FieldLOV BSC_METADATA_OPTIMIZER_PKG.clsMeasureLOV;
2893: --BSC-PMF Integration: It is not necessary to filter out PMF measures
2894: --because in BSC_DB_MEASURE_COLS_VL are only BSC measures
2895: --CURSOR c1 IS
2896: --SELECT MEASURE_COL, HELP, MEASURE_GROUP_ID, PROJECTION_ID, NVL(MEASURE_TYPE, 1) MTYPE

Line 2928: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN

2924:
2925: cRow c1%ROWTYPE;
2926:
2927: BEGIN
2928: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
2929: BSC_MO_HELPER_PKG.writeTmp('Inside InitLOV', FND_LOG.LEVEL_PROCEDURE);
2930: END IF;
2931: OPEN c1;
2932: LOOP

Line 2953: BSC_METADATA_OPTIMIZER_PKG.gLOV(BSC_METADATA_OPTIMIZER_PKG.gLOV.Count) := FieldLOV;

2949: FieldLOV.prjMethod := 0; --no projection
2950: END IF;
2951: FieldLOV.measureType := cRow.MTYPE;
2952: --BSC autogen
2953: BSC_METADATA_OPTIMIZER_PKG.gLOV(BSC_METADATA_OPTIMIZER_PKG.gLOV.Count) := FieldLOV;
2954: END Loop;
2955: CLOSE c1;
2956: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
2957: BSC_MO_HELPER_PKG.writeTmp('Completed InitLOV', FND_LOG.LEVEL_PROCEDURE);

Line 2956: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN

2952: --BSC autogen
2953: BSC_METADATA_OPTIMIZER_PKG.gLOV(BSC_METADATA_OPTIMIZER_PKG.gLOV.Count) := FieldLOV;
2954: END Loop;
2955: CLOSE c1;
2956: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
2957: BSC_MO_HELPER_PKG.writeTmp('Completed InitLOV', FND_LOG.LEVEL_PROCEDURE);
2958: END IF;
2959: return;
2960: exception when others then

Line 2999: If Variable=BSC_METADATA_OPTIMIZER_PKG.IMPL_TYPE AND BSC_METADATA_OPTIMIZER_PKG.g_BSC_MV =false Then

2995: FETCH cProperty INTO l_temp;
2996: CLOSE cProperty;
2997:
2998: -- if its not MV, ignore AW's IMPLEMENTATION_TYPE value, override it with 1
2999: If Variable=BSC_METADATA_OPTIMIZER_PKG.IMPL_TYPE AND BSC_METADATA_OPTIMIZER_PKG.g_BSC_MV =false Then
3000: l_temp := 1;
3001: END IF;
3002:
3003: IF l_temp is not null THEN

Line 3048: DELETE FROM BSC_TMP_BIG_IN_COND WHERE SESSION_ID = bsc_metadata_optimizer_pkg.g_session_id AND VARIABLE_ID = x_variable_id;

3044: l_error VARCHAR2(2000);
3045: BEGIN
3046:
3047:
3048: DELETE FROM BSC_TMP_BIG_IN_COND WHERE SESSION_ID = bsc_metadata_optimizer_pkg.g_session_id AND VARIABLE_ID = x_variable_id;
3049:
3050: l_cond := x_column_name || ' IN (' ||
3051: ' SELECT VALUE_N FROM BSC_TMP_BIG_IN_COND WHERE SESSION_ID = '||bsc_metadata_optimizer_pkg.g_session_id||
3052: ' AND VARIABLE_ID = ' || x_variable_id || ')';

Line 3051: ' SELECT VALUE_N FROM BSC_TMP_BIG_IN_COND WHERE SESSION_ID = '||bsc_metadata_optimizer_pkg.g_session_id||

3047:
3048: DELETE FROM BSC_TMP_BIG_IN_COND WHERE SESSION_ID = bsc_metadata_optimizer_pkg.g_session_id AND VARIABLE_ID = x_variable_id;
3049:
3050: l_cond := x_column_name || ' IN (' ||
3051: ' SELECT VALUE_N FROM BSC_TMP_BIG_IN_COND WHERE SESSION_ID = '||bsc_metadata_optimizer_pkg.g_session_id||
3052: ' AND VARIABLE_ID = ' || x_variable_id || ')';
3053:
3054: return l_cond;
3055: EXCEPTION WHEN OTHERS THEN

Line 3070: (bsc_metadata_optimizer_pkg.g_session_id, x_variable_id, x_value(i));

3066: END IF;
3067: FORALL i IN x_value.first..x_value.last
3068: INSERT INTO BSC_TMP_BIG_IN_COND(session_id, variable_id, value_n)
3069: VALUES
3070: (bsc_metadata_optimizer_pkg.g_session_id, x_variable_id, x_value(i));
3071: exception when others then
3072: writeTmp('exception in add_value_bulk for number table', FND_LOG.LEVEL_EXCEPTION, true);
3073: raise;
3074: END;

Line 3085: (bsc_metadata_optimizer_pkg.g_session_id, x_variable_id, x_value(i));

3081: END IF;
3082: FORALL i IN x_value.first..x_value.last
3083: INSERT INTO BSC_TMP_BIG_IN_COND(session_id, variable_id, value_v)
3084: VALUES
3085: (bsc_metadata_optimizer_pkg.g_session_id, x_variable_id, x_value(i));
3086: exception when others then
3087: writeTmp('exception in add_value_bulk for varchar2 table', FND_LOG.LEVEL_EXCEPTION, true);
3088: raise;
3089: END;

Line 3124: DELETE FROM BSC_TMP_BIG_IN_COND WHERE SESSION_ID = bsc_metadata_optimizer_pkg.g_session_id AND VARIABLE_ID = x_variable_id;

3120: l_stmt varchar2(300);
3121: cond varchar2(1000);
3122: l_error varchar2(1000);
3123: BEGIN
3124: DELETE FROM BSC_TMP_BIG_IN_COND WHERE SESSION_ID = bsc_metadata_optimizer_pkg.g_session_id AND VARIABLE_ID = x_variable_id;
3125: cond := 'UPPER('|| x_column_name || ') IN ('||
3126: ' SELECT UPPER(VALUE_V) FROM BSC_TMP_BIG_IN_COND WHERE SESSION_ID = '||bsc_metadata_optimizer_pkg.g_session_id
3127: ||' AND VARIABLE_ID = '||x_variable_id||')';
3128: return cond;

Line 3126: ' SELECT UPPER(VALUE_V) FROM BSC_TMP_BIG_IN_COND WHERE SESSION_ID = '||bsc_metadata_optimizer_pkg.g_session_id

3122: l_error varchar2(1000);
3123: BEGIN
3124: DELETE FROM BSC_TMP_BIG_IN_COND WHERE SESSION_ID = bsc_metadata_optimizer_pkg.g_session_id AND VARIABLE_ID = x_variable_id;
3125: cond := 'UPPER('|| x_column_name || ') IN ('||
3126: ' SELECT UPPER(VALUE_V) FROM BSC_TMP_BIG_IN_COND WHERE SESSION_ID = '||bsc_metadata_optimizer_pkg.g_session_id
3127: ||' AND VARIABLE_ID = '||x_variable_id||')';
3128: return cond;
3129: EXCEPTION WHEN OTHERS THEN
3130: l_error := sqlerrm;

Line 3185: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN

3181: l_test number;
3182:
3183: l_arr_tables dbms_sql.varchar2_table;
3184: BEGIN
3185: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
3186: writeTmp( 'Inside InsertRelatedTables, numTables='||numTables, fnd_log.level_procedure, false);
3187: END IF;
3188: writeTmp('Insert related tables, tables are ', fnd_log.level_statement, false);
3189: write_this(arrNewTables, fnd_log.level_statement, false);

Line 3214: If Not SearchStringExists(BSC_METADATA_OPTIMIZER_PKG.garrTables, BSC_METADATA_OPTIMIZER_PKG.gnumTables, l_table) Then

3210: OPEN cv FOR l_stmt;
3211: LOOP
3212: FETCH cv INTO l_table;
3213: EXIT WHEN cv%NOTFOUND;
3214: If Not SearchStringExists(BSC_METADATA_OPTIMIZER_PKG.garrTables, BSC_METADATA_OPTIMIZER_PKG.gnumTables, l_table) Then
3215: BSC_METADATA_OPTIMIZER_PKG.garrTables(BSC_METADATA_OPTIMIZER_PKG.gnumTables) := l_table;
3216: BSC_METADATA_OPTIMIZER_PKG.gnumTables := BSC_METADATA_OPTIMIZER_PKG.gnumTables + 1;
3217: arrNewTables(numNewTables) := l_table;
3218: numNewTables := numNewTables + 1;

Line 3215: BSC_METADATA_OPTIMIZER_PKG.garrTables(BSC_METADATA_OPTIMIZER_PKG.gnumTables) := l_table;

3211: LOOP
3212: FETCH cv INTO l_table;
3213: EXIT WHEN cv%NOTFOUND;
3214: If Not SearchStringExists(BSC_METADATA_OPTIMIZER_PKG.garrTables, BSC_METADATA_OPTIMIZER_PKG.gnumTables, l_table) Then
3215: BSC_METADATA_OPTIMIZER_PKG.garrTables(BSC_METADATA_OPTIMIZER_PKG.gnumTables) := l_table;
3216: BSC_METADATA_OPTIMIZER_PKG.gnumTables := BSC_METADATA_OPTIMIZER_PKG.gnumTables + 1;
3217: arrNewTables(numNewTables) := l_table;
3218: numNewTables := numNewTables + 1;
3219: --Add_Value_Big_In_Cond_Varchar2 (3, l_table);

Line 3216: BSC_METADATA_OPTIMIZER_PKG.gnumTables := BSC_METADATA_OPTIMIZER_PKG.gnumTables + 1;

3212: FETCH cv INTO l_table;
3213: EXIT WHEN cv%NOTFOUND;
3214: If Not SearchStringExists(BSC_METADATA_OPTIMIZER_PKG.garrTables, BSC_METADATA_OPTIMIZER_PKG.gnumTables, l_table) Then
3215: BSC_METADATA_OPTIMIZER_PKG.garrTables(BSC_METADATA_OPTIMIZER_PKG.gnumTables) := l_table;
3216: BSC_METADATA_OPTIMIZER_PKG.gnumTables := BSC_METADATA_OPTIMIZER_PKG.gnumTables + 1;
3217: arrNewTables(numNewTables) := l_table;
3218: numNewTables := numNewTables + 1;
3219: --Add_Value_Big_In_Cond_Varchar2 (3, l_table);
3220: End If;

Line 3225: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN

3221: END LOOP;
3222: Close cv;
3223: --Add_value_Bulk(3, arrNewTables);
3224: l_test := numNewTables;
3225: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
3226: writeTmp('No. of new children = '|| numNewTables);
3227: END IF;
3228: --insert the parents
3229: l_stmt := 'SELECT SOURCE_TABLE_NAME FROM BSC_DB_TABLES_RELS WHERE '|| strWhereInParentTables;

Line 3237: If Not searchStringExists(BSC_METADATA_OPTIMIZER_PKG.garrTables, BSC_METADATA_OPTIMIZER_PKG.gnumTables, l_table) Then

3233: FETCH cv BULK COLLECT INTO l_arr_tables;
3234: CLOSE cv;
3235: FOR i IN 1..l_arr_tables.count LOOP
3236: l_table := l_arr_tables(i);
3237: If Not searchStringExists(BSC_METADATA_OPTIMIZER_PKG.garrTables, BSC_METADATA_OPTIMIZER_PKG.gnumTables, l_table) Then
3238: BSC_METADATA_OPTIMIZER_PKG.garrTables(BSC_METADATA_OPTIMIZER_PKG.gnumTables) := l_table;
3239: BSC_METADATA_OPTIMIZER_PKG.gnumTables := BSC_METADATA_OPTIMIZER_PKG.gnumTables + 1;
3240: arrNewTables(numNewTables) := l_table;
3241: numNewTables := numNewTables + 1;

Line 3238: BSC_METADATA_OPTIMIZER_PKG.garrTables(BSC_METADATA_OPTIMIZER_PKG.gnumTables) := l_table;

3234: CLOSE cv;
3235: FOR i IN 1..l_arr_tables.count LOOP
3236: l_table := l_arr_tables(i);
3237: If Not searchStringExists(BSC_METADATA_OPTIMIZER_PKG.garrTables, BSC_METADATA_OPTIMIZER_PKG.gnumTables, l_table) Then
3238: BSC_METADATA_OPTIMIZER_PKG.garrTables(BSC_METADATA_OPTIMIZER_PKG.gnumTables) := l_table;
3239: BSC_METADATA_OPTIMIZER_PKG.gnumTables := BSC_METADATA_OPTIMIZER_PKG.gnumTables + 1;
3240: arrNewTables(numNewTables) := l_table;
3241: numNewTables := numNewTables + 1;
3242: End If;

Line 3239: BSC_METADATA_OPTIMIZER_PKG.gnumTables := BSC_METADATA_OPTIMIZER_PKG.gnumTables + 1;

3235: FOR i IN 1..l_arr_tables.count LOOP
3236: l_table := l_arr_tables(i);
3237: If Not searchStringExists(BSC_METADATA_OPTIMIZER_PKG.garrTables, BSC_METADATA_OPTIMIZER_PKG.gnumTables, l_table) Then
3238: BSC_METADATA_OPTIMIZER_PKG.garrTables(BSC_METADATA_OPTIMIZER_PKG.gnumTables) := l_table;
3239: BSC_METADATA_OPTIMIZER_PKG.gnumTables := BSC_METADATA_OPTIMIZER_PKG.gnumTables + 1;
3240: arrNewTables(numNewTables) := l_table;
3241: numNewTables := numNewTables + 1;
3242: End If;
3243: END LOOP;

Line 3245: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN

3241: numNewTables := numNewTables + 1;
3242: End If;
3243: END LOOP;
3244:
3245: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
3246: writeTmp('No. of new parents = '|| (numNewTables-l_test));
3247: END IF;
3248: Add_Value_Bulk(3, arrNewTables);
3249:

Line 3261: l_stmt := 'SELECT TABLE_NAME FROM '||BSC_METADATA_OPTIMIZER_PKG.g_kpi_tmp_table||' WHERE INDICATOR IN (

3257: --BSC-MV Note: We are going to use BSC_KPI_DATA_TABLES in all the code.
3258: --EDW logic is not used and need to be reviewd in the future.
3259:
3260: strWhereNotInNewTables := 'NOT (' || strWhereInNewTables || ')';
3261: l_stmt := 'SELECT TABLE_NAME FROM '||BSC_METADATA_OPTIMIZER_PKG.g_kpi_tmp_table||' WHERE INDICATOR IN (
3262: SELECT INDICATOR FROM '||BSC_METADATA_OPTIMIZER_PKG.g_kpi_tmp_table||' WHERE '|| strWhereInNewTables||')
3263: AND '|| strWhereNotInNewTables ||' AND TABLE_NAME IS NOT NULL ';
3264: l_stmt := replace(l_stmt, 'UPPER(TABLE_NAME)', 'TABLE_NAME');
3265: l_stmt := replace(l_stmt, 'UPPER(VALUE_V)', 'VALUE_V');

Line 3262: SELECT INDICATOR FROM '||BSC_METADATA_OPTIMIZER_PKG.g_kpi_tmp_table||' WHERE '|| strWhereInNewTables||')

3258: --EDW logic is not used and need to be reviewd in the future.
3259:
3260: strWhereNotInNewTables := 'NOT (' || strWhereInNewTables || ')';
3261: l_stmt := 'SELECT TABLE_NAME FROM '||BSC_METADATA_OPTIMIZER_PKG.g_kpi_tmp_table||' WHERE INDICATOR IN (
3262: SELECT INDICATOR FROM '||BSC_METADATA_OPTIMIZER_PKG.g_kpi_tmp_table||' WHERE '|| strWhereInNewTables||')
3263: AND '|| strWhereNotInNewTables ||' AND TABLE_NAME IS NOT NULL ';
3264: l_stmt := replace(l_stmt, 'UPPER(TABLE_NAME)', 'TABLE_NAME');
3265: l_stmt := replace(l_stmt, 'UPPER(VALUE_V)', 'VALUE_V');
3266: OPEN cv FOR l_stmt;

Line 3271: If Not searchStringExists(BSC_METADATA_OPTIMIZER_PKG.garrTables, BSC_METADATA_OPTIMIZER_PKG.gnumTables, l_table) Then

3267: FETCH cv BULK COLLECT INTO l_arr_tables;
3268: CLOSE cv;
3269: FOR i in 1..l_arr_tables.count LOOP
3270: l_table := l_arr_tables(i);
3271: If Not searchStringExists(BSC_METADATA_OPTIMIZER_PKG.garrTables, BSC_METADATA_OPTIMIZER_PKG.gnumTables, l_table) Then
3272: BSC_METADATA_OPTIMIZER_PKG.garrTables(BSC_METADATA_OPTIMIZER_PKG.gnumTables) := l_table;
3273: BSC_METADATA_OPTIMIZER_PKG.gnumTables := BSC_METADATA_OPTIMIZER_PKG.gnumTables + 1;
3274: arrNewTables(numNewTables) := l_table;
3275: numNewTables := numNewTables + 1;

Line 3272: BSC_METADATA_OPTIMIZER_PKG.garrTables(BSC_METADATA_OPTIMIZER_PKG.gnumTables) := l_table;

3268: CLOSE cv;
3269: FOR i in 1..l_arr_tables.count LOOP
3270: l_table := l_arr_tables(i);
3271: If Not searchStringExists(BSC_METADATA_OPTIMIZER_PKG.garrTables, BSC_METADATA_OPTIMIZER_PKG.gnumTables, l_table) Then
3272: BSC_METADATA_OPTIMIZER_PKG.garrTables(BSC_METADATA_OPTIMIZER_PKG.gnumTables) := l_table;
3273: BSC_METADATA_OPTIMIZER_PKG.gnumTables := BSC_METADATA_OPTIMIZER_PKG.gnumTables + 1;
3274: arrNewTables(numNewTables) := l_table;
3275: numNewTables := numNewTables + 1;
3276: End If;

Line 3273: BSC_METADATA_OPTIMIZER_PKG.gnumTables := BSC_METADATA_OPTIMIZER_PKG.gnumTables + 1;

3269: FOR i in 1..l_arr_tables.count LOOP
3270: l_table := l_arr_tables(i);
3271: If Not searchStringExists(BSC_METADATA_OPTIMIZER_PKG.garrTables, BSC_METADATA_OPTIMIZER_PKG.gnumTables, l_table) Then
3272: BSC_METADATA_OPTIMIZER_PKG.garrTables(BSC_METADATA_OPTIMIZER_PKG.gnumTables) := l_table;
3273: BSC_METADATA_OPTIMIZER_PKG.gnumTables := BSC_METADATA_OPTIMIZER_PKG.gnumTables + 1;
3274: arrNewTables(numNewTables) := l_table;
3275: numNewTables := numNewTables + 1;
3276: End If;
3277: END Loop;

Line 3282: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN

3278: InsertRelatedTables (arrNewTables, numNewTables);
3279: End If;
3280: End If;
3281:
3282: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
3283: writeTmp( 'Compl. InsertRelatedTables', fnd_log.level_procedure, false);
3284: END IF;
3285:
3286:

Line 3311: PROCEDURE AddIndicator(collIndicadores IN OUT NOCOPY BSC_METADATA_OPTIMIZER_PKG.tab_clsIndicator, p_Code NUMBER,

3307: -- OptimizationMode: 0- pre-calculated, 1- standard, 2-benchamarks at diff level.
3308: -- AUTHOR/DATE - MODIFICATIONS (AUTHOR/DATE/DESCRIPTION):
3309: --***************************************************************************
3310:
3311: PROCEDURE AddIndicator(collIndicadores IN OUT NOCOPY BSC_METADATA_OPTIMIZER_PKG.tab_clsIndicator, p_Code NUMBER,
3312: p_Name varchar2, p_indicatorType NUMBER, p_configType NUMBER,
3313: p_per_inter NUMBER, p_optMode NUMBER, p_action_flag NUMBER,
3314: p_share_flag NUMBER, p_src_ind NUMBER, p_edw_flag NUMBER,
3315: p_impl_type NUMBER) IS

Line 3316: Indic BSC_METADATA_OPTIMIZER_PKG.clsIndicator;

3312: p_Name varchar2, p_indicatorType NUMBER, p_configType NUMBER,
3313: p_per_inter NUMBER, p_optMode NUMBER, p_action_flag NUMBER,
3314: p_share_flag NUMBER, p_src_ind NUMBER, p_edw_flag NUMBER,
3315: p_impl_type NUMBER) IS
3316: Indic BSC_METADATA_OPTIMIZER_PKG.clsIndicator;
3317: l_error varchar2(1000);
3318: BEGIN
3319:
3320: Indic.Code := p_code;

Line 3369: EXIT WHEN i = BSC_METADATA_OPTIMIZER_PKG.gNumReservedOperators;

3365: cExpresion := Expresion;
3366: --Replace the operators by ' '
3367: i := 0;
3368: LOOP
3369: EXIT WHEN i = BSC_METADATA_OPTIMIZER_PKG.gNumReservedOperators;
3370: cExpresion := replace(cExpresion, BSC_METADATA_OPTIMIZER_PKG.gReservedOperators(i), ' ');
3371: i:= i +1;
3372: END LOOP;
3373:

Line 3370: cExpresion := replace(cExpresion, BSC_METADATA_OPTIMIZER_PKG.gReservedOperators(i), ' ');

3366: --Replace the operators by ' '
3367: i := 0;
3368: LOOP
3369: EXIT WHEN i = BSC_METADATA_OPTIMIZER_PKG.gNumReservedOperators;
3370: cExpresion := replace(cExpresion, BSC_METADATA_OPTIMIZER_PKG.gReservedOperators(i), ' ');
3371: i:= i +1;
3372: END LOOP;
3373:
3374: --Break down the expression which is separated by ' '

Line 3383: IF FindIndexVARCHAR2(BSC_METADATA_OPTIMIZER_PKG.gReservedFunctions, Fields(i)) = -1 THEN

3379: i:=0;
3380: LOOP
3381: EXIT WHEN i= NumFields;
3382: IF fields(i) IS NOT NULL THEN
3383: IF FindIndexVARCHAR2(BSC_METADATA_OPTIMIZER_PKG.gReservedFunctions, Fields(i)) = -1 THEN
3384: --The word fields(i) is not a reserved function
3385: IF UPPER(Fields(i)) <> 'NULL' THEN
3386: --the word is not 'NULL'
3387: IF Not IsNumber(Fields(i)) THEN

Line 3441: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN

3437: l_error varchar2(4000);
3438: l_stack VARCHAR2(32000);
3439: l_indicator NUMBER;
3440: BEGIN
3441: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
3442: writeTmp('Inside MarkIndicsForNonStrucChanges', FND_LOG.LEVEL_PROCEDURE);
3443: END IF;
3444: IF BSC_METADATA_OPTIMIZER_PKG.gnumIndics4 <= 0 THEN
3445: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN

Line 3444: IF BSC_METADATA_OPTIMIZER_PKG.gnumIndics4 <= 0 THEN

3440: BEGIN
3441: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
3442: writeTmp('Inside MarkIndicsForNonStrucChanges', FND_LOG.LEVEL_PROCEDURE);
3443: END IF;
3444: IF BSC_METADATA_OPTIMIZER_PKG.gnumIndics4 <= 0 THEN
3445: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
3446: writeTmp('Completed MarkIndicsForNonStrucChanges, count was 0', FND_LOG.LEVEL_PROCEDURE);
3447: END IF;
3448: return;

Line 3445: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN

3441: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
3442: writeTmp('Inside MarkIndicsForNonStrucChanges', FND_LOG.LEVEL_PROCEDURE);
3443: END IF;
3444: IF BSC_METADATA_OPTIMIZER_PKG.gnumIndics4 <= 0 THEN
3445: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
3446: writeTmp('Completed MarkIndicsForNonStrucChanges, count was 0', FND_LOG.LEVEL_PROCEDURE);
3447: END IF;
3448: return;
3449: END IF;

Line 3456: EXIT WHEN i=BSC_METADATA_OPTIMIZER_PKG.gnumIndics4;

3452: numMeasures := 0;
3453: strWhereInIndics := Get_New_Big_In_Cond_Number(9, 'I.INDICATOR');
3454: /*i:= 0;
3455: LOOP
3456: EXIT WHEN i=BSC_METADATA_OPTIMIZER_PKG.gnumIndics4;
3457: Add_Value_Big_In_Cond_Number( 9, BSC_METADATA_OPTIMIZER_PKG.garrIndics4(i));
3458: i:=i+1;
3459: END LOOP;*/
3460:

Line 3457: Add_Value_Big_In_Cond_Number( 9, BSC_METADATA_OPTIMIZER_PKG.garrIndics4(i));

3453: strWhereInIndics := Get_New_Big_In_Cond_Number(9, 'I.INDICATOR');
3454: /*i:= 0;
3455: LOOP
3456: EXIT WHEN i=BSC_METADATA_OPTIMIZER_PKG.gnumIndics4;
3457: Add_Value_Big_In_Cond_Number( 9, BSC_METADATA_OPTIMIZER_PKG.garrIndics4(i));
3458: i:=i+1;
3459: END LOOP;*/
3460:
3461: Add_value_BULK(9, BSC_METADATA_OPTIMIZER_PKG.garrIndics4);

Line 3461: Add_value_BULK(9, BSC_METADATA_OPTIMIZER_PKG.garrIndics4);

3457: Add_Value_Big_In_Cond_Number( 9, BSC_METADATA_OPTIMIZER_PKG.garrIndics4(i));
3458: i:=i+1;
3459: END LOOP;*/
3460:
3461: Add_value_BULK(9, BSC_METADATA_OPTIMIZER_PKG.garrIndics4);
3462: l_stmt := 'SELECT DISTINCT M.MEASURE_COL, M.SOURCE, M.MEASURE_ID FROM BSC_SYS_MEASURES M, '||
3463: BSC_METADATA_OPTIMIZER_PKG.g_dbmeasure_tmp_table||' I
3464: WHERE I.MEASURE_ID = M.MEASURE_ID AND ('|| strWhereInIndics ||' )
3465: AND M.TYPE = 0';

Line 3463: BSC_METADATA_OPTIMIZER_PKG.g_dbmeasure_tmp_table||' I

3459: END LOOP;*/
3460:
3461: Add_value_BULK(9, BSC_METADATA_OPTIMIZER_PKG.garrIndics4);
3462: l_stmt := 'SELECT DISTINCT M.MEASURE_COL, M.SOURCE, M.MEASURE_ID FROM BSC_SYS_MEASURES M, '||
3463: BSC_METADATA_OPTIMIZER_PKG.g_dbmeasure_tmp_table||' I
3464: WHERE I.MEASURE_ID = M.MEASURE_ID AND ('|| strWhereInIndics ||' )
3465: AND M.TYPE = 0';
3466: OPEN cv FOR l_stmt;
3467: l_stack := l_stack ||' Going to execute l_stmt = '||l_stmt;

Line 3468: l_stack := l_stack || newline||bsc_metadata_optimizer_pkg.gIndent;

3464: WHERE I.MEASURE_ID = M.MEASURE_ID AND ('|| strWhereInIndics ||' )
3465: AND M.TYPE = 0';
3466: OPEN cv FOR l_stmt;
3467: l_stack := l_stack ||' Going to execute l_stmt = '||l_stmt;
3468: l_stack := l_stack || newline||bsc_metadata_optimizer_pkg.gIndent;
3469: LOOP
3470: FETCH cv INTO l_measureCol, l_source, l_measureID;
3471: EXIT when cv%NOTFOUND;
3472: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN

Line 3472: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN

3468: l_stack := l_stack || newline||bsc_metadata_optimizer_pkg.gIndent;
3469: LOOP
3470: FETCH cv INTO l_measureCol, l_source, l_measureID;
3471: EXIT when cv%NOTFOUND;
3472: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
3473: writeTmp('Measure = '||l_measureCol, FND_LOG.LEVEL_PROCEDURE);
3474: END IF;
3475: arrMeasuresCols(numMeasures) := l_measureCol;
3476: arrMeasures_src(numMeasures) := l_source;

Line 3481: l_stack := l_stack ||' Check 1' ||newline||bsc_metadata_optimizer_pkg.gIndent;

3477: numMeasures := numMeasures + 1;
3478: arrRelatedMeasuresIds(arrRelatedMeasuresIds.count) := l_measureID;
3479: END Loop;
3480: CLOSE cv;
3481: l_stack := l_stack ||' Check 1' ||newline||bsc_metadata_optimizer_pkg.gIndent;
3482: /*The measures in the array arrMeasuresCols are the ones that could be changed
3483: For that reason the indicators were flaged to 4
3484: We need to see in all system measures if there is a formula using that measure.
3485: IF that happen we need to add that measure. Any kpi using that meaure should be flaged too.*/

Line 3488: ||BSC_METADATA_OPTIMIZER_PKG.g_dbmeasure_tmp_table||

3484: We need to see in all system measures if there is a formula using that measure.
3485: IF that happen we need to add that measure. Any kpi using that meaure should be flaged too.*/
3486: strWhereNotInIndics := ' NOT ( ' || strWhereInIndics || ')';
3487: l_stmt := 'SELECT DISTINCT M.MEASURE_ID, M.MEASURE_COL FROM BSC_SYS_MEASURES M, '
3488: ||BSC_METADATA_OPTIMIZER_PKG.g_dbmeasure_tmp_table||
3489: ' I WHERE I.MEASURE_ID = M.MEASURE_ID
3490: AND ('|| strWhereNotInIndics ||' )
3491: AND M.TYPE = 0 ';
3492: OPEN cv FOR l_stmt ;

Line 3512: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN

3508: END LOOP;
3509: END Loop;
3510: CLOSE cv;
3511: l_stack := l_stack ||' Check 3, arrRelatedMeasuresIds.count = '|| arrRelatedMeasuresIds.count;
3512: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
3513: writeTmp(' arrRelatedMeasuresIds.count = '||arrRelatedMeasuresIds.count);
3514: END IF;
3515: --Now we need to add to garrIndics4() all the indicators using any of the measures
3516: --in arrRelatedMeasuresIds()

Line 3543: LAST_UPDATED_BY = BSC_METADATA_OPTIMIZER_PKG.gUserId,

3539: -- PMD does not update the related indicators
3540: l_stack := l_stack ||newline||'going to update...';
3541: UPDATE BSC_KPIS_B
3542: SET PROTOTYPE_FLAG = DECODE(PROTOTYPE_FLAG, 2, 2, 3, 3, 4),
3543: LAST_UPDATED_BY = BSC_METADATA_OPTIMIZER_PKG.gUserId,
3544: LAST_UPDATE_DATE = SYSDATE
3545: WHERE INDICATOR = l_indicator
3546: AND prototype_flag not in (2,3);
3547: IF (SQL%rowcount>0) THEN

Line 3558: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN

3554: END Loop;
3555: CLOSE cv;
3556: l_stack := l_stack ||' Check 5 ';
3557: END IF;
3558: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
3559: writeTmp('Completed MarkIndicsForNonStrucChanges', FND_LOG.LEVEL_PROCEDURE);
3560: END IF;
3561: EXCEPTION WHEN OTHERS THEN
3562: l_error := sqlerrm;

Line 3742: l_table_name VARCHAR2(100) := bsc_metadata_optimizer_pkg.g_period_circ_check ;

3738: END;
3739:
3740: PROCEDURE insert_per(p_periodicity IN NUMBER, p_origin IN VARCHAR2) IS
3741: l_origin_list DBMS_SQL.NUMBER_TABLE;
3742: l_table_name VARCHAR2(100) := bsc_metadata_optimizer_pkg.g_period_circ_check ;
3743: l_stmt VARCHAR2(1000) := 'INSERT INTO '||l_table_name||'(periodicity, source) values (:1, :2)';
3744: l_index NUMBER;
3745: BEGIN
3746: l_origin_list := decomposeStringtoNumber(p_origin, ',');

Line 3747: BSC_METADATA_OPTIMIZER_PKG.logProgress('INIT', 'p_origin='||p_origin||', l_origin_list.count='||l_origin_list.count);

3743: l_stmt VARCHAR2(1000) := 'INSERT INTO '||l_table_name||'(periodicity, source) values (:1, :2)';
3744: l_index NUMBER;
3745: BEGIN
3746: l_origin_list := decomposeStringtoNumber(p_origin, ',');
3747: BSC_METADATA_OPTIMIZER_PKG.logProgress('INIT', 'p_origin='||p_origin||', l_origin_list.count='||l_origin_list.count);
3748: if (l_origin_list.count>0) then
3749: forall i in l_origin_list.first..l_origin_list.last
3750: execute immediate l_stmt USING p_periodicity, l_origin_list(i);
3751: end if;

Line 3758: l_table_name VARCHAR2(100) := bsc_metadata_optimizer_pkg.g_period_circ_check ;

3754: raise;
3755: END;
3756:
3757: PROCEDURE check_circular_dependency IS
3758: l_table_name VARCHAR2(100) := bsc_metadata_optimizer_pkg.g_period_circ_check ;
3759: l_stmt VARCHAR2(1000) := 'CREATE TABLE '||l_table_name||'(periodicity NUMBER, source NUMBER)';
3760: --modified for bug 6052711
3761: -- we should check for all existing periodicities in the system. Because in
3762: -- Initialize_periodicities we initialize array for all the periodicities in the system

Line 3772: BSC_METADATA_OPTIMIZER_PKG.logProgress('INIT', 'Inside check_circular_dependency');

3768: cv CurTyp;
3769: l_temp NUMBER;
3770:
3771: BEGIN
3772: BSC_METADATA_OPTIMIZER_PKG.logProgress('INIT', 'Inside check_circular_dependency');
3773: dropTable(l_table_name);
3774: IF BSC_METADATA_OPTIMIZER_PKG.gSummaryTableTbsName is NULL THEN
3775: InitTablespaceNames;
3776: END IF;

Line 3774: IF BSC_METADATA_OPTIMIZER_PKG.gSummaryTableTbsName is NULL THEN

3770:
3771: BEGIN
3772: BSC_METADATA_OPTIMIZER_PKG.logProgress('INIT', 'Inside check_circular_dependency');
3773: dropTable(l_table_name);
3774: IF BSC_METADATA_OPTIMIZER_PKG.gSummaryTableTbsName is NULL THEN
3775: InitTablespaceNames;
3776: END IF;
3777: l_stmt := l_stmt ||' TABLESPACE '|| BSC_METADATA_OPTIMIZER_PKG.gSummaryTableTbsName||' '|| BSC_METADATA_OPTIMIZER_PKG.gStorageClause;
3778: Do_DDL(l_stmt, ad_ddl.create_table, l_table_name);

Line 3777: l_stmt := l_stmt ||' TABLESPACE '|| BSC_METADATA_OPTIMIZER_PKG.gSummaryTableTbsName||' '|| BSC_METADATA_OPTIMIZER_PKG.gStorageClause;

3773: dropTable(l_table_name);
3774: IF BSC_METADATA_OPTIMIZER_PKG.gSummaryTableTbsName is NULL THEN
3775: InitTablespaceNames;
3776: END IF;
3777: l_stmt := l_stmt ||' TABLESPACE '|| BSC_METADATA_OPTIMIZER_PKG.gSummaryTableTbsName||' '|| BSC_METADATA_OPTIMIZER_PKG.gStorageClause;
3778: Do_DDL(l_stmt, ad_ddl.create_table, l_table_name);
3779: OPEN cPeriods;
3780: LOOP
3781: FETCH cPeriods INTO cPeriodRow;

Line 3803: BSC_METADATA_OPTIMIZER_PKG.logprogress('ERROR', 'Ciruclar dependency for periodicity_id = '||cPeriodRow.PERIODICITY_ID);

3799: END LOOP;
3800: CLOSE cv;
3801: EXCEPTION WHEN OTHERS THEN
3802: --IF (SQLCODE = -01436) THEN
3803: BSC_METADATA_OPTIMIZER_PKG.logprogress('ERROR', 'Ciruclar dependency for periodicity_id = '||cPeriodRow.PERIODICITY_ID);
3804: writeTmp('Ciruclar dependency for periodicity_id = '||cPeriodRow.PERIODICITY_ID, FND_LOG.LEVEL_EXCEPTION, true);
3805: terminateWithMsg('Ciruclar dependency for periodicity_id = '||cPeriodRow.PERIODICITY_ID);
3806: --END IF;
3807: raise;

Line 3812: BSC_METADATA_OPTIMIZER_PKG.logProgress('INIT', 'Completed check_circular_dependency');

3808: END ;
3809: END LOOP;
3810: CLOSE cPeriods;
3811: dropTable(l_table_name);
3812: BSC_METADATA_OPTIMIZER_PKG.logProgress('INIT', 'Completed check_circular_dependency');
3813: exception when others then
3814: writeTmp('Exception in check_circular_dependency:'||sqlerrm, FND_LOG.LEVEL_EXCEPTION, true);
3815: raise;
3816: END;

Line 3833: L_Periodicity BSC_METADATA_OPTIMIZER_PKG.clsPeriodicity;

3829: --****************************************************************************
3830:
3831: PROCEDURE InitializePeriodicities IS
3832:
3833: L_Periodicity BSC_METADATA_OPTIMIZER_PKG.clsPeriodicity;
3834: PerOri NUMBER;
3835: Origen VARCHAR2(1000);
3836: arrPerOri DBMS_SQL.VARCHAR2_TABLE;
3837: NumPerOri NUMBER;

Line 3881: BSC_METADATA_OPTIMIZER_PKG.gPeriodicities(BSC_METADATA_OPTIMIZER_PKG.gPeriodicities.count) := L_Periodicity;

3877: L_Periodicity.Yearly_Flag := cPeriodRow.YEARLY_FLAG;
3878: L_Periodicity.CalendarID := cPeriodRow.CALENDAR_ID;
3879: L_Periodicity.PeriodicityType := cPeriodRow.PERIODICITY_TYPE;
3880: L_Periodicity.periodicityOrigin := cPeriodRow.SOURCE ;
3881: BSC_METADATA_OPTIMIZER_PKG.gPeriodicities(BSC_METADATA_OPTIMIZER_PKG.gPeriodicities.count) := L_Periodicity;
3882: END LOOP;
3883: CLOSE cPeriods;
3884:
3885: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN

Line 3885: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN

3881: BSC_METADATA_OPTIMIZER_PKG.gPeriodicities(BSC_METADATA_OPTIMIZER_PKG.gPeriodicities.count) := L_Periodicity;
3882: END LOOP;
3883: CLOSE cPeriods;
3884:
3885: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
3886: bsc_mo_helper_pkg.writeTmp('# Periodicities = '||BSC_METADATA_OPTIMIZER_PKG.gPeriodicities.count);
3887: bsc_mo_helper_pkg.write_this(BSC_METADATA_OPTIMIZER_PKG.gPeriodicities);
3888: END IF;
3889:

Line 3886: bsc_mo_helper_pkg.writeTmp('# Periodicities = '||BSC_METADATA_OPTIMIZER_PKG.gPeriodicities.count);

3882: END LOOP;
3883: CLOSE cPeriods;
3884:
3885: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
3886: bsc_mo_helper_pkg.writeTmp('# Periodicities = '||BSC_METADATA_OPTIMIZER_PKG.gPeriodicities.count);
3887: bsc_mo_helper_pkg.write_this(BSC_METADATA_OPTIMIZER_PKG.gPeriodicities);
3888: END IF;
3889:
3890:

Line 3887: bsc_mo_helper_pkg.write_this(BSC_METADATA_OPTIMIZER_PKG.gPeriodicities);

3883: CLOSE cPeriods;
3884:
3885: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
3886: bsc_mo_helper_pkg.writeTmp('# Periodicities = '||BSC_METADATA_OPTIMIZER_PKG.gPeriodicities.count);
3887: bsc_mo_helper_pkg.write_this(BSC_METADATA_OPTIMIZER_PKG.gPeriodicities);
3888: END IF;
3889:
3890:
3891: --Completes the source of periodicities. For example

Line 3896: WHILE (numPerSourceCompleted < BSC_METADATA_OPTIMIZER_PKG.gPeriodicities.Count) LOOP

3892: --if periodicity A can be calculated from B and B can be calculated from C then
3893: --A also can be calculated from C
3894:
3895: numPerSourceCompleted := 0;
3896: WHILE (numPerSourceCompleted < BSC_METADATA_OPTIMIZER_PKG.gPeriodicities.Count) LOOP
3897: l_seconds := (sysdate - l_time) *86400;
3898: l_index := BSC_METADATA_OPTIMIZER_PKG.gPeriodicities.first;
3899: LOOP
3900: EXIT WHEN BSC_METADATA_OPTIMIZER_PKG.gPeriodicities.count = 0;

Line 3898: l_index := BSC_METADATA_OPTIMIZER_PKG.gPeriodicities.first;

3894:
3895: numPerSourceCompleted := 0;
3896: WHILE (numPerSourceCompleted < BSC_METADATA_OPTIMIZER_PKG.gPeriodicities.Count) LOOP
3897: l_seconds := (sysdate - l_time) *86400;
3898: l_index := BSC_METADATA_OPTIMIZER_PKG.gPeriodicities.first;
3899: LOOP
3900: EXIT WHEN BSC_METADATA_OPTIMIZER_PKG.gPeriodicities.count = 0;
3901: L_Periodicity := BSC_METADATA_OPTIMIZER_PKG.gPeriodicities(l_index);
3902: If Not SearchNumberExists(arrPerSourceCompleted, numPerSourceCompleted, L_Periodicity.Code) Then

Line 3900: EXIT WHEN BSC_METADATA_OPTIMIZER_PKG.gPeriodicities.count = 0;

3896: WHILE (numPerSourceCompleted < BSC_METADATA_OPTIMIZER_PKG.gPeriodicities.Count) LOOP
3897: l_seconds := (sysdate - l_time) *86400;
3898: l_index := BSC_METADATA_OPTIMIZER_PKG.gPeriodicities.first;
3899: LOOP
3900: EXIT WHEN BSC_METADATA_OPTIMIZER_PKG.gPeriodicities.count = 0;
3901: L_Periodicity := BSC_METADATA_OPTIMIZER_PKG.gPeriodicities(l_index);
3902: If Not SearchNumberExists(arrPerSourceCompleted, numPerSourceCompleted, L_Periodicity.Code) Then
3903: --We have not completed the sources of this periodicity
3904: --Check that all the source periodicities are completed

Line 3901: L_Periodicity := BSC_METADATA_OPTIMIZER_PKG.gPeriodicities(l_index);

3897: l_seconds := (sysdate - l_time) *86400;
3898: l_index := BSC_METADATA_OPTIMIZER_PKG.gPeriodicities.first;
3899: LOOP
3900: EXIT WHEN BSC_METADATA_OPTIMIZER_PKG.gPeriodicities.count = 0;
3901: L_Periodicity := BSC_METADATA_OPTIMIZER_PKG.gPeriodicities(l_index);
3902: If Not SearchNumberExists(arrPerSourceCompleted, numPerSourceCompleted, L_Periodicity.Code) Then
3903: --We have not completed the sources of this periodicity
3904: --Check that all the source periodicities are completed
3905: if (mod(l_seconds, 100)=0 ) then -- more than 100 secs

Line 3909: BSC_METADATA_OPTIMIZER_PKG.logProgress('INIT', 'Spent '||l_seconds ||' seconds inside InitializePeriodicities, periodicity w/o source = '||L_Periodicity.Code);

3905: if (mod(l_seconds, 100)=0 ) then -- more than 100 secs
3906: if (l_seconds <> l_prev_counter) then
3907: writetmp('Spent '||l_seconds ||' seconds inside InitializePeriodicities, periodicity w/o source = '||L_Periodicity.Code);
3908: l_prev_counter := l_seconds;
3909: BSC_METADATA_OPTIMIZER_PKG.logProgress('INIT', 'Spent '||l_seconds ||' seconds inside InitializePeriodicities, periodicity w/o source = '||L_Periodicity.Code);
3910: l_too_long:=true;
3911: end if;
3912: end if;
3913: allSourcesCompleted := True;

Line 3922: if findIndex(BSC_METADATA_OPTIMIZER_PKG.gPeriodicities, PerOri)=-1 then

3918: PerOri := l_origin_list(l_origin_index);
3919: If Not searchNumberExists(arrPerSourceCompleted, numPerSourceCompleted, PerOri) Then
3920: --This periodicity is not complete
3921: allSourcesCompleted := False;
3922: if findIndex(BSC_METADATA_OPTIMIZER_PKG.gPeriodicities, PerOri)=-1 then
3923: terminateWithMsg('Periodicity id '||L_Periodicity.Code||' has invalid source periodicity='||PerOri);
3924: raise bsc_metadata_optimizer_pkg.optimizer_exception;
3925: return; -- Mark as error in CP status
3926: end if;

Line 3924: raise bsc_metadata_optimizer_pkg.optimizer_exception;

3920: --This periodicity is not complete
3921: allSourcesCompleted := False;
3922: if findIndex(BSC_METADATA_OPTIMIZER_PKG.gPeriodicities, PerOri)=-1 then
3923: terminateWithMsg('Periodicity id '||L_Periodicity.Code||' has invalid source periodicity='||PerOri);
3924: raise bsc_metadata_optimizer_pkg.optimizer_exception;
3925: return; -- Mark as error in CP status
3926: end if;
3927: if(l_too_long) then
3928: bsc_metadata_optimizer_pkg.logProgress('ERROR?', 'Periodicity id='||L_Periodicity.Code||', origin ='||PerOri||' not completed');

Line 3928: bsc_metadata_optimizer_pkg.logProgress('ERROR?', 'Periodicity id='||L_Periodicity.Code||', origin ='||PerOri||' not completed');

3924: raise bsc_metadata_optimizer_pkg.optimizer_exception;
3925: return; -- Mark as error in CP status
3926: end if;
3927: if(l_too_long) then
3928: bsc_metadata_optimizer_pkg.logProgress('ERROR?', 'Periodicity id='||L_Periodicity.Code||', origin ='||PerOri||' not completed');
3929: end if;
3930: Exit;
3931: End If;
3932: EXIT WHEN l_origin_index = l_origin_list.last;

Line 3943: l_src_origin_index := findIndex(BSC_METADATA_OPTIMIZER_PKG.gPeriodicities, PerOri);

3939: l_origin_index := l_origin_list.first;
3940: LOOP
3941: EXIT WHEN l_origin_list.count= 0;
3942: PerOri := l_origin_list(l_origin_index);
3943: l_src_origin_index := findIndex(BSC_METADATA_OPTIMIZER_PKG.gPeriodicities, PerOri);
3944: l_src_origin_list := getDecomposedString(BSC_METADATA_OPTIMIZER_PKG.gPeriodicities(l_src_origin_index).periodicityOrigin, ',');
3945: l_src_origin_index := l_src_origin_list.first;
3946:
3947: LOOP

Line 3944: l_src_origin_list := getDecomposedString(BSC_METADATA_OPTIMIZER_PKG.gPeriodicities(l_src_origin_index).periodicityOrigin, ',');

3940: LOOP
3941: EXIT WHEN l_origin_list.count= 0;
3942: PerOri := l_origin_list(l_origin_index);
3943: l_src_origin_index := findIndex(BSC_METADATA_OPTIMIZER_PKG.gPeriodicities, PerOri);
3944: l_src_origin_list := getDecomposedString(BSC_METADATA_OPTIMIZER_PKG.gPeriodicities(l_src_origin_index).periodicityOrigin, ',');
3945: l_src_origin_index := l_src_origin_list.first;
3946:
3947: LOOP
3948: EXIT WHEN l_src_origin_list.count = 0;

Line 3953: BSC_METADATA_OPTIMIZER_PKG.gPeriodicities(l_index).periodicityOrigin :=

3949: srcPerOri := l_src_origin_list(l_src_origin_index);
3950: If instr(L_Periodicity.PeriodicityOrigin, to_char(srcPerOri)) = 0 Then
3951: --The source periodicity is not already in the list of sources
3952: newPerOri := srcPerOri;
3953: BSC_METADATA_OPTIMIZER_PKG.gPeriodicities(l_index).periodicityOrigin :=
3954: BSC_METADATA_OPTIMIZER_PKG.gPeriodicities(l_index).periodicityOrigin||','||newPerOri;
3955: End If;
3956: EXIT WHEN l_src_origin_index = l_src_origin_list.last;
3957: l_src_origin_index := l_src_origin_list.next(l_src_origin_index);

Line 3954: BSC_METADATA_OPTIMIZER_PKG.gPeriodicities(l_index).periodicityOrigin||','||newPerOri;

3950: If instr(L_Periodicity.PeriodicityOrigin, to_char(srcPerOri)) = 0 Then
3951: --The source periodicity is not already in the list of sources
3952: newPerOri := srcPerOri;
3953: BSC_METADATA_OPTIMIZER_PKG.gPeriodicities(l_index).periodicityOrigin :=
3954: BSC_METADATA_OPTIMIZER_PKG.gPeriodicities(l_index).periodicityOrigin||','||newPerOri;
3955: End If;
3956: EXIT WHEN l_src_origin_index = l_src_origin_list.last;
3957: l_src_origin_index := l_src_origin_list.next(l_src_origin_index);
3958: END LOOP;

Line 3968: EXIT WHEN l_index = BSC_METADATA_OPTIMIZER_PKG.gPeriodicities.last;

3964: arrPerSourceCompleted(numPerSourceCompleted) := L_Periodicity.Code;
3965: numPerSourceCompleted := numPerSourceCompleted + 1;
3966: End If; --allSourcesCompleted
3967: End If;
3968: EXIT WHEN l_index = BSC_METADATA_OPTIMIZER_PKG.gPeriodicities.last;
3969: l_index := BSC_METADATA_OPTIMIZER_PKG.gPeriodicities.next(l_index);
3970: END LOOP;
3971: END LOOP;
3972:

Line 3969: l_index := BSC_METADATA_OPTIMIZER_PKG.gPeriodicities.next(l_index);

3965: numPerSourceCompleted := numPerSourceCompleted + 1;
3966: End If; --allSourcesCompleted
3967: End If;
3968: EXIT WHEN l_index = BSC_METADATA_OPTIMIZER_PKG.gPeriodicities.last;
3969: l_index := BSC_METADATA_OPTIMIZER_PKG.gPeriodicities.next(l_index);
3970: END LOOP;
3971: END LOOP;
3972:
3973: EXCEPTION WHEN OTHERS THEN

Line 4015: l_calendar BSC_METADATA_OPTIMIZER_PKG.clsCalendar;

4011: BSC_SYS_CALENDARS_VL B;
4012:
4013: cRow cCal%ROWTYPE;
4014: l_count NUMBER := 0;
4015: l_calendar BSC_METADATA_OPTIMIZER_PKG.clsCalendar;
4016: l_error VARCHAR2(400);
4017: BEGIN
4018: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
4019: writeTmp( 'Inside InitializeCalendars');--commit;

Line 4018: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN

4014: l_count NUMBER := 0;
4015: l_calendar BSC_METADATA_OPTIMIZER_PKG.clsCalendar;
4016: l_error VARCHAR2(400);
4017: BEGIN
4018: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
4019: writeTmp( 'Inside InitializeCalendars');--commit;
4020: END IF;
4021:
4022: open cCal;

Line 4041: BSC_METADATA_OPTIMIZER_PKG.gCalendars(l_count) := l_calendar;

4037: l_calendar.Source := 'PMF';
4038: Else
4039: l_calendar.Source := 'BSC';
4040: End If;
4041: BSC_METADATA_OPTIMIZER_PKG.gCalendars(l_count) := l_calendar;
4042: l_count := l_count+1;
4043: END LOOP;
4044: CLOSE cCal;
4045: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN

Line 4045: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN

4041: BSC_METADATA_OPTIMIZER_PKG.gCalendars(l_count) := l_calendar;
4042: l_count := l_count+1;
4043: END LOOP;
4044: CLOSE cCal;
4045: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
4046: writeTmp( 'Completed InitializeCalendars');
4047: END IF;
4048:
4049:

Line 4067: SELECT VALUE_V FROM BSC_TMP_BIG_IN_COND WHERE SESSION_ID = bsc_metadata_optimizer_pkg.g_session_id

4063: CURSOR cStoITables IS
4064: select distinct source_table_name from bsc_db_tables_rels
4065: connect by table_name = prior source_table_name
4066: start with table_name in (
4067: SELECT VALUE_V FROM BSC_TMP_BIG_IN_COND WHERE SESSION_ID = bsc_metadata_optimizer_pkg.g_session_id
4068: AND VARIABLE_ID = p_variable_id);
4069: lTable VARCHAR2(100);
4070: BEGIN
4071: OPEN cStoITables;

Line 4128: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN

4124: l_dontDropTables VARCHAR2(1000);
4125: l_DropTables VARCHAR2(1000);
4126: l_varchar2_table dbms_sql.varchar2_table;
4127: BEGIN
4128: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
4129: writeTmp( 'Inside MarkTablesForSelectedKPIs', FND_LOG.LEVEL_PROCEDURE, false);
4130: END IF;
4131:
4132: --Initialize the array garrTables the tables used by the indicators in the array garrIndics()

Line 4138: BSC_METADATA_OPTIMIZER_PKG.gnumTables := 0;

4134: --In BSC_KPI_DATA_TABLES, Metadata Optimizer is storing the name of the view (Example: BSC_3001_0_0_5_V)
4135: --and the name of the S table for BSC Kpis (Example: BSC_3002_0_0_5)
4136: --In this procedure we need to get tables names from a view BSC_KPI_DATA_TABLES_V.
4137:
4138: BSC_METADATA_OPTIMIZER_PKG.gnumTables := 0;
4139: BSC_METADATA_OPTIMIZER_PKG.garrTables.delete;
4140:
4141: IF BSC_METADATA_OPTIMIZER_PKG.gnumIndics > 0 THEN
4142: strWhereInIndics := Get_New_Big_In_Cond_Number( 20, 'INDICATOR');

Line 4139: BSC_METADATA_OPTIMIZER_PKG.garrTables.delete;

4135: --and the name of the S table for BSC Kpis (Example: BSC_3002_0_0_5)
4136: --In this procedure we need to get tables names from a view BSC_KPI_DATA_TABLES_V.
4137:
4138: BSC_METADATA_OPTIMIZER_PKG.gnumTables := 0;
4139: BSC_METADATA_OPTIMIZER_PKG.garrTables.delete;
4140:
4141: IF BSC_METADATA_OPTIMIZER_PKG.gnumIndics > 0 THEN
4142: strWhereInIndics := Get_New_Big_In_Cond_Number( 20, 'INDICATOR');
4143: strWhereNotInIndics := null;

Line 4141: IF BSC_METADATA_OPTIMIZER_PKG.gnumIndics > 0 THEN

4137:
4138: BSC_METADATA_OPTIMIZER_PKG.gnumTables := 0;
4139: BSC_METADATA_OPTIMIZER_PKG.garrTables.delete;
4140:
4141: IF BSC_METADATA_OPTIMIZER_PKG.gnumIndics > 0 THEN
4142: strWhereInIndics := Get_New_Big_In_Cond_Number( 20, 'INDICATOR');
4143: strWhereNotInIndics := null;
4144: i:= 0;
4145: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN

Line 4145: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN

4141: IF BSC_METADATA_OPTIMIZER_PKG.gnumIndics > 0 THEN
4142: strWhereInIndics := Get_New_Big_In_Cond_Number( 20, 'INDICATOR');
4143: strWhereNotInIndics := null;
4144: i:= 0;
4145: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
4146: writeTmp( 'gnumIndics is '||BSC_METADATA_OPTIMIZER_PKG.gnumIndics);
4147: END IF;
4148: Add_Value_Bulk(20, BSC_METADATA_OPTIMIZER_PKG.garrIndics);
4149: strWhereNotInIndics := 'NOT ('|| strWhereInIndics ||')';

Line 4146: writeTmp( 'gnumIndics is '||BSC_METADATA_OPTIMIZER_PKG.gnumIndics);

4142: strWhereInIndics := Get_New_Big_In_Cond_Number( 20, 'INDICATOR');
4143: strWhereNotInIndics := null;
4144: i:= 0;
4145: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
4146: writeTmp( 'gnumIndics is '||BSC_METADATA_OPTIMIZER_PKG.gnumIndics);
4147: END IF;
4148: Add_Value_Bulk(20, BSC_METADATA_OPTIMIZER_PKG.garrIndics);
4149: strWhereNotInIndics := 'NOT ('|| strWhereInIndics ||')';
4150: --Bug 5138449, dont use tmp table, use kpi_data_tables as we need all S tables, not just the lowest level S tables

Line 4148: Add_Value_Bulk(20, BSC_METADATA_OPTIMIZER_PKG.garrIndics);

4144: i:= 0;
4145: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
4146: writeTmp( 'gnumIndics is '||BSC_METADATA_OPTIMIZER_PKG.gnumIndics);
4147: END IF;
4148: Add_Value_Bulk(20, BSC_METADATA_OPTIMIZER_PKG.garrIndics);
4149: strWhereNotInIndics := 'NOT ('|| strWhereInIndics ||')';
4150: --Bug 5138449, dont use tmp table, use kpi_data_tables as we need all S tables, not just the lowest level S tables
4151: l_stmt := ' SELECT DISTINCT TABLE_NAME FROM BSC_KPI_DATA_TABLES WHERE ('||
4152: strWhereInIndics|| ') AND TABLE_NAME IS NOT NULL';

Line 4158: BSC_METADATA_OPTIMIZER_PKG.garrTables(BSC_METADATA_OPTIMIZER_PKG.gnumTables) := lTable;

4154: OPEN cv for l_stmt;
4155: LOOP
4156: FETCH cv into lTable;
4157: EXIT WHEN cv%NOTFOUND;
4158: BSC_METADATA_OPTIMIZER_PKG.garrTables(BSC_METADATA_OPTIMIZER_PKG.gnumTables) := lTable;
4159: BSC_METADATA_OPTIMIZER_PKG.gnumTables := BSC_METADATA_OPTIMIZER_PKG.gnumTables + 1;
4160: --Add_Value_Big_In_Cond_VARCHAR2( 21, lTable);
4161: l_varchar2_list(l_varchar2_list.count+1) := lTable;
4162: END Loop;

Line 4159: BSC_METADATA_OPTIMIZER_PKG.gnumTables := BSC_METADATA_OPTIMIZER_PKG.gnumTables + 1;

4155: LOOP
4156: FETCH cv into lTable;
4157: EXIT WHEN cv%NOTFOUND;
4158: BSC_METADATA_OPTIMIZER_PKG.garrTables(BSC_METADATA_OPTIMIZER_PKG.gnumTables) := lTable;
4159: BSC_METADATA_OPTIMIZER_PKG.gnumTables := BSC_METADATA_OPTIMIZER_PKG.gnumTables + 1;
4160: --Add_Value_Big_In_Cond_VARCHAR2( 21, lTable);
4161: l_varchar2_list(l_varchar2_list.count+1) := lTable;
4162: END Loop;
4163: CLOSE cv;

Line 4167: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN

4163: CLOSE cv;
4164: -- just in case garrTables is already populated ahead
4165: Add_Value_Bulk(21, l_varchar2_list);
4166: END IF;
4167: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
4168: writeTmp( 'gnumTables is '||BSC_METADATA_OPTIMIZER_PKG.gnumTables);
4169: END IF;
4170: IF BSC_METADATA_OPTIMIZER_PKG.gnumTables > 0 THEN
4171: -- we need to follow this algorithm to find which tables can be dropped :

Line 4168: writeTmp( 'gnumTables is '||BSC_METADATA_OPTIMIZER_PKG.gnumTables);

4164: -- just in case garrTables is already populated ahead
4165: Add_Value_Bulk(21, l_varchar2_list);
4166: END IF;
4167: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
4168: writeTmp( 'gnumTables is '||BSC_METADATA_OPTIMIZER_PKG.gnumTables);
4169: END IF;
4170: IF BSC_METADATA_OPTIMIZER_PKG.gnumTables > 0 THEN
4171: -- we need to follow this algorithm to find which tables can be dropped :
4172: --0. Get List of Indicators to be processed

Line 4170: IF BSC_METADATA_OPTIMIZER_PKG.gnumTables > 0 THEN

4166: END IF;
4167: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
4168: writeTmp( 'gnumTables is '||BSC_METADATA_OPTIMIZER_PKG.gnumTables);
4169: END IF;
4170: IF BSC_METADATA_OPTIMIZER_PKG.gnumTables > 0 THEN
4171: -- we need to follow this algorithm to find which tables can be dropped :
4172: --0. Get List of Indicators to be processed
4173: --1. Find list of tables for 0. going from S to I tables
4174: --2. Find list of inter-related tables for 1.

Line 4187: InsertDirectTables(BSC_METADATA_OPTIMIZER_PKG.garrTables, 21);

4183: ---------------------------------------------------------------
4184: -- Step 1. Find list of tables for 0. going from S to I tables
4185: ---------------------------------------------------------------
4186: writeTmp( 'Calling InsertDirectTables', FND_LOG.LEVEL_STATEMENT, false);
4187: InsertDirectTables(BSC_METADATA_OPTIMIZER_PKG.garrTables, 21);
4188: writeTmp( 'Done with InsertDirectTables', FND_LOG.LEVEL_STATEMENT, false);
4189: strWhereInDirectTables := Get_New_Big_In_Cond_Varchar2( 22, 'TABLE_NAME');
4190: BSC_METADATA_OPTIMIZER_PKG.gnumTables := BSC_METADATA_OPTIMIZER_PKG.garrTables.count;
4191: Add_Value_Bulk(22, BSC_METADATA_OPTIMIZER_PKG.garrTables);

Line 4190: BSC_METADATA_OPTIMIZER_PKG.gnumTables := BSC_METADATA_OPTIMIZER_PKG.garrTables.count;

4186: writeTmp( 'Calling InsertDirectTables', FND_LOG.LEVEL_STATEMENT, false);
4187: InsertDirectTables(BSC_METADATA_OPTIMIZER_PKG.garrTables, 21);
4188: writeTmp( 'Done with InsertDirectTables', FND_LOG.LEVEL_STATEMENT, false);
4189: strWhereInDirectTables := Get_New_Big_In_Cond_Varchar2( 22, 'TABLE_NAME');
4190: BSC_METADATA_OPTIMIZER_PKG.gnumTables := BSC_METADATA_OPTIMIZER_PKG.garrTables.count;
4191: Add_Value_Bulk(22, BSC_METADATA_OPTIMIZER_PKG.garrTables);
4192: arrayDirectTables := BSC_METADATA_OPTIMIZER_PKG.garrTables;
4193: ---------------------------------------------------
4194: -- Step 2. Find list of inter-related tables for 1.

Line 4191: Add_Value_Bulk(22, BSC_METADATA_OPTIMIZER_PKG.garrTables);

4187: InsertDirectTables(BSC_METADATA_OPTIMIZER_PKG.garrTables, 21);
4188: writeTmp( 'Done with InsertDirectTables', FND_LOG.LEVEL_STATEMENT, false);
4189: strWhereInDirectTables := Get_New_Big_In_Cond_Varchar2( 22, 'TABLE_NAME');
4190: BSC_METADATA_OPTIMIZER_PKG.gnumTables := BSC_METADATA_OPTIMIZER_PKG.garrTables.count;
4191: Add_Value_Bulk(22, BSC_METADATA_OPTIMIZER_PKG.garrTables);
4192: arrayDirectTables := BSC_METADATA_OPTIMIZER_PKG.garrTables;
4193: ---------------------------------------------------
4194: -- Step 2. Find list of inter-related tables for 1.
4195: ---------------------------------------------------

Line 4192: arrayDirectTables := BSC_METADATA_OPTIMIZER_PKG.garrTables;

4188: writeTmp( 'Done with InsertDirectTables', FND_LOG.LEVEL_STATEMENT, false);
4189: strWhereInDirectTables := Get_New_Big_In_Cond_Varchar2( 22, 'TABLE_NAME');
4190: BSC_METADATA_OPTIMIZER_PKG.gnumTables := BSC_METADATA_OPTIMIZER_PKG.garrTables.count;
4191: Add_Value_Bulk(22, BSC_METADATA_OPTIMIZER_PKG.garrTables);
4192: arrayDirectTables := BSC_METADATA_OPTIMIZER_PKG.garrTables;
4193: ---------------------------------------------------
4194: -- Step 2. Find list of inter-related tables for 1.
4195: ---------------------------------------------------
4196: writeTmp( 'Calling InsertRelatedTables', FND_LOG.LEVEL_STATEMENT, false);

Line 4197: InsertRelatedTables( arrayDirectTables, BSC_METADATA_OPTIMIZER_PKG.gnumTables);

4193: ---------------------------------------------------
4194: -- Step 2. Find list of inter-related tables for 1.
4195: ---------------------------------------------------
4196: writeTmp( 'Calling InsertRelatedTables', FND_LOG.LEVEL_STATEMENT, false);
4197: InsertRelatedTables( arrayDirectTables, BSC_METADATA_OPTIMIZER_PKG.gnumTables);
4198: writeTmp( 'Done InsertRelatedTables', FND_LOG.LEVEL_STATEMENT, false);
4199: --Mark the indicators affected by those tables
4200: strWhereInTables := Get_New_Big_In_Cond_Varchar2( 23, 'TABLE_NAME');
4201: i:= 0;

Line 4203: writeTmp( 'BSC_METADATA_OPTIMIZER_PKG.garrTables.count='||BSC_METADATA_OPTIMIZER_PKG.garrTables.count, FND_LOG.LEVEL_STATEMENT, false);

4199: --Mark the indicators affected by those tables
4200: strWhereInTables := Get_New_Big_In_Cond_Varchar2( 23, 'TABLE_NAME');
4201: i:= 0;
4202: writeTmp( 'strWhereInTables='||strWhereInTables, FND_LOG.LEVEL_STATEMENT, false);
4203: writeTmp( 'BSC_METADATA_OPTIMIZER_PKG.garrTables.count='||BSC_METADATA_OPTIMIZER_PKG.garrTables.count, FND_LOG.LEVEL_STATEMENT, false);
4204: l_varchar2_list.delete;
4205: LOOP
4206: EXIT WHEN BSC_METADATA_OPTIMIZER_PKG.garrTables.count=0;
4207: IF searchStringExists(arrayDirectTables, arrayDirectTables.count, BSC_METADATA_OPTIMIZER_PKG.garrTables(i)) THEN

Line 4206: EXIT WHEN BSC_METADATA_OPTIMIZER_PKG.garrTables.count=0;

4202: writeTmp( 'strWhereInTables='||strWhereInTables, FND_LOG.LEVEL_STATEMENT, false);
4203: writeTmp( 'BSC_METADATA_OPTIMIZER_PKG.garrTables.count='||BSC_METADATA_OPTIMIZER_PKG.garrTables.count, FND_LOG.LEVEL_STATEMENT, false);
4204: l_varchar2_list.delete;
4205: LOOP
4206: EXIT WHEN BSC_METADATA_OPTIMIZER_PKG.garrTables.count=0;
4207: IF searchStringExists(arrayDirectTables, arrayDirectTables.count, BSC_METADATA_OPTIMIZER_PKG.garrTables(i)) THEN
4208: null;
4209: ELSE
4210: l_varchar2_list(l_varchar2_list.count+1):= BSC_METADATA_OPTIMIZER_PKG.garrTables(i);

Line 4207: IF searchStringExists(arrayDirectTables, arrayDirectTables.count, BSC_METADATA_OPTIMIZER_PKG.garrTables(i)) THEN

4203: writeTmp( 'BSC_METADATA_OPTIMIZER_PKG.garrTables.count='||BSC_METADATA_OPTIMIZER_PKG.garrTables.count, FND_LOG.LEVEL_STATEMENT, false);
4204: l_varchar2_list.delete;
4205: LOOP
4206: EXIT WHEN BSC_METADATA_OPTIMIZER_PKG.garrTables.count=0;
4207: IF searchStringExists(arrayDirectTables, arrayDirectTables.count, BSC_METADATA_OPTIMIZER_PKG.garrTables(i)) THEN
4208: null;
4209: ELSE
4210: l_varchar2_list(l_varchar2_list.count+1):= BSC_METADATA_OPTIMIZER_PKG.garrTables(i);
4211: END IF;

Line 4210: l_varchar2_list(l_varchar2_list.count+1):= BSC_METADATA_OPTIMIZER_PKG.garrTables(i);

4206: EXIT WHEN BSC_METADATA_OPTIMIZER_PKG.garrTables.count=0;
4207: IF searchStringExists(arrayDirectTables, arrayDirectTables.count, BSC_METADATA_OPTIMIZER_PKG.garrTables(i)) THEN
4208: null;
4209: ELSE
4210: l_varchar2_list(l_varchar2_list.count+1):= BSC_METADATA_OPTIMIZER_PKG.garrTables(i);
4211: END IF;
4212: EXIT WHEN i = BSC_METADATA_OPTIMIZER_PKG.garrTables.last;
4213: i := BSC_METADATA_OPTIMIZER_PKG.garrTables.next(i);
4214: END LOOP;

Line 4212: EXIT WHEN i = BSC_METADATA_OPTIMIZER_PKG.garrTables.last;

4208: null;
4209: ELSE
4210: l_varchar2_list(l_varchar2_list.count+1):= BSC_METADATA_OPTIMIZER_PKG.garrTables(i);
4211: END IF;
4212: EXIT WHEN i = BSC_METADATA_OPTIMIZER_PKG.garrTables.last;
4213: i := BSC_METADATA_OPTIMIZER_PKG.garrTables.next(i);
4214: END LOOP;
4215: Add_Value_Bulk(23, l_varchar2_list);
4216: l_varchar2_list.delete;

Line 4213: i := BSC_METADATA_OPTIMIZER_PKG.garrTables.next(i);

4209: ELSE
4210: l_varchar2_list(l_varchar2_list.count+1):= BSC_METADATA_OPTIMIZER_PKG.garrTables(i);
4211: END IF;
4212: EXIT WHEN i = BSC_METADATA_OPTIMIZER_PKG.garrTables.last;
4213: i := BSC_METADATA_OPTIMIZER_PKG.garrTables.next(i);
4214: END LOOP;
4215: Add_Value_Bulk(23, l_varchar2_list);
4216: l_varchar2_list.delete;
4217: writeTmp( 'Done loop', FND_LOG.LEVEL_STATEMENT, false);

Line 4223: l_dontProcessIndics := 'SELECT DISTINCT INDICATOR FROM '||BSC_METADATA_OPTIMIZER_PKG.g_kpi_tmp_table||' WHERE ('||strWhereInTables|| ')';

4219: writeTmp( 'strWhereNotInIndics ='||strWhereNotInIndics, FND_LOG.LEVEL_STATEMENT, false);
4220: ----------------------------------------------------------
4221: --Step 3. Find list of indicators using any table from 2.
4222: ----------------------------------------------------------
4223: l_dontProcessIndics := 'SELECT DISTINCT INDICATOR FROM '||BSC_METADATA_OPTIMIZER_PKG.g_kpi_tmp_table||' WHERE ('||strWhereInTables|| ')';
4224: --------------------------------------------------
4225: --Step 4. Affected inter-related indicators 3 - 0
4226: --------------------------------------------------
4227: l_dontProcessIndics := l_dontProcessIndics||' AND ('||strWhereNotInIndics||')';

Line 4236: (select table_name from '||BSC_METADATA_OPTIMIZER_PKG.g_kpi_tmp_table||' where indicator in ('||l_dontProcessIndics||') )';

4232: --Step 5. For indicators in 4, get list of tables going from S to I tables
4233: ---------------------------------------------------------------------
4234: l_dontDropTables := ' select source_table_name from bsc_db_tables_rels
4235: connect by table_name = prior source_table_name start with table_name in
4236: (select table_name from '||BSC_METADATA_OPTIMIZER_PKG.g_kpi_tmp_table||' where indicator in ('||l_dontProcessIndics||') )';
4237: writeTmp( 'l_dontDropTables ='||l_dontDropTables, FND_LOG.LEVEL_STATEMENT, false);
4238: ---------------------------------------------------
4239: --Step 6. Subtract 1-5
4240: ---------------------------------------------------

Line 4244: BSC_METADATA_OPTIMIZER_PKG.gnumTables := 0;

4240: ---------------------------------------------------
4241: l_dropTables := 'select table_name from bsc_db_tables where ('||strWhereInDirectTables||') '||' and table_name not in ('||
4242: l_dontDropTables||')';
4243: writeTmp( 'l_dropTables ='||l_dropTables, FND_LOG.LEVEL_STATEMENT, false);
4244: BSC_METADATA_OPTIMIZER_PKG.gnumTables := 0;
4245: BSC_METADATA_OPTIMIZER_PKG.garrTables.delete;
4246: l_dropTables := replace(l_dropTables, 'UPPER(TABLE_NAME)', 'TABLE_NAME');
4247: l_dropTables := replace(l_dropTables, 'UPPER(VALUE_V)', 'VALUE_V');
4248: OPEN cv for l_dropTables;

Line 4245: BSC_METADATA_OPTIMIZER_PKG.garrTables.delete;

4241: l_dropTables := 'select table_name from bsc_db_tables where ('||strWhereInDirectTables||') '||' and table_name not in ('||
4242: l_dontDropTables||')';
4243: writeTmp( 'l_dropTables ='||l_dropTables, FND_LOG.LEVEL_STATEMENT, false);
4244: BSC_METADATA_OPTIMIZER_PKG.gnumTables := 0;
4245: BSC_METADATA_OPTIMIZER_PKG.garrTables.delete;
4246: l_dropTables := replace(l_dropTables, 'UPPER(TABLE_NAME)', 'TABLE_NAME');
4247: l_dropTables := replace(l_dropTables, 'UPPER(VALUE_V)', 'VALUE_V');
4248: OPEN cv for l_dropTables;
4249: FETCH cv BULK COLLECT INTO l_varchar2_table;

Line 4253: BSC_METADATA_OPTIMIZER_PKG.garrTables(BSC_METADATA_OPTIMIZER_PKG.gnumTables) := lTable;

4249: FETCH cv BULK COLLECT INTO l_varchar2_table;
4250: CLOSE cv;
4251: FOR k in 1..l_varchar2_table.count LOOP
4252: lTable := l_varchar2_table(k);
4253: BSC_METADATA_OPTIMIZER_PKG.garrTables(BSC_METADATA_OPTIMIZER_PKG.gnumTables) := lTable;
4254: BSC_METADATA_OPTIMIZER_PKG.gnumTables := BSC_METADATA_OPTIMIZER_PKG.gnumTables + 1;
4255: writeTmp( 'will drop ' || lTable, FND_LOG.LEVEL_STATEMENT, false);
4256: END Loop;
4257: END IF;

Line 4254: BSC_METADATA_OPTIMIZER_PKG.gnumTables := BSC_METADATA_OPTIMIZER_PKG.gnumTables + 1;

4250: CLOSE cv;
4251: FOR k in 1..l_varchar2_table.count LOOP
4252: lTable := l_varchar2_table(k);
4253: BSC_METADATA_OPTIMIZER_PKG.garrTables(BSC_METADATA_OPTIMIZER_PKG.gnumTables) := lTable;
4254: BSC_METADATA_OPTIMIZER_PKG.gnumTables := BSC_METADATA_OPTIMIZER_PKG.gnumTables + 1;
4255: writeTmp( 'will drop ' || lTable, FND_LOG.LEVEL_STATEMENT, false);
4256: END Loop;
4257: END IF;
4258: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN

Line 4258: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN

4254: BSC_METADATA_OPTIMIZER_PKG.gnumTables := BSC_METADATA_OPTIMIZER_PKG.gnumTables + 1;
4255: writeTmp( 'will drop ' || lTable, FND_LOG.LEVEL_STATEMENT, false);
4256: END Loop;
4257: END IF;
4258: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
4259: writeTmp( 'Completed MarkTablesForSelectedKPIs', FND_LOG.LEVEL_PROCEDURE, false);
4260: END IF;
4261: EXCEPTION WHEN OTHERS THEN
4262: lError := sqlerrm;

Line 4263: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN

4259: writeTmp( 'Completed MarkTablesForSelectedKPIs', FND_LOG.LEVEL_PROCEDURE, false);
4260: END IF;
4261: EXCEPTION WHEN OTHERS THEN
4262: lError := sqlerrm;
4263: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
4264: writeTmp('Exception in MarkTablesForSelectedKPIs : '||lError);
4265: END IF;
4266: raise;
4267: End;

Line 4292: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN

4288: FROM BSC_KPIS_B K, BSC_TAB_INDICATORS T WHERE K.INDICATOR = T.INDICATOR (+)
4289: AND T.INDICATOR IS NULL AND K.PROTOTYPE_FLAG <> 2 ORDER BY K.INDICATOR;
4290:
4291: BEGIN
4292: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
4293: writeTmp( 'Inside CheckAllIndicsHaveSystem'); --commit;
4294: END IF;
4295:
4296: IF (getInitColumn('MODEL_TYPE') = 6) THEN

Line 4313: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN

4309: CLOSE cIndics;
4310: IF kpilist IS NOT NULL THEN
4311: fnd_message.set_name('BSC','BSC_MISSING_KPI_TAB_ASSIG');
4312: l_indicator := fnd_message.get;
4313: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
4314: writeTmp( 'Compl. CheckAllIndicsHaveSystem, error BSC_MISSING_KPI_TAB_ASSIG');
4315: END IF;
4316: FND_FILE.put_line(FND_FILE.LOG, l_indicator||':'||kpilist);
4317: terminateWithError('BSC_MISSING_KPI_TAB_ASSIG', 'CheckAllIndicsHaveSystem');

Line 4319: raise bsc_metadata_optimizer_pkg.optimizer_exception;

4315: END IF;
4316: FND_FILE.put_line(FND_FILE.LOG, l_indicator||':'||kpilist);
4317: terminateWithError('BSC_MISSING_KPI_TAB_ASSIG', 'CheckAllIndicsHaveSystem');
4318: terminateWithMsg(kpiList);
4319: raise bsc_metadata_optimizer_pkg.optimizer_exception;
4320: return; -- Mark as error in CP status
4321: END IF;
4322: END IF;
4323: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN

Line 4323: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN

4319: raise bsc_metadata_optimizer_pkg.optimizer_exception;
4320: return; -- Mark as error in CP status
4321: END IF;
4322: END IF;
4323: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
4324: writeTmp( 'Compl. CheckAllIndicsHaveSystem');
4325: END IF;
4326: EXCEPTION WHEN OTHERS THEN
4327: l_error := sqlerrm;

Line 4353: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN

4349: SELECT DISTINCT INDICATOR, SOURCE_INDICATOR FROM BSC_KPIS_B
4350: WHERE SHARE_FLAG = 3 AND SOURCE_INDICATOR IS NOT NULL AND PROTOTYPE_FLAG <> 2 ;
4351:
4352: BEGIN
4353: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
4354: writeTmp( 'Inside CheckAllSharedIndicsSync'); --commit;
4355: END IF;
4356: OPEN cSharedIndics;
4357: --Try to re-syncronized those indicators

Line 4383: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN

4379: fnd_message.set_name('BSC','BSC_SHARED_NOT_SYNCR' );
4380: l_error := fnd_message.get || '('||kpilist||')';
4381: terminateWithMsg(l_error);
4382: END IF;
4383: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
4384: writeTmp( 'Compl CheckAllSharedIndicsSync'); --commit;
4385: END IF;
4386: End;
4387:

Line 4411: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN

4407: WHERE P.INDICATOR = K.INDICATOR AND P.PROPERTY_VALUE = 0
4408: AND P.PROPERTY_CODE IN ('EDW_DATASET_STATUS', 'EDW_CALENDAR_STATUS', 'EDW_DIMENSION_STATUS'));
4409:
4410: BEGIN
4411: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
4412: writeTmp( 'Inside CheckAllEDWIndicsFullyMapped');--commit;
4413: END IF;
4414: --There are 3 flags in BSC_KPI_PROPERTIES to check when a EDW Kpi
4415: --is fully mapped

Line 4433: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN

4429: IF kpilist IS NOT NULL THEN
4430: terminateWithError('BSC_EDW_KPIS_NOT_FULL_MAP', 'CheckAllEDWIndicsFullyMapped');
4431: --Get_Message('BSC_EDW_KPIS_NOT_FULL_MAP') ' (' kpilist ')')
4432: END IF;
4433: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
4434: writeTmp( 'Compl CheckAllEDWIndicsFullyMapped');--commit;
4435: END IF;
4436: End;
4437:

Line 4480: BSC_METADATA_OPTIMIZER_PKG.garrIndics.delete;

4476:
4477:
4478: writeTmp( 'Inside InitIndicators, system time is '||get_time, FND_LOG.LEVEL_PROCEDURE, true);
4479:
4480: BSC_METADATA_OPTIMIZER_PKG.garrIndics.delete;
4481: BSC_METADATA_OPTIMIZER_PKG.gnumIndics := 0;
4482:
4483: BSC_METADATA_OPTIMIZER_PKG.garrIndics4.delete;
4484: BSC_METADATA_OPTIMIZER_PKG.gnumIndics4 := 0;

Line 4481: BSC_METADATA_OPTIMIZER_PKG.gnumIndics := 0;

4477:
4478: writeTmp( 'Inside InitIndicators, system time is '||get_time, FND_LOG.LEVEL_PROCEDURE, true);
4479:
4480: BSC_METADATA_OPTIMIZER_PKG.garrIndics.delete;
4481: BSC_METADATA_OPTIMIZER_PKG.gnumIndics := 0;
4482:
4483: BSC_METADATA_OPTIMIZER_PKG.garrIndics4.delete;
4484: BSC_METADATA_OPTIMIZER_PKG.gnumIndics4 := 0;
4485:

Line 4483: BSC_METADATA_OPTIMIZER_PKG.garrIndics4.delete;

4479:
4480: BSC_METADATA_OPTIMIZER_PKG.garrIndics.delete;
4481: BSC_METADATA_OPTIMIZER_PKG.gnumIndics := 0;
4482:
4483: BSC_METADATA_OPTIMIZER_PKG.garrIndics4.delete;
4484: BSC_METADATA_OPTIMIZER_PKG.gnumIndics4 := 0;
4485:
4486: BSC_METADATA_OPTIMIZER_PKG.garrTables.delete;
4487: BSC_METADATA_OPTIMIZER_PKG.gnumTables := 0;

Line 4484: BSC_METADATA_OPTIMIZER_PKG.gnumIndics4 := 0;

4480: BSC_METADATA_OPTIMIZER_PKG.garrIndics.delete;
4481: BSC_METADATA_OPTIMIZER_PKG.gnumIndics := 0;
4482:
4483: BSC_METADATA_OPTIMIZER_PKG.garrIndics4.delete;
4484: BSC_METADATA_OPTIMIZER_PKG.gnumIndics4 := 0;
4485:
4486: BSC_METADATA_OPTIMIZER_PKG.garrTables.delete;
4487: BSC_METADATA_OPTIMIZER_PKG.gnumTables := 0;
4488:

Line 4486: BSC_METADATA_OPTIMIZER_PKG.garrTables.delete;

4482:
4483: BSC_METADATA_OPTIMIZER_PKG.garrIndics4.delete;
4484: BSC_METADATA_OPTIMIZER_PKG.gnumIndics4 := 0;
4485:
4486: BSC_METADATA_OPTIMIZER_PKG.garrTables.delete;
4487: BSC_METADATA_OPTIMIZER_PKG.gnumTables := 0;
4488:
4489:
4490: --If we are running optimizer for the first time, the prototype_flag will be 1, so treat it as 3.

Line 4487: BSC_METADATA_OPTIMIZER_PKG.gnumTables := 0;

4483: BSC_METADATA_OPTIMIZER_PKG.garrIndics4.delete;
4484: BSC_METADATA_OPTIMIZER_PKG.gnumIndics4 := 0;
4485:
4486: BSC_METADATA_OPTIMIZER_PKG.garrTables.delete;
4487: BSC_METADATA_OPTIMIZER_PKG.gnumTables := 0;
4488:
4489:
4490: --If we are running optimizer for the first time, the prototype_flag will be 1, so treat it as 3.
4491: IF BSC_METADATA_OPTIMIZER_PKG.gSYSTEM_STAGE = 1 THEN

Line 4491: IF BSC_METADATA_OPTIMIZER_PKG.gSYSTEM_STAGE = 1 THEN

4487: BSC_METADATA_OPTIMIZER_PKG.gnumTables := 0;
4488:
4489:
4490: --If we are running optimizer for the first time, the prototype_flag will be 1, so treat it as 3.
4491: IF BSC_METADATA_OPTIMIZER_PKG.gSYSTEM_STAGE = 1 THEN
4492: UPDATE bsc_kpis_b
4493: SET prototype_flag = 3
4494: WHERE prototype_flag=1;
4495: END IF;

Line 4502: IF BSC_METADATA_OPTIMIZER_PKG.gGAA_RUN_MODE = 0 THEN

4498: INDICATOR_TYPE, CONFIG_TYPE, PERIODICITY_ID,
4499: SHARE_FLAG, SOURCE_INDICATOR,
4500: EDW_FLAG FROM BSC_KPIS_VL ';
4501:
4502: IF BSC_METADATA_OPTIMIZER_PKG.gGAA_RUN_MODE = 0 THEN
4503: l_stmt := l_stmt || ' where short_name is null OR
4504: (short_name is not null and BSC_DBGEN_UTILS.Get_Objective_Type(short_name) = ''OBJECTIVE'')';
4505: -- NOTE NOTE NOTE
4506: -- Change MODE to modified as ALL doesnt make sense anymore

Line 4508: DELETE FROM BSC_TMP_OPT_UI_KPIS WHERE process_id = BSC_METADATA_OPTIMIZER_PKG.g_processID;

4504: (short_name is not null and BSC_DBGEN_UTILS.Get_Objective_Type(short_name) = ''OBJECTIVE'')';
4505: -- NOTE NOTE NOTE
4506: -- Change MODE to modified as ALL doesnt make sense anymore
4507: -- as ALL should now exclude KPIs created using report designer
4508: DELETE FROM BSC_TMP_OPT_UI_KPIS WHERE process_id = BSC_METADATA_OPTIMIZER_PKG.g_processID;
4509: INSERT INTO BSC_TMP_OPT_UI_KPIS (INDICATOR, PROTOTYPE_FLAG, PROCESS_ID)
4510: SELECT INDICATOR, PROTOTYPE_FLAG, BSC_METADATA_OPTIMIZER_PKG.g_processID
4511: FROM BSC_KPIS_VL
4512: where short_name is null OR

Line 4510: SELECT INDICATOR, PROTOTYPE_FLAG, BSC_METADATA_OPTIMIZER_PKG.g_processID

4506: -- Change MODE to modified as ALL doesnt make sense anymore
4507: -- as ALL should now exclude KPIs created using report designer
4508: DELETE FROM BSC_TMP_OPT_UI_KPIS WHERE process_id = BSC_METADATA_OPTIMIZER_PKG.g_processID;
4509: INSERT INTO BSC_TMP_OPT_UI_KPIS (INDICATOR, PROTOTYPE_FLAG, PROCESS_ID)
4510: SELECT INDICATOR, PROTOTYPE_FLAG, BSC_METADATA_OPTIMIZER_PKG.g_processID
4511: FROM BSC_KPIS_VL
4512: where short_name is null OR
4513: (short_name is not null and BSC_DBGEN_UTILS.Get_Objective_Type(short_name) = 'OBJECTIVE');
4514: l_objectives_count := SQL%ROWCOUNT;

Line 4518: BSC_METADATA_OPTIMIZER_PKG.gGAA_RUN_MODE := 1;

4514: l_objectives_count := SQL%ROWCOUNT;
4515: commit;
4516: SELECT COUNT(1) INTO l_total_count FROM BSC_KPIS_VL;
4517: IF (l_objectives_count <> l_total_count) THEN -- there are autogenerated reports, dont process them
4518: BSC_METADATA_OPTIMIZER_PKG.gGAA_RUN_MODE := 1;
4519: ELSE
4520: writeTmp('Entire system consists of objectives, no autogenerated reports found', FND_LOG.LEVEL_PROCEDURE, true);
4521: END IF;
4522: ELSE-- Modified or Selected indicators

Line 4523: l_stmt := l_stmt || ' where prototype_flag in (2,3) and indicator in (SELECT INDICATOR FROM BSC_TMP_OPT_UI_KPIS WHERE process_id = '||BSC_METADATA_OPTIMIZER_PKG.g_processID||')';

4519: ELSE
4520: writeTmp('Entire system consists of objectives, no autogenerated reports found', FND_LOG.LEVEL_PROCEDURE, true);
4521: END IF;
4522: ELSE-- Modified or Selected indicators
4523: l_stmt := l_stmt || ' where prototype_flag in (2,3) and indicator in (SELECT INDICATOR FROM BSC_TMP_OPT_UI_KPIS WHERE process_id = '||BSC_METADATA_OPTIMIZER_PKG.g_processID||')';
4524: END IF;
4525: l_Stmt := l_stmt || ' ORDER BY INDICATOR ';
4526: writeTmp(l_Stmt, FND_LOG.LEVEL_STATEMENT, false);
4527: open cv for l_stmt;

Line 4537: If BSC_METADATA_OPTIMIZER_PKG.g_BSC_MV Then

4533: IF (l_SOURCE_INDICATOR is null) THEN
4534: l_Source_Indicator := 0;
4535: END IF;
4536: l_optimizationMode := getKPIPropertyValue(l_Code, 'DB_TRANSFORM', 1);
4537: If BSC_METADATA_OPTIMIZER_PKG.g_BSC_MV Then
4538: l_impl_type := getKPIPropertyValue(l_Code, BSC_METADATA_OPTIMIZER_PKG.IMPL_TYPE, 1);
4539: END IF;
4540: IF l_Action_Flag <> 2 THEN
4541: l_Action_Flag := 3;

Line 4538: l_impl_type := getKPIPropertyValue(l_Code, BSC_METADATA_OPTIMIZER_PKG.IMPL_TYPE, 1);

4534: l_Source_Indicator := 0;
4535: END IF;
4536: l_optimizationMode := getKPIPropertyValue(l_Code, 'DB_TRANSFORM', 1);
4537: If BSC_METADATA_OPTIMIZER_PKG.g_BSC_MV Then
4538: l_impl_type := getKPIPropertyValue(l_Code, BSC_METADATA_OPTIMIZER_PKG.IMPL_TYPE, 1);
4539: END IF;
4540: IF l_Action_Flag <> 2 THEN
4541: l_Action_Flag := 3;
4542: BSC_METADATA_OPTIMIZER_PKG.gThereisStructureChange := True;

Line 4542: BSC_METADATA_OPTIMIZER_PKG.gThereisStructureChange := True;

4538: l_impl_type := getKPIPropertyValue(l_Code, BSC_METADATA_OPTIMIZER_PKG.IMPL_TYPE, 1);
4539: END IF;
4540: IF l_Action_Flag <> 2 THEN
4541: l_Action_Flag := 3;
4542: BSC_METADATA_OPTIMIZER_PKG.gThereisStructureChange := True;
4543: END IF;
4544: AddIndicator( BSC_METADATA_OPTIMIZER_PKG.gIndicators, l_Code, l_name, l_indicatorType, l_ConfigType,
4545: l_per_inter, l_OptimizationMode, l_action_flag, l_share_flag, l_source_indicator, l_edw_flag, l_impl_type);
4546: BSC_METADATA_OPTIMIZER_PKG.garrIndics(BSC_METADATA_OPTIMIZER_PKG.gnumIndics) := l_code;

Line 4544: AddIndicator( BSC_METADATA_OPTIMIZER_PKG.gIndicators, l_Code, l_name, l_indicatorType, l_ConfigType,

4540: IF l_Action_Flag <> 2 THEN
4541: l_Action_Flag := 3;
4542: BSC_METADATA_OPTIMIZER_PKG.gThereisStructureChange := True;
4543: END IF;
4544: AddIndicator( BSC_METADATA_OPTIMIZER_PKG.gIndicators, l_Code, l_name, l_indicatorType, l_ConfigType,
4545: l_per_inter, l_OptimizationMode, l_action_flag, l_share_flag, l_source_indicator, l_edw_flag, l_impl_type);
4546: BSC_METADATA_OPTIMIZER_PKG.garrIndics(BSC_METADATA_OPTIMIZER_PKG.gnumIndics) := l_code;
4547: BSC_METADATA_OPTIMIZER_PKG.gnumIndics := BSC_METADATA_OPTIMIZER_PKG.gnumIndics + 1;
4548: END Loop;

Line 4546: BSC_METADATA_OPTIMIZER_PKG.garrIndics(BSC_METADATA_OPTIMIZER_PKG.gnumIndics) := l_code;

4542: BSC_METADATA_OPTIMIZER_PKG.gThereisStructureChange := True;
4543: END IF;
4544: AddIndicator( BSC_METADATA_OPTIMIZER_PKG.gIndicators, l_Code, l_name, l_indicatorType, l_ConfigType,
4545: l_per_inter, l_OptimizationMode, l_action_flag, l_share_flag, l_source_indicator, l_edw_flag, l_impl_type);
4546: BSC_METADATA_OPTIMIZER_PKG.garrIndics(BSC_METADATA_OPTIMIZER_PKG.gnumIndics) := l_code;
4547: BSC_METADATA_OPTIMIZER_PKG.gnumIndics := BSC_METADATA_OPTIMIZER_PKG.gnumIndics + 1;
4548: END Loop;
4549: CLOSE cv;
4550:

Line 4547: BSC_METADATA_OPTIMIZER_PKG.gnumIndics := BSC_METADATA_OPTIMIZER_PKG.gnumIndics + 1;

4543: END IF;
4544: AddIndicator( BSC_METADATA_OPTIMIZER_PKG.gIndicators, l_Code, l_name, l_indicatorType, l_ConfigType,
4545: l_per_inter, l_OptimizationMode, l_action_flag, l_share_flag, l_source_indicator, l_edw_flag, l_impl_type);
4546: BSC_METADATA_OPTIMIZER_PKG.garrIndics(BSC_METADATA_OPTIMIZER_PKG.gnumIndics) := l_code;
4547: BSC_METADATA_OPTIMIZER_PKG.gnumIndics := BSC_METADATA_OPTIMIZER_PKG.gnumIndics + 1;
4548: END Loop;
4549: CLOSE cv;
4550:
4551: --With the array garrIndics() initialized, the following function initialize

Line 4556: IF BSC_METADATA_OPTIMIZER_PKG.gGAA_RUN_MODE = 0 THEN

4552: --the array arrTables() with all tables related to the tables used directly by the indicators
4553: --in the array garrIndics(). Additionally, add in the array garrIndics() the related indicators.
4554: --BSC-MV Note: Performance fix: if metadata is running for all indicators we do not need
4555: --that complex logic to figure out all the affected tables
4556: IF BSC_METADATA_OPTIMIZER_PKG.gGAA_RUN_MODE = 0 THEN
4557: --Metadata is running for the whole system
4558: BSC_METADATA_OPTIMIZER_PKG.gnumTables := 0;
4559: OPEN cTables;
4560: LOOP

Line 4558: BSC_METADATA_OPTIMIZER_PKG.gnumTables := 0;

4554: --BSC-MV Note: Performance fix: if metadata is running for all indicators we do not need
4555: --that complex logic to figure out all the affected tables
4556: IF BSC_METADATA_OPTIMIZER_PKG.gGAA_RUN_MODE = 0 THEN
4557: --Metadata is running for the whole system
4558: BSC_METADATA_OPTIMIZER_PKG.gnumTables := 0;
4559: OPEN cTables;
4560: LOOP
4561: FETCH cTables INTO l_table;
4562: EXIT WHEN cTables%NOTFOUND;

Line 4563: BSC_METADATA_OPTIMIZER_PKG.garrTables(BSC_METADATA_OPTIMIZER_PKG.gnumTables) := l_table;

4559: OPEN cTables;
4560: LOOP
4561: FETCH cTables INTO l_table;
4562: EXIT WHEN cTables%NOTFOUND;
4563: BSC_METADATA_OPTIMIZER_PKG.garrTables(BSC_METADATA_OPTIMIZER_PKG.gnumTables) := l_table;
4564: BSC_METADATA_OPTIMIZER_PKG.gnumTables := BSC_METADATA_OPTIMIZER_PKG.gnumTables + 1;
4565: END LOOP;
4566: CLOSE cTables;
4567: ELSE -- incremental mode or selected mode

Line 4564: BSC_METADATA_OPTIMIZER_PKG.gnumTables := BSC_METADATA_OPTIMIZER_PKG.gnumTables + 1;

4560: LOOP
4561: FETCH cTables INTO l_table;
4562: EXIT WHEN cTables%NOTFOUND;
4563: BSC_METADATA_OPTIMIZER_PKG.garrTables(BSC_METADATA_OPTIMIZER_PKG.gnumTables) := l_table;
4564: BSC_METADATA_OPTIMIZER_PKG.gnumTables := BSC_METADATA_OPTIMIZER_PKG.gnumTables + 1;
4565: END LOOP;
4566: CLOSE cTables;
4567: ELSE -- incremental mode or selected mode
4568:

Line 4570: writeTmp(' # of indicators now = '||BSC_METADATA_OPTIMIZER_PKG.gIndicators.count, fnd_log.level_statement, false);

4566: CLOSE cTables;
4567: ELSE -- incremental mode or selected mode
4568:
4569: MarkTablesForSelectedKPIs;
4570: writeTmp(' # of indicators now = '||BSC_METADATA_OPTIMIZER_PKG.gIndicators.count, fnd_log.level_statement, false);
4571: BSC_METADATA_OPTIMIZER_PKG.logProgress('INIT', 'Getting Indics with non structural changes ');
4572: --Add indicators with flag = 4 (reconfigure update)
4573: --in the collection gIndicadores
4574: --Of course if the indicator is already in gIndicadores (Structural changes) we do not change it.

Line 4571: BSC_METADATA_OPTIMIZER_PKG.logProgress('INIT', 'Getting Indics with non structural changes ');

4567: ELSE -- incremental mode or selected mode
4568:
4569: MarkTablesForSelectedKPIs;
4570: writeTmp(' # of indicators now = '||BSC_METADATA_OPTIMIZER_PKG.gIndicators.count, fnd_log.level_statement, false);
4571: BSC_METADATA_OPTIMIZER_PKG.logProgress('INIT', 'Getting Indics with non structural changes ');
4572: --Add indicators with flag = 4 (reconfigure update)
4573: --in the collection gIndicadores
4574: --Of course if the indicator is already in gIndicadores (Structural changes) we do not change it.
4575: --Init an array with the Kpis in prototype 4 (changes in loader configuration)

Line 4581: open cv for l_stmt using BSC_METADATA_OPTIMIZER_PKG.g_processID;

4577: INDICATOR_TYPE, CONFIG_TYPE, PERIODICITY_ID,
4578: SHARE_FLAG, SOURCE_INDICATOR,
4579: EDW_FLAG FROM BSC_KPIS_VL WHERE INDICATOR in
4580: (select indicator from bsc_tmp_opt_ui_kpis where prototype_flag =4 and process_id= :1) ORDER BY INDICATOR';
4581: open cv for l_stmt using BSC_METADATA_OPTIMIZER_PKG.g_processID;
4582: BSC_METADATA_OPTIMIZER_PKG.logProgress('INIT', 'Indics with non structural changes are');
4583: LOOP
4584: FETCH cv into l_code, l_name, l_action_flag,
4585: l_IndicatorType, l_configType, l_per_inter, l_share_flag,

Line 4582: BSC_METADATA_OPTIMIZER_PKG.logProgress('INIT', 'Indics with non structural changes are');

4578: SHARE_FLAG, SOURCE_INDICATOR,
4579: EDW_FLAG FROM BSC_KPIS_VL WHERE INDICATOR in
4580: (select indicator from bsc_tmp_opt_ui_kpis where prototype_flag =4 and process_id= :1) ORDER BY INDICATOR';
4581: open cv for l_stmt using BSC_METADATA_OPTIMIZER_PKG.g_processID;
4582: BSC_METADATA_OPTIMIZER_PKG.logProgress('INIT', 'Indics with non structural changes are');
4583: LOOP
4584: FETCH cv into l_code, l_name, l_action_flag,
4585: l_IndicatorType, l_configType, l_per_inter, l_share_flag,
4586: l_source_indicator, l_edw_flag;

Line 4588: BSC_METADATA_OPTIMIZER_PKG.logProgress('INIT', l_code);

4584: FETCH cv into l_code, l_name, l_action_flag,
4585: l_IndicatorType, l_configType, l_per_inter, l_share_flag,
4586: l_source_indicator, l_edw_flag;
4587: exit when cv%NOTFOUND;
4588: BSC_METADATA_OPTIMIZER_PKG.logProgress('INIT', l_code);
4589: l_indicator4 := l_code;
4590: BSC_METADATA_OPTIMIZER_PKG.garrIndics4(BSC_METADATA_OPTIMIZER_PKG.gnumIndics4) := l_indicator4;
4591: BSC_METADATA_OPTIMIZER_PKG.gnumIndics4 := BSC_METADATA_OPTIMIZER_PKG.gnumIndics4 + 1;
4592: IF (l_SOURCE_INDICATOR is null) THEN

Line 4590: BSC_METADATA_OPTIMIZER_PKG.garrIndics4(BSC_METADATA_OPTIMIZER_PKG.gnumIndics4) := l_indicator4;

4586: l_source_indicator, l_edw_flag;
4587: exit when cv%NOTFOUND;
4588: BSC_METADATA_OPTIMIZER_PKG.logProgress('INIT', l_code);
4589: l_indicator4 := l_code;
4590: BSC_METADATA_OPTIMIZER_PKG.garrIndics4(BSC_METADATA_OPTIMIZER_PKG.gnumIndics4) := l_indicator4;
4591: BSC_METADATA_OPTIMIZER_PKG.gnumIndics4 := BSC_METADATA_OPTIMIZER_PKG.gnumIndics4 + 1;
4592: IF (l_SOURCE_INDICATOR is null) THEN
4593: l_Source_Indicator := 0;
4594: END IF;

Line 4591: BSC_METADATA_OPTIMIZER_PKG.gnumIndics4 := BSC_METADATA_OPTIMIZER_PKG.gnumIndics4 + 1;

4587: exit when cv%NOTFOUND;
4588: BSC_METADATA_OPTIMIZER_PKG.logProgress('INIT', l_code);
4589: l_indicator4 := l_code;
4590: BSC_METADATA_OPTIMIZER_PKG.garrIndics4(BSC_METADATA_OPTIMIZER_PKG.gnumIndics4) := l_indicator4;
4591: BSC_METADATA_OPTIMIZER_PKG.gnumIndics4 := BSC_METADATA_OPTIMIZER_PKG.gnumIndics4 + 1;
4592: IF (l_SOURCE_INDICATOR is null) THEN
4593: l_Source_Indicator := 0;
4594: END IF;
4595: IF l_Action_Flag <> 2 THEN

Line 4599: l_impl_type := getKPIPropertyValue(l_Code, BSC_METADATA_OPTIMIZER_PKG.IMPL_TYPE, 1);

4595: IF l_Action_Flag <> 2 THEN
4596: l_Action_Flag := 4;
4597: END IF;
4598: l_OptimizationMode := getKPIPropertyValue(l_Code, 'DB_TRANSFORM', 1);
4599: l_impl_type := getKPIPropertyValue(l_Code, BSC_METADATA_OPTIMIZER_PKG.IMPL_TYPE, 1);
4600: AddIndicator( BSC_METADATA_OPTIMIZER_PKG.gIndicators, l_Code, l_name, l_indicatorType, l_ConfigType,
4601: l_per_inter, l_OptimizationMode, l_action_flag, l_share_flag, l_source_indicator, l_edw_flag, l_impl_type);
4602: END Loop;
4603: CLOSE cv;

Line 4600: AddIndicator( BSC_METADATA_OPTIMIZER_PKG.gIndicators, l_Code, l_name, l_indicatorType, l_ConfigType,

4596: l_Action_Flag := 4;
4597: END IF;
4598: l_OptimizationMode := getKPIPropertyValue(l_Code, 'DB_TRANSFORM', 1);
4599: l_impl_type := getKPIPropertyValue(l_Code, BSC_METADATA_OPTIMIZER_PKG.IMPL_TYPE, 1);
4600: AddIndicator( BSC_METADATA_OPTIMIZER_PKG.gIndicators, l_Code, l_name, l_indicatorType, l_ConfigType,
4601: l_per_inter, l_OptimizationMode, l_action_flag, l_share_flag, l_source_indicator, l_edw_flag, l_impl_type);
4602: END Loop;
4603: CLOSE cv;
4604: BSC_METADATA_OPTIMIZER_PKG.logProgress('INIT', '# of Indics now 2 '||BSC_METADATA_OPTIMIZER_PKG.gIndicators.count||', BSC_METADATA_OPTIMIZER_PKG.gnumIndics4 ='||BSC_METADATA_OPTIMIZER_PKG.gnumIndics4);

Line 4604: BSC_METADATA_OPTIMIZER_PKG.logProgress('INIT', '# of Indics now 2 '||BSC_METADATA_OPTIMIZER_PKG.gIndicators.count||', BSC_METADATA_OPTIMIZER_PKG.gnumIndics4 ='||BSC_METADATA_OPTIMIZER_PKG.gnumIndics4);

4600: AddIndicator( BSC_METADATA_OPTIMIZER_PKG.gIndicators, l_Code, l_name, l_indicatorType, l_ConfigType,
4601: l_per_inter, l_OptimizationMode, l_action_flag, l_share_flag, l_source_indicator, l_edw_flag, l_impl_type);
4602: END Loop;
4603: CLOSE cv;
4604: BSC_METADATA_OPTIMIZER_PKG.logProgress('INIT', '# of Indics now 2 '||BSC_METADATA_OPTIMIZER_PKG.gIndicators.count||', BSC_METADATA_OPTIMIZER_PKG.gnumIndics4 ='||BSC_METADATA_OPTIMIZER_PKG.gnumIndics4);
4605: writeTmp(' # of indicators now 2= '||BSC_METADATA_OPTIMIZER_PKG.gIndicators.count||
4606: ', BSC_METADATA_OPTIMIZER_PKG.gnumIndics4 ='||BSC_METADATA_OPTIMIZER_PKG.gnumIndics4 , fnd_log.level_statement, false);
4607: strWhereInIndics := Get_New_Big_In_Cond_Number( 1, 'INDICATOR');
4608: strWhereNotInIndics := null;

Line 4605: writeTmp(' # of indicators now 2= '||BSC_METADATA_OPTIMIZER_PKG.gIndicators.count||

4601: l_per_inter, l_OptimizationMode, l_action_flag, l_share_flag, l_source_indicator, l_edw_flag, l_impl_type);
4602: END Loop;
4603: CLOSE cv;
4604: BSC_METADATA_OPTIMIZER_PKG.logProgress('INIT', '# of Indics now 2 '||BSC_METADATA_OPTIMIZER_PKG.gIndicators.count||', BSC_METADATA_OPTIMIZER_PKG.gnumIndics4 ='||BSC_METADATA_OPTIMIZER_PKG.gnumIndics4);
4605: writeTmp(' # of indicators now 2= '||BSC_METADATA_OPTIMIZER_PKG.gIndicators.count||
4606: ', BSC_METADATA_OPTIMIZER_PKG.gnumIndics4 ='||BSC_METADATA_OPTIMIZER_PKG.gnumIndics4 , fnd_log.level_statement, false);
4607: strWhereInIndics := Get_New_Big_In_Cond_Number( 1, 'INDICATOR');
4608: strWhereNotInIndics := null;
4609: IF (BSC_METADATA_OPTIMIZER_PKG.garrIndics.count>0) THEN

Line 4606: ', BSC_METADATA_OPTIMIZER_PKG.gnumIndics4 ='||BSC_METADATA_OPTIMIZER_PKG.gnumIndics4 , fnd_log.level_statement, false);

4602: END Loop;
4603: CLOSE cv;
4604: BSC_METADATA_OPTIMIZER_PKG.logProgress('INIT', '# of Indics now 2 '||BSC_METADATA_OPTIMIZER_PKG.gIndicators.count||', BSC_METADATA_OPTIMIZER_PKG.gnumIndics4 ='||BSC_METADATA_OPTIMIZER_PKG.gnumIndics4);
4605: writeTmp(' # of indicators now 2= '||BSC_METADATA_OPTIMIZER_PKG.gIndicators.count||
4606: ', BSC_METADATA_OPTIMIZER_PKG.gnumIndics4 ='||BSC_METADATA_OPTIMIZER_PKG.gnumIndics4 , fnd_log.level_statement, false);
4607: strWhereInIndics := Get_New_Big_In_Cond_Number( 1, 'INDICATOR');
4608: strWhereNotInIndics := null;
4609: IF (BSC_METADATA_OPTIMIZER_PKG.garrIndics.count>0) THEN
4610: /*FOR i IN BSC_METADATA_OPTIMIZER_PKG.garrIndics.first..BSC_METADATA_OPTIMIZER_PKG.garrIndics.last LOOP

Line 4609: IF (BSC_METADATA_OPTIMIZER_PKG.garrIndics.count>0) THEN

4605: writeTmp(' # of indicators now 2= '||BSC_METADATA_OPTIMIZER_PKG.gIndicators.count||
4606: ', BSC_METADATA_OPTIMIZER_PKG.gnumIndics4 ='||BSC_METADATA_OPTIMIZER_PKG.gnumIndics4 , fnd_log.level_statement, false);
4607: strWhereInIndics := Get_New_Big_In_Cond_Number( 1, 'INDICATOR');
4608: strWhereNotInIndics := null;
4609: IF (BSC_METADATA_OPTIMIZER_PKG.garrIndics.count>0) THEN
4610: /*FOR i IN BSC_METADATA_OPTIMIZER_PKG.garrIndics.first..BSC_METADATA_OPTIMIZER_PKG.garrIndics.last LOOP
4611: Add_Value_Big_In_Cond_Number( 1, BSC_METADATA_OPTIMIZER_PKG.garrIndics(i));
4612: END LOOP;*/
4613: Add_value_bulk(1, BSC_METADATA_OPTIMIZER_PKG.garrIndics);

Line 4610: /*FOR i IN BSC_METADATA_OPTIMIZER_PKG.garrIndics.first..BSC_METADATA_OPTIMIZER_PKG.garrIndics.last LOOP

4606: ', BSC_METADATA_OPTIMIZER_PKG.gnumIndics4 ='||BSC_METADATA_OPTIMIZER_PKG.gnumIndics4 , fnd_log.level_statement, false);
4607: strWhereInIndics := Get_New_Big_In_Cond_Number( 1, 'INDICATOR');
4608: strWhereNotInIndics := null;
4609: IF (BSC_METADATA_OPTIMIZER_PKG.garrIndics.count>0) THEN
4610: /*FOR i IN BSC_METADATA_OPTIMIZER_PKG.garrIndics.first..BSC_METADATA_OPTIMIZER_PKG.garrIndics.last LOOP
4611: Add_Value_Big_In_Cond_Number( 1, BSC_METADATA_OPTIMIZER_PKG.garrIndics(i));
4612: END LOOP;*/
4613: Add_value_bulk(1, BSC_METADATA_OPTIMIZER_PKG.garrIndics);
4614: END IF;

Line 4611: Add_Value_Big_In_Cond_Number( 1, BSC_METADATA_OPTIMIZER_PKG.garrIndics(i));

4607: strWhereInIndics := Get_New_Big_In_Cond_Number( 1, 'INDICATOR');
4608: strWhereNotInIndics := null;
4609: IF (BSC_METADATA_OPTIMIZER_PKG.garrIndics.count>0) THEN
4610: /*FOR i IN BSC_METADATA_OPTIMIZER_PKG.garrIndics.first..BSC_METADATA_OPTIMIZER_PKG.garrIndics.last LOOP
4611: Add_Value_Big_In_Cond_Number( 1, BSC_METADATA_OPTIMIZER_PKG.garrIndics(i));
4612: END LOOP;*/
4613: Add_value_bulk(1, BSC_METADATA_OPTIMIZER_PKG.garrIndics);
4614: END IF;
4615: strWhereNotInIndics := 'NOT ('|| strWhereInIndics ||')';

Line 4613: Add_value_bulk(1, BSC_METADATA_OPTIMIZER_PKG.garrIndics);

4609: IF (BSC_METADATA_OPTIMIZER_PKG.garrIndics.count>0) THEN
4610: /*FOR i IN BSC_METADATA_OPTIMIZER_PKG.garrIndics.first..BSC_METADATA_OPTIMIZER_PKG.garrIndics.last LOOP
4611: Add_Value_Big_In_Cond_Number( 1, BSC_METADATA_OPTIMIZER_PKG.garrIndics(i));
4612: END LOOP;*/
4613: Add_value_bulk(1, BSC_METADATA_OPTIMIZER_PKG.garrIndics);
4614: END IF;
4615: strWhereNotInIndics := 'NOT ('|| strWhereInIndics ||')';
4616:
4617: --We need to update the related indicators' prototype_flag as 4 in bsc_kpis_b .

Line 4621: BSC_METADATA_OPTIMIZER_PKG.logProgress('INIT', 'Mark indics for non struc changes');

4617: --We need to update the related indicators' prototype_flag as 4 in bsc_kpis_b .
4618: -- Designer is only flagging the indicators
4619: --that are using the measure direclty. We need to flag other indicators
4620: --using the same measures alone or as part of a formula.
4621: BSC_METADATA_OPTIMIZER_PKG.logProgress('INIT', 'Mark indics for non struc changes');
4622: IF BSC_METADATA_OPTIMIZER_PKG.gnumIndics4 > 0 THEN
4623: MarkIndicsForNonStrucChanges;
4624: --Add the indicators from garrIndics4() to gIndicadores
4625: strWhereInIndics4 := Get_New_Big_In_Cond_Number( 2, 'INDICATOR');

Line 4622: IF BSC_METADATA_OPTIMIZER_PKG.gnumIndics4 > 0 THEN

4618: -- Designer is only flagging the indicators
4619: --that are using the measure direclty. We need to flag other indicators
4620: --using the same measures alone or as part of a formula.
4621: BSC_METADATA_OPTIMIZER_PKG.logProgress('INIT', 'Mark indics for non struc changes');
4622: IF BSC_METADATA_OPTIMIZER_PKG.gnumIndics4 > 0 THEN
4623: MarkIndicsForNonStrucChanges;
4624: --Add the indicators from garrIndics4() to gIndicadores
4625: strWhereInIndics4 := Get_New_Big_In_Cond_Number( 2, 'INDICATOR');
4626: /*i:= 0;

Line 4628: exit when i = BSC_METADATA_OPTIMIZER_PKG.gnumIndics4;

4624: --Add the indicators from garrIndics4() to gIndicadores
4625: strWhereInIndics4 := Get_New_Big_In_Cond_Number( 2, 'INDICATOR');
4626: /*i:= 0;
4627: LOOP
4628: exit when i = BSC_METADATA_OPTIMIZER_PKG.gnumIndics4;
4629: Add_Value_Big_In_Cond_Number( 2, BSC_METADATA_OPTIMIZER_PKG.garrIndics4(i));
4630: i:= i+1;
4631: END LOOP;*/
4632: Add_Value_Bulk(2, BSC_METADATA_OPTIMIZER_PKG.garrIndics4);

Line 4629: Add_Value_Big_In_Cond_Number( 2, BSC_METADATA_OPTIMIZER_PKG.garrIndics4(i));

4625: strWhereInIndics4 := Get_New_Big_In_Cond_Number( 2, 'INDICATOR');
4626: /*i:= 0;
4627: LOOP
4628: exit when i = BSC_METADATA_OPTIMIZER_PKG.gnumIndics4;
4629: Add_Value_Big_In_Cond_Number( 2, BSC_METADATA_OPTIMIZER_PKG.garrIndics4(i));
4630: i:= i+1;
4631: END LOOP;*/
4632: Add_Value_Bulk(2, BSC_METADATA_OPTIMIZER_PKG.garrIndics4);
4633: strWhereNotInIndics4 := 'NOT (' || strWhereInIndics4 || ')';

Line 4632: Add_Value_Bulk(2, BSC_METADATA_OPTIMIZER_PKG.garrIndics4);

4628: exit when i = BSC_METADATA_OPTIMIZER_PKG.gnumIndics4;
4629: Add_Value_Big_In_Cond_Number( 2, BSC_METADATA_OPTIMIZER_PKG.garrIndics4(i));
4630: i:= i+1;
4631: END LOOP;*/
4632: Add_Value_Bulk(2, BSC_METADATA_OPTIMIZER_PKG.garrIndics4);
4633: strWhereNotInIndics4 := 'NOT (' || strWhereInIndics4 || ')';
4634: END IF; -- numIndics4 >0
4635:
4636: --BSC-MV Note: IF the summarization level was changed, we need to add all indicators

Line 4639: IF BSC_METADATA_OPTIMIZER_PKG.g_Sum_Level_Change <> 0 THEN

4635:
4636: --BSC-MV Note: IF the summarization level was changed, we need to add all indicators
4637: --in production (all indicators not for structural changes or for non-structural changes)
4638: --to the collection of indicators
4639: IF BSC_METADATA_OPTIMIZER_PKG.g_Sum_Level_Change <> 0 THEN
4640: --There is change of summarization level
4641: l_stmt := 'SELECT DISTINCT INDICATOR, NAME, PROTOTYPE_FLAG, INDICATOR_TYPE,
4642: CONFIG_TYPE, PERIODICITY_ID, SHARE_FLAG, SOURCE_INDICATOR,
4643: EDW_FLAG FROM BSC_KPIS_VL ';

Line 4646: IF (BSC_METADATA_OPTIMIZER_PKG.gnumIndics > 0) And (BSC_METADATA_OPTIMIZER_PKG.gnumIndics4 > 0) THEN

4642: CONFIG_TYPE, PERIODICITY_ID, SHARE_FLAG, SOURCE_INDICATOR,
4643: EDW_FLAG FROM BSC_KPIS_VL ';
4644: -- added for selected indicators
4645: l_stmt := l_stmt ||' WHERE INDICATOR IN (SELECT INDICATOR FROM BSC_TMP_OPT_UI_KPIS WHERE process_id=:1) ';
4646: IF (BSC_METADATA_OPTIMIZER_PKG.gnumIndics > 0) And (BSC_METADATA_OPTIMIZER_PKG.gnumIndics4 > 0) THEN
4647: l_stmt := l_stmt ||' AND (' || strWhereNotInIndics || ') AND ('|| strWhereNotInIndics4 || ')';
4648: ELSIF (BSC_METADATA_OPTIMIZER_PKG.gnumIndics > 0) THEN
4649: l_stmt := l_stmt ||' AND (' || strWhereNotInIndics || ')';
4650: ELSIF (BSC_METADATA_OPTIMIZER_PKG.gnumIndics4 > 0) THEN

Line 4648: ELSIF (BSC_METADATA_OPTIMIZER_PKG.gnumIndics > 0) THEN

4644: -- added for selected indicators
4645: l_stmt := l_stmt ||' WHERE INDICATOR IN (SELECT INDICATOR FROM BSC_TMP_OPT_UI_KPIS WHERE process_id=:1) ';
4646: IF (BSC_METADATA_OPTIMIZER_PKG.gnumIndics > 0) And (BSC_METADATA_OPTIMIZER_PKG.gnumIndics4 > 0) THEN
4647: l_stmt := l_stmt ||' AND (' || strWhereNotInIndics || ') AND ('|| strWhereNotInIndics4 || ')';
4648: ELSIF (BSC_METADATA_OPTIMIZER_PKG.gnumIndics > 0) THEN
4649: l_stmt := l_stmt ||' AND (' || strWhereNotInIndics || ')';
4650: ELSIF (BSC_METADATA_OPTIMIZER_PKG.gnumIndics4 > 0) THEN
4651: l_stmt := l_stmt ||' AND (' || strWhereNotInIndics4 || ')';
4652: End IF;

Line 4650: ELSIF (BSC_METADATA_OPTIMIZER_PKG.gnumIndics4 > 0) THEN

4646: IF (BSC_METADATA_OPTIMIZER_PKG.gnumIndics > 0) And (BSC_METADATA_OPTIMIZER_PKG.gnumIndics4 > 0) THEN
4647: l_stmt := l_stmt ||' AND (' || strWhereNotInIndics || ') AND ('|| strWhereNotInIndics4 || ')';
4648: ELSIF (BSC_METADATA_OPTIMIZER_PKG.gnumIndics > 0) THEN
4649: l_stmt := l_stmt ||' AND (' || strWhereNotInIndics || ')';
4650: ELSIF (BSC_METADATA_OPTIMIZER_PKG.gnumIndics4 > 0) THEN
4651: l_stmt := l_stmt ||' AND (' || strWhereNotInIndics4 || ')';
4652: End IF;
4653: l_stmt := l_stmt ||' ORDER BY INDICATOR';
4654: writeTmp(' Finding indicators for MV level change : '||l_stmt, fnd_log.level_statement, false);

Line 4655: OPEN cv FOR l_stmt using BSC_METADATA_OPTIMIZER_PKG.g_processID;

4651: l_stmt := l_stmt ||' AND (' || strWhereNotInIndics4 || ')';
4652: End IF;
4653: l_stmt := l_stmt ||' ORDER BY INDICATOR';
4654: writeTmp(' Finding indicators for MV level change : '||l_stmt, fnd_log.level_statement, false);
4655: OPEN cv FOR l_stmt using BSC_METADATA_OPTIMIZER_PKG.g_processID;
4656: LOOP
4657: FETCH cv INTO l_code, l_name, l_action_flag, l_indicatorType,
4658: l_configType, l_per_inter, l_share_flag, l_source_indicator, l_edw_flag;
4659: EXIT WHEN cv%NOTFOUND;

Line 4661: l_impl_type := getKPIPropertyValue(l_Code, BSC_METADATA_OPTIMIZER_PKG.IMPL_TYPE, 1);

4657: FETCH cv INTO l_code, l_name, l_action_flag, l_indicatorType,
4658: l_configType, l_per_inter, l_share_flag, l_source_indicator, l_edw_flag;
4659: EXIT WHEN cv%NOTFOUND;
4660: l_OptimizationMode := getKPIPropertyValue(l_Code, 'DB_TRANSFORM', 1);
4661: l_impl_type := getKPIPropertyValue(l_Code, BSC_METADATA_OPTIMIZER_PKG.IMPL_TYPE, 1);
4662: IF l_Action_Flag <> 2 THEN
4663: l_Action_Flag := 0;
4664: End IF;
4665: AddIndicator( BSC_METADATA_OPTIMIZER_PKG.gIndicators, l_Code, l_Name, l_IndicatorType, l_ConfigType,

Line 4665: AddIndicator( BSC_METADATA_OPTIMIZER_PKG.gIndicators, l_Code, l_Name, l_IndicatorType, l_ConfigType,

4661: l_impl_type := getKPIPropertyValue(l_Code, BSC_METADATA_OPTIMIZER_PKG.IMPL_TYPE, 1);
4662: IF l_Action_Flag <> 2 THEN
4663: l_Action_Flag := 0;
4664: End IF;
4665: AddIndicator( BSC_METADATA_OPTIMIZER_PKG.gIndicators, l_Code, l_Name, l_IndicatorType, l_ConfigType,
4666: l_Per_Inter, l_OptimizationMode, l_Action_Flag, l_Share_Flag, l_Source_Indicator, l_EDW_Flag, l_impl_type);
4667: END LOOP;
4668: CLOSE CV;
4669: END IF;

Line 4671: BSC_METADATA_OPTIMIZER_PKG.logProgress('INIT', ' # of indicators to process = '||BSC_METADATA_OPTIMIZER_PKG.gIndicators.count);

4667: END LOOP;
4668: CLOSE CV;
4669: END IF;
4670: END IF; -- mode <>0
4671: BSC_METADATA_OPTIMIZER_PKG.logProgress('INIT', ' # of indicators to process = '||BSC_METADATA_OPTIMIZER_PKG.gIndicators.count);
4672: writeTmp(' # of indicators to process = '||BSC_METADATA_OPTIMIZER_PKG.gIndicators.count,FND_LOG.LEVEL_STATEMENT, true);
4673:
4674: -- populate the variables in bsc_dbgen_metadata_reader as it needs to consider the
4675: -- objectives in the current run as also production

Line 4672: writeTmp(' # of indicators to process = '||BSC_METADATA_OPTIMIZER_PKG.gIndicators.count,FND_LOG.LEVEL_STATEMENT, true);

4668: CLOSE CV;
4669: END IF;
4670: END IF; -- mode <>0
4671: BSC_METADATA_OPTIMIZER_PKG.logProgress('INIT', ' # of indicators to process = '||BSC_METADATA_OPTIMIZER_PKG.gIndicators.count);
4672: writeTmp(' # of indicators to process = '||BSC_METADATA_OPTIMIZER_PKG.gIndicators.count,FND_LOG.LEVEL_STATEMENT, true);
4673:
4674: -- populate the variables in bsc_dbgen_metadata_reader as it needs to consider the
4675: -- objectives in the current run as also production
4676: writeTmp('Checking if AW objectives exists and marking them');

Line 4677: l_counter := BSC_METADATA_OPTIMIZER_PKG.gIndicators.first;

4673:
4674: -- populate the variables in bsc_dbgen_metadata_reader as it needs to consider the
4675: -- objectives in the current run as also production
4676: writeTmp('Checking if AW objectives exists and marking them');
4677: l_counter := BSC_METADATA_OPTIMIZER_PKG.gIndicators.first;
4678: loop
4679: exit when BSC_METADATA_OPTIMIZER_PKG.gIndicators.count=0;
4680: if (BSC_METADATA_OPTIMIZER_PKG.gIndicators(l_counter).impl_type =2 AND
4681: BSC_METADATA_OPTIMIZER_PKG.gIndicators(l_counter).action_flag<>2) then -- aw

Line 4679: exit when BSC_METADATA_OPTIMIZER_PKG.gIndicators.count=0;

4675: -- objectives in the current run as also production
4676: writeTmp('Checking if AW objectives exists and marking them');
4677: l_counter := BSC_METADATA_OPTIMIZER_PKG.gIndicators.first;
4678: loop
4679: exit when BSC_METADATA_OPTIMIZER_PKG.gIndicators.count=0;
4680: if (BSC_METADATA_OPTIMIZER_PKG.gIndicators(l_counter).impl_type =2 AND
4681: BSC_METADATA_OPTIMIZER_PKG.gIndicators(l_counter).action_flag<>2) then -- aw
4682: l_aw_kpi_list(l_aw_kpi_list.count+1):= to_char(BSC_METADATA_OPTIMIZER_PKG.gIndicators(l_counter).code);
4683: end if;

Line 4680: if (BSC_METADATA_OPTIMIZER_PKG.gIndicators(l_counter).impl_type =2 AND

4676: writeTmp('Checking if AW objectives exists and marking them');
4677: l_counter := BSC_METADATA_OPTIMIZER_PKG.gIndicators.first;
4678: loop
4679: exit when BSC_METADATA_OPTIMIZER_PKG.gIndicators.count=0;
4680: if (BSC_METADATA_OPTIMIZER_PKG.gIndicators(l_counter).impl_type =2 AND
4681: BSC_METADATA_OPTIMIZER_PKG.gIndicators(l_counter).action_flag<>2) then -- aw
4682: l_aw_kpi_list(l_aw_kpi_list.count+1):= to_char(BSC_METADATA_OPTIMIZER_PKG.gIndicators(l_counter).code);
4683: end if;
4684: EXIT WHEN l_counter=BSC_METADATA_OPTIMIZER_PKG.gIndicators.last;

Line 4681: BSC_METADATA_OPTIMIZER_PKG.gIndicators(l_counter).action_flag<>2) then -- aw

4677: l_counter := BSC_METADATA_OPTIMIZER_PKG.gIndicators.first;
4678: loop
4679: exit when BSC_METADATA_OPTIMIZER_PKG.gIndicators.count=0;
4680: if (BSC_METADATA_OPTIMIZER_PKG.gIndicators(l_counter).impl_type =2 AND
4681: BSC_METADATA_OPTIMIZER_PKG.gIndicators(l_counter).action_flag<>2) then -- aw
4682: l_aw_kpi_list(l_aw_kpi_list.count+1):= to_char(BSC_METADATA_OPTIMIZER_PKG.gIndicators(l_counter).code);
4683: end if;
4684: EXIT WHEN l_counter=BSC_METADATA_OPTIMIZER_PKG.gIndicators.last;
4685: l_counter := BSC_METADATA_OPTIMIZER_PKG.gIndicators.next(l_counter);

Line 4682: l_aw_kpi_list(l_aw_kpi_list.count+1):= to_char(BSC_METADATA_OPTIMIZER_PKG.gIndicators(l_counter).code);

4678: loop
4679: exit when BSC_METADATA_OPTIMIZER_PKG.gIndicators.count=0;
4680: if (BSC_METADATA_OPTIMIZER_PKG.gIndicators(l_counter).impl_type =2 AND
4681: BSC_METADATA_OPTIMIZER_PKG.gIndicators(l_counter).action_flag<>2) then -- aw
4682: l_aw_kpi_list(l_aw_kpi_list.count+1):= to_char(BSC_METADATA_OPTIMIZER_PKG.gIndicators(l_counter).code);
4683: end if;
4684: EXIT WHEN l_counter=BSC_METADATA_OPTIMIZER_PKG.gIndicators.last;
4685: l_counter := BSC_METADATA_OPTIMIZER_PKG.gIndicators.next(l_counter);
4686: end loop;

Line 4684: EXIT WHEN l_counter=BSC_METADATA_OPTIMIZER_PKG.gIndicators.last;

4680: if (BSC_METADATA_OPTIMIZER_PKG.gIndicators(l_counter).impl_type =2 AND
4681: BSC_METADATA_OPTIMIZER_PKG.gIndicators(l_counter).action_flag<>2) then -- aw
4682: l_aw_kpi_list(l_aw_kpi_list.count+1):= to_char(BSC_METADATA_OPTIMIZER_PKG.gIndicators(l_counter).code);
4683: end if;
4684: EXIT WHEN l_counter=BSC_METADATA_OPTIMIZER_PKG.gIndicators.last;
4685: l_counter := BSC_METADATA_OPTIMIZER_PKG.gIndicators.next(l_counter);
4686: end loop;
4687:
4688: if (l_aw_kpi_list.count>0) then

Line 4685: l_counter := BSC_METADATA_OPTIMIZER_PKG.gIndicators.next(l_counter);

4681: BSC_METADATA_OPTIMIZER_PKG.gIndicators(l_counter).action_flag<>2) then -- aw
4682: l_aw_kpi_list(l_aw_kpi_list.count+1):= to_char(BSC_METADATA_OPTIMIZER_PKG.gIndicators(l_counter).code);
4683: end if;
4684: EXIT WHEN l_counter=BSC_METADATA_OPTIMIZER_PKG.gIndicators.last;
4685: l_counter := BSC_METADATA_OPTIMIZER_PKG.gIndicators.next(l_counter);
4686: end loop;
4687:
4688: if (l_aw_kpi_list.count>0) then
4689: bsc_dbgen_metadata_reader.mark_facts_in_process(l_aw_kpi_list);

Line 4693: write_this(BSC_METADATA_OPTIMIZER_PKG.gIndicators, FND_LOG.LEVEL_STATEMENT, false);

4689: bsc_dbgen_metadata_reader.mark_facts_in_process(l_aw_kpi_list);
4690: end if;
4691:
4692: writeTmp( 'Completed InitIndicators, system time is '||get_time, FND_LOG.LEVEL_STATEMENT, true);
4693: write_this(BSC_METADATA_OPTIMIZER_PKG.gIndicators, FND_LOG.LEVEL_STATEMENT, false);
4694:
4695: EXCEPTION WHEN OTHERS THEN
4696: l_error := sqlerrm;
4697: writeTmp('Exception in InitIndicators : '||l_error, FND_LOG.LEVEL_EXCEPTION, true);

Line 4760: IF (BSC_METADATA_OPTIMIZER_PKG.gBscSchema IS NULL) THEN

4756:
4757: BEGIN
4758: l_count := 0;
4759:
4760: IF (BSC_METADATA_OPTIMIZER_PKG.gBscSchema IS NULL) THEN
4761: BSC_METADATA_OPTIMIZER_PKG.gBscSchema := getBSCSchema ;
4762: END IF;
4763:
4764: open cTables(table_name, BSC_METADATA_OPTIMIZER_PKG.gBscSchema);

Line 4761: BSC_METADATA_OPTIMIZER_PKG.gBscSchema := getBSCSchema ;

4757: BEGIN
4758: l_count := 0;
4759:
4760: IF (BSC_METADATA_OPTIMIZER_PKG.gBscSchema IS NULL) THEN
4761: BSC_METADATA_OPTIMIZER_PKG.gBscSchema := getBSCSchema ;
4762: END IF;
4763:
4764: open cTables(table_name, BSC_METADATA_OPTIMIZER_PKG.gBscSchema);
4765: FETCH cTables into l_count;

Line 4764: open cTables(table_name, BSC_METADATA_OPTIMIZER_PKG.gBscSchema);

4760: IF (BSC_METADATA_OPTIMIZER_PKG.gBscSchema IS NULL) THEN
4761: BSC_METADATA_OPTIMIZER_PKG.gBscSchema := getBSCSchema ;
4762: END IF;
4763:
4764: open cTables(table_name, BSC_METADATA_OPTIMIZER_PKG.gBscSchema);
4765: FETCH cTables into l_count;
4766: IF (cTables%NOTFOUND) THEN
4767: CLOSE cTables;
4768: return false;

Line 4791: IF (BSC_METADATA_OPTIMIZER_PKG.gStorageClause IS NULL) THEN

4787: l_stmt VARCHAR2(32000) := null;
4788: l_val NUMBER;
4789: cv CurTyp;
4790: BEGIN
4791: IF (BSC_METADATA_OPTIMIZER_PKG.gStorageClause IS NULL) THEN
4792: BSC_METADATA_OPTIMIZER_PKG.gStorageClause := getStorageClause;
4793: END IF;
4794: l_stmt := 'create table ' ||CopyTableName ||' TABLESPACE ';
4795: IF (TbsName IS NULL) THEN

Line 4792: BSC_METADATA_OPTIMIZER_PKG.gStorageClause := getStorageClause;

4788: l_val NUMBER;
4789: cv CurTyp;
4790: BEGIN
4791: IF (BSC_METADATA_OPTIMIZER_PKG.gStorageClause IS NULL) THEN
4792: BSC_METADATA_OPTIMIZER_PKG.gStorageClause := getStorageClause;
4793: END IF;
4794: l_stmt := 'create table ' ||CopyTableName ||' TABLESPACE ';
4795: IF (TbsName IS NULL) THEN
4796: l_stmt := l_stmt ||BSC_APPS.get_tablespace_name(BSC_APPS.other_table_tbs_type);

Line 4809: bsc_metadata_optimizer_pkg.logprogress('INIT', 'Error while creating '||CopyTableName);

4805: CLOSE cv;
4806: writeTmp(l_stmt);
4807: writeTmp('# of rows inserted into '||CopyTableName||':'||l_val, FND_LOG.LEVEL_STATEMENT, false);
4808: exception when others then
4809: bsc_metadata_optimizer_pkg.logprogress('INIT', 'Error while creating '||CopyTableName);
4810: writeTmp('Exception in CreateCopyTable : '||sqlerrm, FND_LOG.LEVEL_EXCEPTION, true);
4811: writeTmp('Statement executed was : '||l_stmt, FND_LOG.LEVEL_EXCEPTION, true);
4812: raise;
4813:

Line 4857: IF (BSC_METADATA_OPTIMIZER_PKG.gBscSchema IS NULL) THEN

4853: BEGIN
4854: uIndex := 1;
4855: nIndex := 1;
4856:
4857: IF (BSC_METADATA_OPTIMIZER_PKG.gBscSchema IS NULL) THEN
4858: BSC_METADATA_OPTIMIZER_PKG.gBscSchema := BSC_MO_HELPER_PKG.getBSCSchema;
4859: END IF;
4860:
4861: IF (BSC_METADATA_OPTIMIZER_PKG.gStorageClause IS NULL) THEN

Line 4858: BSC_METADATA_OPTIMIZER_PKG.gBscSchema := BSC_MO_HELPER_PKG.getBSCSchema;

4854: uIndex := 1;
4855: nIndex := 1;
4856:
4857: IF (BSC_METADATA_OPTIMIZER_PKG.gBscSchema IS NULL) THEN
4858: BSC_METADATA_OPTIMIZER_PKG.gBscSchema := BSC_MO_HELPER_PKG.getBSCSchema;
4859: END IF;
4860:
4861: IF (BSC_METADATA_OPTIMIZER_PKG.gStorageClause IS NULL) THEN
4862: BSC_METADATA_OPTIMIZER_PKG.gStorageClause := getStorageClause;

Line 4861: IF (BSC_METADATA_OPTIMIZER_PKG.gStorageClause IS NULL) THEN

4857: IF (BSC_METADATA_OPTIMIZER_PKG.gBscSchema IS NULL) THEN
4858: BSC_METADATA_OPTIMIZER_PKG.gBscSchema := BSC_MO_HELPER_PKG.getBSCSchema;
4859: END IF;
4860:
4861: IF (BSC_METADATA_OPTIMIZER_PKG.gStorageClause IS NULL) THEN
4862: BSC_METADATA_OPTIMIZER_PKG.gStorageClause := getStorageClause;
4863: END IF;
4864:
4865: OPEN cIndex (BSC_METADATA_OPTIMIZER_PKG.gBscSchema);

Line 4862: BSC_METADATA_OPTIMIZER_PKG.gStorageClause := getStorageClause;

4858: BSC_METADATA_OPTIMIZER_PKG.gBscSchema := BSC_MO_HELPER_PKG.getBSCSchema;
4859: END IF;
4860:
4861: IF (BSC_METADATA_OPTIMIZER_PKG.gStorageClause IS NULL) THEN
4862: BSC_METADATA_OPTIMIZER_PKG.gStorageClause := getStorageClause;
4863: END IF;
4864:
4865: OPEN cIndex (BSC_METADATA_OPTIMIZER_PKG.gBscSchema);
4866:

Line 4865: OPEN cIndex (BSC_METADATA_OPTIMIZER_PKG.gBscSchema);

4861: IF (BSC_METADATA_OPTIMIZER_PKG.gStorageClause IS NULL) THEN
4862: BSC_METADATA_OPTIMIZER_PKG.gStorageClause := getStorageClause;
4863: END IF;
4864:
4865: OPEN cIndex (BSC_METADATA_OPTIMIZER_PKG.gBscSchema);
4866:
4867: LOOP
4868: FETCH cIndex INTO IndexName, isUnique;
4869: EXIT WHEN cIndex%NOTFOUND;

Line 4872: OPEN cIndexCols(IndexName, BSC_METADATA_OPTIMIZER_PKG.gBscSchema);

4868: FETCH cIndex INTO IndexName, isUnique;
4869: EXIT WHEN cIndex%NOTFOUND;
4870: LstColumns := null;
4871:
4872: OPEN cIndexCols(IndexName, BSC_METADATA_OPTIMIZER_PKG.gBscSchema);
4873:
4874: LOOP
4875: FETCH cIndexCols INTO l_column_name;
4876: EXIT WHEN cIndexCols%NOTFOUND;

Line 4889: l_tmp_ses := to_char(BSC_METADATA_OPTIMIZER_PKG.g_session_id);

4885: --bug fix 5416808 amitgupt, index name len should not exceed 30 chars
4886: -- assuming that table will not have MORE THAN 99 INDEXES
4887: if(length(CopyTableName)>26) then
4888: l_tmp_index := INSTR(CopyTableName,'_',-1,1);
4889: l_tmp_ses := to_char(BSC_METADATA_OPTIMIZER_PKG.g_session_id);
4890: l_len_ses := length(l_tmp_ses);
4891: newIndexName :=
4892: substr(CopyTableName,1,l_tmp_index)||substr(l_tmp_ses,l_len_ses-(25-l_tmp_index));
4893: else

Line 4913: l_stmt := l_stmt|| ' ' || BSC_METADATA_OPTIMIZER_PKG.gStorageClause;

4909: l_stmt := l_stmt||' TABLESPACE '|| BSC_APPS.get_tablespace_name(BSC_APPS.other_table_tbs_type);
4910: ELSE
4911: l_stmt := l_stmt||' TABLESPACE '|| TbsName;
4912: END IF;
4913: l_stmt := l_stmt|| ' ' || BSC_METADATA_OPTIMIZER_PKG.gStorageClause;
4914: Do_DDL(l_stmt, ad_ddl.create_index, newIndexName);
4915: End If;
4916:
4917: END LOOP;

Line 4920: bsc_metadata_optimizer_pkg.logprogress('INIT', 'Error while creating index'||IndexName);

4916:
4917: END LOOP;
4918: Close cIndex;
4919: exception when others then
4920: bsc_metadata_optimizer_pkg.logprogress('INIT', 'Error while creating index'||IndexName);
4921: writeTmp('Exception in CreateCopyIndexes : '||sqlerrm, FND_LOG.LEVEL_EXCEPTION, true);
4922: writeTmp('Statement executed was : '||l_stmt, FND_LOG.LEVEL_EXCEPTION, true);
4923: raise;
4924:

Line 4950: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN

4946: WHERE R.SOURCE_TABLE_NAME = T.TABLE_NAME
4947: AND T.TABLE_TYPE = 0;
4948:
4949: BEGIN
4950: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
4951: writeTmp( 'Inside CreateBackupBaseTables');
4952: END IF;
4953:
4954:

Line 4961: bsc_metadata_optimizer_pkg.logprogress('INIT', 'Backing up '||BaseTable);

4957: FETCH cBaseTables INTO BaseTable;
4958: EXIT when cBaseTables%NOTFOUND;
4959: IF TableExists(BaseTable) THEN
4960: DropTable( BaseTable|| '_BAK');
4961: bsc_metadata_optimizer_pkg.logprogress('INIT', 'Backing up '||BaseTable);
4962: CreateCopyTable(BaseTable, BaseTable|| '_BAK', BSC_METADATA_OPTIMIZER_PKG.gBaseTableTbsName);
4963: END IF;
4964: END LOOP;
4965: CLOSE cBaseTables;

Line 4962: CreateCopyTable(BaseTable, BaseTable|| '_BAK', BSC_METADATA_OPTIMIZER_PKG.gBaseTableTbsName);

4958: EXIT when cBaseTables%NOTFOUND;
4959: IF TableExists(BaseTable) THEN
4960: DropTable( BaseTable|| '_BAK');
4961: bsc_metadata_optimizer_pkg.logprogress('INIT', 'Backing up '||BaseTable);
4962: CreateCopyTable(BaseTable, BaseTable|| '_BAK', BSC_METADATA_OPTIMIZER_PKG.gBaseTableTbsName);
4963: END IF;
4964: END LOOP;
4965: CLOSE cBaseTables;
4966: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN

Line 4966: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN

4962: CreateCopyTable(BaseTable, BaseTable|| '_BAK', BSC_METADATA_OPTIMIZER_PKG.gBaseTableTbsName);
4963: END IF;
4964: END LOOP;
4965: CLOSE cBaseTables;
4966: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
4967: writeTmp( 'Compl CreateBackupBaseTables');
4968: END IF;
4969: End;
4970: */

Line 4981: table_name = UPPER(p_table) AND table_owner = bsc_metadata_optimizer_pkg.gBscSchema;

4977: l_backup_name varchar2(100);
4978: l_index_name varchar2(30);
4979: CURSOR cv_index IS
4980: SELECT index_name FROM ALL_INDEXES WHERE
4981: table_name = UPPER(p_table) AND table_owner = bsc_metadata_optimizer_pkg.gBscSchema;
4982: BEGIN
4983: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
4984: writeTmp( 'Inside backup_b_table : '||p_table);
4985: END IF;

Line 4983: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN

4979: CURSOR cv_index IS
4980: SELECT index_name FROM ALL_INDEXES WHERE
4981: table_name = UPPER(p_table) AND table_owner = bsc_metadata_optimizer_pkg.gBscSchema;
4982: BEGIN
4983: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
4984: writeTmp( 'Inside backup_b_table : '||p_table);
4985: END IF;
4986: l_backup_name := p_table||'_BAK';
4987: IF TableExists(p_table) THEN

Line 4989: EXECUTE IMMEDIATE 'DROP TABLE '||bsc_metadata_optimizer_pkg.gBscSchema||'.'||l_backup_name||' CASCADE CONSTRAINTS';

4985: END IF;
4986: l_backup_name := p_table||'_BAK';
4987: IF TableExists(p_table) THEN
4988: BEGIN
4989: EXECUTE IMMEDIATE 'DROP TABLE '||bsc_metadata_optimizer_pkg.gBscSchema||'.'||l_backup_name||' CASCADE CONSTRAINTS';
4990: EXCEPTION
4991: WHEN OTHERS THEN
4992: NULL;
4993: END;

Line 5000: bsc_metadata_optimizer_pkg.logprogress('INIT', 'Backing up '||p_table);

4996: EXCEPTION
4997: WHEN OTHERS THEN
4998: NULL;
4999: END;
5000: bsc_metadata_optimizer_pkg.logprogress('INIT', 'Backing up '||p_table);
5001: --CreateCopyTable(p_table, p_table|| '_BAK', BSC_METADATA_OPTIMIZER_PKG.gBaseTableTbsName);
5002: begin
5003: --dropping indexes first
5004: --bug fix 5647971

Line 5001: --CreateCopyTable(p_table, p_table|| '_BAK', BSC_METADATA_OPTIMIZER_PKG.gBaseTableTbsName);

4997: WHEN OTHERS THEN
4998: NULL;
4999: END;
5000: bsc_metadata_optimizer_pkg.logprogress('INIT', 'Backing up '||p_table);
5001: --CreateCopyTable(p_table, p_table|| '_BAK', BSC_METADATA_OPTIMIZER_PKG.gBaseTableTbsName);
5002: begin
5003: --dropping indexes first
5004: --bug fix 5647971
5005: FOR rec IN cv_index LOOP

Line 5006: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN

5002: begin
5003: --dropping indexes first
5004: --bug fix 5647971
5005: FOR rec IN cv_index LOOP
5006: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
5007: writeTmp( 'Dropping index '||rec.index_name);
5008: END IF;
5009: EXECUTE IMMEDIATE 'DROP INDEX '||bsc_metadata_optimizer_pkg.gBscSchema||'.'||rec.index_name;
5010: END LOOP;

Line 5009: EXECUTE IMMEDIATE 'DROP INDEX '||bsc_metadata_optimizer_pkg.gBscSchema||'.'||rec.index_name;

5005: FOR rec IN cv_index LOOP
5006: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
5007: writeTmp( 'Dropping index '||rec.index_name);
5008: END IF;
5009: EXECUTE IMMEDIATE 'DROP INDEX '||bsc_metadata_optimizer_pkg.gBscSchema||'.'||rec.index_name;
5010: END LOOP;
5011: execute immediate 'alter table '||bsc_metadata_optimizer_pkg.gBscSchema||'.'||p_table||' rename to '||l_backup_name;
5012: execute immediate 'drop synonym '||p_table;
5013: execute immediate 'create synonym '||l_backup_name||' for '||bsc_metadata_optimizer_pkg.gBscSchema||'.'||l_backup_name;

Line 5011: execute immediate 'alter table '||bsc_metadata_optimizer_pkg.gBscSchema||'.'||p_table||' rename to '||l_backup_name;

5007: writeTmp( 'Dropping index '||rec.index_name);
5008: END IF;
5009: EXECUTE IMMEDIATE 'DROP INDEX '||bsc_metadata_optimizer_pkg.gBscSchema||'.'||rec.index_name;
5010: END LOOP;
5011: execute immediate 'alter table '||bsc_metadata_optimizer_pkg.gBscSchema||'.'||p_table||' rename to '||l_backup_name;
5012: execute immediate 'drop synonym '||p_table;
5013: execute immediate 'create synonym '||l_backup_name||' for '||bsc_metadata_optimizer_pkg.gBscSchema||'.'||l_backup_name;
5014: exception when others then
5015: if sqlcode=-26563 then -- rneame not allowed, dunno why

Line 5013: execute immediate 'create synonym '||l_backup_name||' for '||bsc_metadata_optimizer_pkg.gBscSchema||'.'||l_backup_name;

5009: EXECUTE IMMEDIATE 'DROP INDEX '||bsc_metadata_optimizer_pkg.gBscSchema||'.'||rec.index_name;
5010: END LOOP;
5011: execute immediate 'alter table '||bsc_metadata_optimizer_pkg.gBscSchema||'.'||p_table||' rename to '||l_backup_name;
5012: execute immediate 'drop synonym '||p_table;
5013: execute immediate 'create synonym '||l_backup_name||' for '||bsc_metadata_optimizer_pkg.gBscSchema||'.'||l_backup_name;
5014: exception when others then
5015: if sqlcode=-26563 then -- rneame not allowed, dunno why
5016: CreateCopyTable(p_table, p_table|| '_BAK', BSC_METADATA_OPTIMIZER_PKG.gBaseTableTbsName);
5017: else

Line 5016: CreateCopyTable(p_table, p_table|| '_BAK', BSC_METADATA_OPTIMIZER_PKG.gBaseTableTbsName);

5012: execute immediate 'drop synonym '||p_table;
5013: execute immediate 'create synonym '||l_backup_name||' for '||bsc_metadata_optimizer_pkg.gBscSchema||'.'||l_backup_name;
5014: exception when others then
5015: if sqlcode=-26563 then -- rneame not allowed, dunno why
5016: CreateCopyTable(p_table, p_table|| '_BAK', BSC_METADATA_OPTIMIZER_PKG.gBaseTableTbsName);
5017: else
5018: raise;
5019: end if;
5020: end;

Line 5022: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN

5018: raise;
5019: end if;
5020: end;
5021: END IF;
5022: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
5023: writeTmp( 'Compl backup_b_table : '||p_table);
5024: END IF;
5025: End;
5026:

Line 5045: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN

5041: i number;
5042: strWhereInTables VARCHAR2(1000);
5043: BEGIN
5044: l_where_clause := null;
5045: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
5046: writeTmp( 'Inside CreateLastTables, time is '||get_time);
5047: END IF;
5048: IF (BSC_METADATA_OPTIMIZER_PKG.gBscSchema IS NULL) THEN
5049: BSC_METADATA_OPTIMIZER_PKG.gBscSchema := getBSCSchema ;

Line 5048: IF (BSC_METADATA_OPTIMIZER_PKG.gBscSchema IS NULL) THEN

5044: l_where_clause := null;
5045: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
5046: writeTmp( 'Inside CreateLastTables, time is '||get_time);
5047: END IF;
5048: IF (BSC_METADATA_OPTIMIZER_PKG.gBscSchema IS NULL) THEN
5049: BSC_METADATA_OPTIMIZER_PKG.gBscSchema := getBSCSchema ;
5050: END IF;
5051:
5052: TableName := 'BSC_DB_TABLES';

Line 5049: BSC_METADATA_OPTIMIZER_PKG.gBscSchema := getBSCSchema ;

5045: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
5046: writeTmp( 'Inside CreateLastTables, time is '||get_time);
5047: END IF;
5048: IF (BSC_METADATA_OPTIMIZER_PKG.gBscSchema IS NULL) THEN
5049: BSC_METADATA_OPTIMIZER_PKG.gBscSchema := getBSCSchema ;
5050: END IF;
5051:
5052: TableName := 'BSC_DB_TABLES';
5053:

Line 5054: IF BSC_METADATA_OPTIMIZER_PKG.gGAA_RUN_MODE <>0 AND BSC_METADATA_OPTIMIZER_PKG.gIndicators.count < l_threshold THEN

5050: END IF;
5051:
5052: TableName := 'BSC_DB_TABLES';
5053:
5054: IF BSC_METADATA_OPTIMIZER_PKG.gGAA_RUN_MODE <>0 AND BSC_METADATA_OPTIMIZER_PKG.gIndicators.count < l_threshold THEN
5055: l_where_clause := ' WHERE table_name in (
5056: SELECT SOURCE_TABLE_NAME FROM BSC_DB_TABLES_RELS
5057: CONNECT BY TABLE_NAME=prior SOURCE_TABLE_NAME
5058: start with table_name in

Line 5059: (select distinct table_name from '||BSC_METADATA_OPTIMIZER_PKG.g_kpi_tmp_table||' where indicator in

5055: l_where_clause := ' WHERE table_name in (
5056: SELECT SOURCE_TABLE_NAME FROM BSC_DB_TABLES_RELS
5057: CONNECT BY TABLE_NAME=prior SOURCE_TABLE_NAME
5058: start with table_name in
5059: (select distinct table_name from '||BSC_METADATA_OPTIMIZER_PKG.g_kpi_tmp_table||' where indicator in
5060: (select indicator from bsc_tmp_opt_ui_kpis where process_id='||BSC_METADATA_OPTIMIZER_PKG.g_processID||')
5061: )
5062: UNION
5063: SELECT TABLE_NAME FROM BSC_DB_TABLES_RELS

Line 5060: (select indicator from bsc_tmp_opt_ui_kpis where process_id='||BSC_METADATA_OPTIMIZER_PKG.g_processID||')

5056: SELECT SOURCE_TABLE_NAME FROM BSC_DB_TABLES_RELS
5057: CONNECT BY TABLE_NAME=prior SOURCE_TABLE_NAME
5058: start with table_name in
5059: (select distinct table_name from '||BSC_METADATA_OPTIMIZER_PKG.g_kpi_tmp_table||' where indicator in
5060: (select indicator from bsc_tmp_opt_ui_kpis where process_id='||BSC_METADATA_OPTIMIZER_PKG.g_processID||')
5061: )
5062: UNION
5063: SELECT TABLE_NAME FROM BSC_DB_TABLES_RELS
5064: CONNECT BY TABLE_NAME=prior SOURCE_TABLE_NAME

Line 5066: (select distinct table_name from '||BSC_METADATA_OPTIMIZER_PKG.g_kpi_tmp_table||' where indicator in

5062: UNION
5063: SELECT TABLE_NAME FROM BSC_DB_TABLES_RELS
5064: CONNECT BY TABLE_NAME=prior SOURCE_TABLE_NAME
5065: start with table_name in
5066: (select distinct table_name from '||BSC_METADATA_OPTIMIZER_PKG.g_kpi_tmp_table||' where indicator in
5067: (select indicator from bsc_tmp_opt_ui_kpis where process_id='||BSC_METADATA_OPTIMIZER_PKG.g_processID||')
5068: )
5069: )';
5070: END IF;

Line 5067: (select indicator from bsc_tmp_opt_ui_kpis where process_id='||BSC_METADATA_OPTIMIZER_PKG.g_processID||')

5063: SELECT TABLE_NAME FROM BSC_DB_TABLES_RELS
5064: CONNECT BY TABLE_NAME=prior SOURCE_TABLE_NAME
5065: start with table_name in
5066: (select distinct table_name from '||BSC_METADATA_OPTIMIZER_PKG.g_kpi_tmp_table||' where indicator in
5067: (select indicator from bsc_tmp_opt_ui_kpis where process_id='||BSC_METADATA_OPTIMIZER_PKG.g_processID||')
5068: )
5069: )';
5070: END IF;
5071: CreateCopyTable(TableName, BSC_METADATA_OPTIMIZER_PKG.g_db_tables_last, BSC_METADATA_OPTIMIZER_PKG.gSummaryTableTbsName, l_where_clause);

Line 5071: CreateCopyTable(TableName, BSC_METADATA_OPTIMIZER_PKG.g_db_tables_last, BSC_METADATA_OPTIMIZER_PKG.gSummaryTableTbsName, l_where_clause);

5067: (select indicator from bsc_tmp_opt_ui_kpis where process_id='||BSC_METADATA_OPTIMIZER_PKG.g_processID||')
5068: )
5069: )';
5070: END IF;
5071: CreateCopyTable(TableName, BSC_METADATA_OPTIMIZER_PKG.g_db_tables_last, BSC_METADATA_OPTIMIZER_PKG.gSummaryTableTbsName, l_where_clause);
5072: CreateCopyIndexes (TableName, BSC_METADATA_OPTIMIZER_PKG.g_db_tables_last, BSC_METADATA_OPTIMIZER_PKG.gSummaryIndexTbsName);
5073: dbms_stats.gather_table_stats(BSC_METADATA_OPTIMIZER_PKG.gBscSchema, BSC_METADATA_OPTIMIZER_PKG.g_db_tables_last);
5074: TableName := 'BSC_DB_TABLES_RELS';
5075: CreateCopyTable(TableName, BSC_METADATA_OPTIMIZER_PKG.g_db_table_rels_last, BSC_METADATA_OPTIMIZER_PKG.gSummaryTableTbsName, l_where_clause);

Line 5072: CreateCopyIndexes (TableName, BSC_METADATA_OPTIMIZER_PKG.g_db_tables_last, BSC_METADATA_OPTIMIZER_PKG.gSummaryIndexTbsName);

5068: )
5069: )';
5070: END IF;
5071: CreateCopyTable(TableName, BSC_METADATA_OPTIMIZER_PKG.g_db_tables_last, BSC_METADATA_OPTIMIZER_PKG.gSummaryTableTbsName, l_where_clause);
5072: CreateCopyIndexes (TableName, BSC_METADATA_OPTIMIZER_PKG.g_db_tables_last, BSC_METADATA_OPTIMIZER_PKG.gSummaryIndexTbsName);
5073: dbms_stats.gather_table_stats(BSC_METADATA_OPTIMIZER_PKG.gBscSchema, BSC_METADATA_OPTIMIZER_PKG.g_db_tables_last);
5074: TableName := 'BSC_DB_TABLES_RELS';
5075: CreateCopyTable(TableName, BSC_METADATA_OPTIMIZER_PKG.g_db_table_rels_last, BSC_METADATA_OPTIMIZER_PKG.gSummaryTableTbsName, l_where_clause);
5076: CreateCopyIndexes(TableName, BSC_METADATA_OPTIMIZER_PKG.g_db_table_rels_last, BSC_METADATA_OPTIMIZER_PKG.gSummaryIndexTbsName);

Line 5073: dbms_stats.gather_table_stats(BSC_METADATA_OPTIMIZER_PKG.gBscSchema, BSC_METADATA_OPTIMIZER_PKG.g_db_tables_last);

5069: )';
5070: END IF;
5071: CreateCopyTable(TableName, BSC_METADATA_OPTIMIZER_PKG.g_db_tables_last, BSC_METADATA_OPTIMIZER_PKG.gSummaryTableTbsName, l_where_clause);
5072: CreateCopyIndexes (TableName, BSC_METADATA_OPTIMIZER_PKG.g_db_tables_last, BSC_METADATA_OPTIMIZER_PKG.gSummaryIndexTbsName);
5073: dbms_stats.gather_table_stats(BSC_METADATA_OPTIMIZER_PKG.gBscSchema, BSC_METADATA_OPTIMIZER_PKG.g_db_tables_last);
5074: TableName := 'BSC_DB_TABLES_RELS';
5075: CreateCopyTable(TableName, BSC_METADATA_OPTIMIZER_PKG.g_db_table_rels_last, BSC_METADATA_OPTIMIZER_PKG.gSummaryTableTbsName, l_where_clause);
5076: CreateCopyIndexes(TableName, BSC_METADATA_OPTIMIZER_PKG.g_db_table_rels_last, BSC_METADATA_OPTIMIZER_PKG.gSummaryIndexTbsName);
5077: dbms_stats.gather_table_stats(BSC_METADATA_OPTIMIZER_PKG.gBscSchema, BSC_METADATA_OPTIMIZER_PKG.g_db_table_rels_last);

Line 5075: CreateCopyTable(TableName, BSC_METADATA_OPTIMIZER_PKG.g_db_table_rels_last, BSC_METADATA_OPTIMIZER_PKG.gSummaryTableTbsName, l_where_clause);

5071: CreateCopyTable(TableName, BSC_METADATA_OPTIMIZER_PKG.g_db_tables_last, BSC_METADATA_OPTIMIZER_PKG.gSummaryTableTbsName, l_where_clause);
5072: CreateCopyIndexes (TableName, BSC_METADATA_OPTIMIZER_PKG.g_db_tables_last, BSC_METADATA_OPTIMIZER_PKG.gSummaryIndexTbsName);
5073: dbms_stats.gather_table_stats(BSC_METADATA_OPTIMIZER_PKG.gBscSchema, BSC_METADATA_OPTIMIZER_PKG.g_db_tables_last);
5074: TableName := 'BSC_DB_TABLES_RELS';
5075: CreateCopyTable(TableName, BSC_METADATA_OPTIMIZER_PKG.g_db_table_rels_last, BSC_METADATA_OPTIMIZER_PKG.gSummaryTableTbsName, l_where_clause);
5076: CreateCopyIndexes(TableName, BSC_METADATA_OPTIMIZER_PKG.g_db_table_rels_last, BSC_METADATA_OPTIMIZER_PKG.gSummaryIndexTbsName);
5077: dbms_stats.gather_table_stats(BSC_METADATA_OPTIMIZER_PKG.gBscSchema, BSC_METADATA_OPTIMIZER_PKG.g_db_table_rels_last);
5078: IF BSC_METADATA_OPTIMIZER_PKG.gGAA_RUN_MODE <>0 AND BSC_METADATA_OPTIMIZER_PKG.gIndicators.count < l_threshold THEN
5079: l_where_clause := ' WHERE indicator in

Line 5076: CreateCopyIndexes(TableName, BSC_METADATA_OPTIMIZER_PKG.g_db_table_rels_last, BSC_METADATA_OPTIMIZER_PKG.gSummaryIndexTbsName);

5072: CreateCopyIndexes (TableName, BSC_METADATA_OPTIMIZER_PKG.g_db_tables_last, BSC_METADATA_OPTIMIZER_PKG.gSummaryIndexTbsName);
5073: dbms_stats.gather_table_stats(BSC_METADATA_OPTIMIZER_PKG.gBscSchema, BSC_METADATA_OPTIMIZER_PKG.g_db_tables_last);
5074: TableName := 'BSC_DB_TABLES_RELS';
5075: CreateCopyTable(TableName, BSC_METADATA_OPTIMIZER_PKG.g_db_table_rels_last, BSC_METADATA_OPTIMIZER_PKG.gSummaryTableTbsName, l_where_clause);
5076: CreateCopyIndexes(TableName, BSC_METADATA_OPTIMIZER_PKG.g_db_table_rels_last, BSC_METADATA_OPTIMIZER_PKG.gSummaryIndexTbsName);
5077: dbms_stats.gather_table_stats(BSC_METADATA_OPTIMIZER_PKG.gBscSchema, BSC_METADATA_OPTIMIZER_PKG.g_db_table_rels_last);
5078: IF BSC_METADATA_OPTIMIZER_PKG.gGAA_RUN_MODE <>0 AND BSC_METADATA_OPTIMIZER_PKG.gIndicators.count < l_threshold THEN
5079: l_where_clause := ' WHERE indicator in
5080: (select indicator from bsc_tmp_opt_ui_kpis where process_id='||BSC_METADATA_OPTIMIZER_PKG.g_processID||')';

Line 5077: dbms_stats.gather_table_stats(BSC_METADATA_OPTIMIZER_PKG.gBscSchema, BSC_METADATA_OPTIMIZER_PKG.g_db_table_rels_last);

5073: dbms_stats.gather_table_stats(BSC_METADATA_OPTIMIZER_PKG.gBscSchema, BSC_METADATA_OPTIMIZER_PKG.g_db_tables_last);
5074: TableName := 'BSC_DB_TABLES_RELS';
5075: CreateCopyTable(TableName, BSC_METADATA_OPTIMIZER_PKG.g_db_table_rels_last, BSC_METADATA_OPTIMIZER_PKG.gSummaryTableTbsName, l_where_clause);
5076: CreateCopyIndexes(TableName, BSC_METADATA_OPTIMIZER_PKG.g_db_table_rels_last, BSC_METADATA_OPTIMIZER_PKG.gSummaryIndexTbsName);
5077: dbms_stats.gather_table_stats(BSC_METADATA_OPTIMIZER_PKG.gBscSchema, BSC_METADATA_OPTIMIZER_PKG.g_db_table_rels_last);
5078: IF BSC_METADATA_OPTIMIZER_PKG.gGAA_RUN_MODE <>0 AND BSC_METADATA_OPTIMIZER_PKG.gIndicators.count < l_threshold THEN
5079: l_where_clause := ' WHERE indicator in
5080: (select indicator from bsc_tmp_opt_ui_kpis where process_id='||BSC_METADATA_OPTIMIZER_PKG.g_processID||')';
5081: END IF;

Line 5078: IF BSC_METADATA_OPTIMIZER_PKG.gGAA_RUN_MODE <>0 AND BSC_METADATA_OPTIMIZER_PKG.gIndicators.count < l_threshold THEN

5074: TableName := 'BSC_DB_TABLES_RELS';
5075: CreateCopyTable(TableName, BSC_METADATA_OPTIMIZER_PKG.g_db_table_rels_last, BSC_METADATA_OPTIMIZER_PKG.gSummaryTableTbsName, l_where_clause);
5076: CreateCopyIndexes(TableName, BSC_METADATA_OPTIMIZER_PKG.g_db_table_rels_last, BSC_METADATA_OPTIMIZER_PKG.gSummaryIndexTbsName);
5077: dbms_stats.gather_table_stats(BSC_METADATA_OPTIMIZER_PKG.gBscSchema, BSC_METADATA_OPTIMIZER_PKG.g_db_table_rels_last);
5078: IF BSC_METADATA_OPTIMIZER_PKG.gGAA_RUN_MODE <>0 AND BSC_METADATA_OPTIMIZER_PKG.gIndicators.count < l_threshold THEN
5079: l_where_clause := ' WHERE indicator in
5080: (select indicator from bsc_tmp_opt_ui_kpis where process_id='||BSC_METADATA_OPTIMIZER_PKG.g_processID||')';
5081: END IF;
5082: TableName := 'BSC_KPI_DATA_TABLES';

Line 5080: (select indicator from bsc_tmp_opt_ui_kpis where process_id='||BSC_METADATA_OPTIMIZER_PKG.g_processID||')';

5076: CreateCopyIndexes(TableName, BSC_METADATA_OPTIMIZER_PKG.g_db_table_rels_last, BSC_METADATA_OPTIMIZER_PKG.gSummaryIndexTbsName);
5077: dbms_stats.gather_table_stats(BSC_METADATA_OPTIMIZER_PKG.gBscSchema, BSC_METADATA_OPTIMIZER_PKG.g_db_table_rels_last);
5078: IF BSC_METADATA_OPTIMIZER_PKG.gGAA_RUN_MODE <>0 AND BSC_METADATA_OPTIMIZER_PKG.gIndicators.count < l_threshold THEN
5079: l_where_clause := ' WHERE indicator in
5080: (select indicator from bsc_tmp_opt_ui_kpis where process_id='||BSC_METADATA_OPTIMIZER_PKG.g_processID||')';
5081: END IF;
5082: TableName := 'BSC_KPI_DATA_TABLES';
5083: --DropTable(TableName||'_LAST');
5084: CreateCopyTable(TableName, BSC_METADATA_OPTIMIZER_PKG.g_kpi_data_last, BSC_METADATA_OPTIMIZER_PKG.gSummaryTableTbsName, l_where_clause);

Line 5084: CreateCopyTable(TableName, BSC_METADATA_OPTIMIZER_PKG.g_kpi_data_last, BSC_METADATA_OPTIMIZER_PKG.gSummaryTableTbsName, l_where_clause);

5080: (select indicator from bsc_tmp_opt_ui_kpis where process_id='||BSC_METADATA_OPTIMIZER_PKG.g_processID||')';
5081: END IF;
5082: TableName := 'BSC_KPI_DATA_TABLES';
5083: --DropTable(TableName||'_LAST');
5084: CreateCopyTable(TableName, BSC_METADATA_OPTIMIZER_PKG.g_kpi_data_last, BSC_METADATA_OPTIMIZER_PKG.gSummaryTableTbsName, l_where_clause);
5085: CreateCopyIndexes(TableName, BSC_METADATA_OPTIMIZER_PKG.g_kpi_data_last, BSC_METADATA_OPTIMIZER_PKG.gSummaryIndexTbsName);
5086: dbms_stats.gather_table_stats(BSC_METADATA_OPTIMIZER_PKG.gBscSchema, BSC_METADATA_OPTIMIZER_PKG.g_kpi_data_last);
5087:
5088: IF BSC_METADATA_OPTIMIZER_PKG.gGAA_RUN_MODE <>0 AND BSC_METADATA_OPTIMIZER_PKG.gIndicators.count < l_threshold THEN

Line 5085: CreateCopyIndexes(TableName, BSC_METADATA_OPTIMIZER_PKG.g_kpi_data_last, BSC_METADATA_OPTIMIZER_PKG.gSummaryIndexTbsName);

5081: END IF;
5082: TableName := 'BSC_KPI_DATA_TABLES';
5083: --DropTable(TableName||'_LAST');
5084: CreateCopyTable(TableName, BSC_METADATA_OPTIMIZER_PKG.g_kpi_data_last, BSC_METADATA_OPTIMIZER_PKG.gSummaryTableTbsName, l_where_clause);
5085: CreateCopyIndexes(TableName, BSC_METADATA_OPTIMIZER_PKG.g_kpi_data_last, BSC_METADATA_OPTIMIZER_PKG.gSummaryIndexTbsName);
5086: dbms_stats.gather_table_stats(BSC_METADATA_OPTIMIZER_PKG.gBscSchema, BSC_METADATA_OPTIMIZER_PKG.g_kpi_data_last);
5087:
5088: IF BSC_METADATA_OPTIMIZER_PKG.gGAA_RUN_MODE <>0 AND BSC_METADATA_OPTIMIZER_PKG.gIndicators.count < l_threshold THEN
5089: l_where_clause := ' WHERE table_name in

Line 5086: dbms_stats.gather_table_stats(BSC_METADATA_OPTIMIZER_PKG.gBscSchema, BSC_METADATA_OPTIMIZER_PKG.g_kpi_data_last);

5082: TableName := 'BSC_KPI_DATA_TABLES';
5083: --DropTable(TableName||'_LAST');
5084: CreateCopyTable(TableName, BSC_METADATA_OPTIMIZER_PKG.g_kpi_data_last, BSC_METADATA_OPTIMIZER_PKG.gSummaryTableTbsName, l_where_clause);
5085: CreateCopyIndexes(TableName, BSC_METADATA_OPTIMIZER_PKG.g_kpi_data_last, BSC_METADATA_OPTIMIZER_PKG.gSummaryIndexTbsName);
5086: dbms_stats.gather_table_stats(BSC_METADATA_OPTIMIZER_PKG.gBscSchema, BSC_METADATA_OPTIMIZER_PKG.g_kpi_data_last);
5087:
5088: IF BSC_METADATA_OPTIMIZER_PKG.gGAA_RUN_MODE <>0 AND BSC_METADATA_OPTIMIZER_PKG.gIndicators.count < l_threshold THEN
5089: l_where_clause := ' WHERE table_name in
5090: (select source_table_name from '||BSC_METADATA_OPTIMIZER_PKG.g_db_table_rels_last||'

Line 5088: IF BSC_METADATA_OPTIMIZER_PKG.gGAA_RUN_MODE <>0 AND BSC_METADATA_OPTIMIZER_PKG.gIndicators.count < l_threshold THEN

5084: CreateCopyTable(TableName, BSC_METADATA_OPTIMIZER_PKG.g_kpi_data_last, BSC_METADATA_OPTIMIZER_PKG.gSummaryTableTbsName, l_where_clause);
5085: CreateCopyIndexes(TableName, BSC_METADATA_OPTIMIZER_PKG.g_kpi_data_last, BSC_METADATA_OPTIMIZER_PKG.gSummaryIndexTbsName);
5086: dbms_stats.gather_table_stats(BSC_METADATA_OPTIMIZER_PKG.gBscSchema, BSC_METADATA_OPTIMIZER_PKG.g_kpi_data_last);
5087:
5088: IF BSC_METADATA_OPTIMIZER_PKG.gGAA_RUN_MODE <>0 AND BSC_METADATA_OPTIMIZER_PKG.gIndicators.count < l_threshold THEN
5089: l_where_clause := ' WHERE table_name in
5090: (select source_table_name from '||BSC_METADATA_OPTIMIZER_PKG.g_db_table_rels_last||'
5091: connect by table_name = prior source_table_name
5092: start with table_name in (select table_name from '||BSC_METADATA_OPTIMIZER_PKG.g_kpi_data_last||'))';

Line 5090: (select source_table_name from '||BSC_METADATA_OPTIMIZER_PKG.g_db_table_rels_last||'

5086: dbms_stats.gather_table_stats(BSC_METADATA_OPTIMIZER_PKG.gBscSchema, BSC_METADATA_OPTIMIZER_PKG.g_kpi_data_last);
5087:
5088: IF BSC_METADATA_OPTIMIZER_PKG.gGAA_RUN_MODE <>0 AND BSC_METADATA_OPTIMIZER_PKG.gIndicators.count < l_threshold THEN
5089: l_where_clause := ' WHERE table_name in
5090: (select source_table_name from '||BSC_METADATA_OPTIMIZER_PKG.g_db_table_rels_last||'
5091: connect by table_name = prior source_table_name
5092: start with table_name in (select table_name from '||BSC_METADATA_OPTIMIZER_PKG.g_kpi_data_last||'))';
5093: END IF;
5094: TableName := 'BSC_DB_TABLES_COLS';

Line 5092: start with table_name in (select table_name from '||BSC_METADATA_OPTIMIZER_PKG.g_kpi_data_last||'))';

5088: IF BSC_METADATA_OPTIMIZER_PKG.gGAA_RUN_MODE <>0 AND BSC_METADATA_OPTIMIZER_PKG.gIndicators.count < l_threshold THEN
5089: l_where_clause := ' WHERE table_name in
5090: (select source_table_name from '||BSC_METADATA_OPTIMIZER_PKG.g_db_table_rels_last||'
5091: connect by table_name = prior source_table_name
5092: start with table_name in (select table_name from '||BSC_METADATA_OPTIMIZER_PKG.g_kpi_data_last||'))';
5093: END IF;
5094: TableName := 'BSC_DB_TABLES_COLS';
5095: CreateCopyTable(TableName, BSC_METADATA_OPTIMIZER_PKG.g_db_tables_cols_last, BSC_METADATA_OPTIMIZER_PKG.gSummaryTableTbsName, l_where_clause);
5096: CreateCopyIndexes(TableName, BSC_METADATA_OPTIMIZER_PKG.g_db_tables_cols_last, BSC_METADATA_OPTIMIZER_PKG.gSummaryIndexTbsName);

Line 5095: CreateCopyTable(TableName, BSC_METADATA_OPTIMIZER_PKG.g_db_tables_cols_last, BSC_METADATA_OPTIMIZER_PKG.gSummaryTableTbsName, l_where_clause);

5091: connect by table_name = prior source_table_name
5092: start with table_name in (select table_name from '||BSC_METADATA_OPTIMIZER_PKG.g_kpi_data_last||'))';
5093: END IF;
5094: TableName := 'BSC_DB_TABLES_COLS';
5095: CreateCopyTable(TableName, BSC_METADATA_OPTIMIZER_PKG.g_db_tables_cols_last, BSC_METADATA_OPTIMIZER_PKG.gSummaryTableTbsName, l_where_clause);
5096: CreateCopyIndexes(TableName, BSC_METADATA_OPTIMIZER_PKG.g_db_tables_cols_last, BSC_METADATA_OPTIMIZER_PKG.gSummaryIndexTbsName);
5097: dbms_stats.gather_table_stats(BSC_METADATA_OPTIMIZER_PKG.gBscSchema, BSC_METADATA_OPTIMIZER_PKG.g_db_tables_cols_last);
5098:
5099: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN

Line 5096: CreateCopyIndexes(TableName, BSC_METADATA_OPTIMIZER_PKG.g_db_tables_cols_last, BSC_METADATA_OPTIMIZER_PKG.gSummaryIndexTbsName);

5092: start with table_name in (select table_name from '||BSC_METADATA_OPTIMIZER_PKG.g_kpi_data_last||'))';
5093: END IF;
5094: TableName := 'BSC_DB_TABLES_COLS';
5095: CreateCopyTable(TableName, BSC_METADATA_OPTIMIZER_PKG.g_db_tables_cols_last, BSC_METADATA_OPTIMIZER_PKG.gSummaryTableTbsName, l_where_clause);
5096: CreateCopyIndexes(TableName, BSC_METADATA_OPTIMIZER_PKG.g_db_tables_cols_last, BSC_METADATA_OPTIMIZER_PKG.gSummaryIndexTbsName);
5097: dbms_stats.gather_table_stats(BSC_METADATA_OPTIMIZER_PKG.gBscSchema, BSC_METADATA_OPTIMIZER_PKG.g_db_tables_cols_last);
5098:
5099: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
5100: writeTmp( 'Compl CreateLastTables, time is '||get_time);

Line 5097: dbms_stats.gather_table_stats(BSC_METADATA_OPTIMIZER_PKG.gBscSchema, BSC_METADATA_OPTIMIZER_PKG.g_db_tables_cols_last);

5093: END IF;
5094: TableName := 'BSC_DB_TABLES_COLS';
5095: CreateCopyTable(TableName, BSC_METADATA_OPTIMIZER_PKG.g_db_tables_cols_last, BSC_METADATA_OPTIMIZER_PKG.gSummaryTableTbsName, l_where_clause);
5096: CreateCopyIndexes(TableName, BSC_METADATA_OPTIMIZER_PKG.g_db_tables_cols_last, BSC_METADATA_OPTIMIZER_PKG.gSummaryIndexTbsName);
5097: dbms_stats.gather_table_stats(BSC_METADATA_OPTIMIZER_PKG.gBscSchema, BSC_METADATA_OPTIMIZER_PKG.g_db_tables_cols_last);
5098:
5099: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
5100: writeTmp( 'Compl CreateLastTables, time is '||get_time);
5101: END IF;

Line 5099: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN

5095: CreateCopyTable(TableName, BSC_METADATA_OPTIMIZER_PKG.g_db_tables_cols_last, BSC_METADATA_OPTIMIZER_PKG.gSummaryTableTbsName, l_where_clause);
5096: CreateCopyIndexes(TableName, BSC_METADATA_OPTIMIZER_PKG.g_db_tables_cols_last, BSC_METADATA_OPTIMIZER_PKG.gSummaryIndexTbsName);
5097: dbms_stats.gather_table_stats(BSC_METADATA_OPTIMIZER_PKG.gBscSchema, BSC_METADATA_OPTIMIZER_PKG.g_db_tables_cols_last);
5098:
5099: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
5100: writeTmp( 'Compl CreateLastTables, time is '||get_time);
5101: END IF;
5102: EXCEPTION WHEN OTHERS THEN
5103: writeTmp('Exception in CreateLastTables '||TableName||' : '||sqlerrm, FND_LOG.LEVEL_EXCEPTION, true);

Line 5115: BSC_METADATA_OPTIMIZER_PKG.gDropTable := BSC_METADATA_OPTIMIZER_PKG.gDropTable +1;

5111: ***************************************************************************/
5112:
5113: PROCEDURE DropTable(p_table_name in VARCHAR2) IS
5114: BEGIN
5115: BSC_METADATA_OPTIMIZER_PKG.gDropTable := BSC_METADATA_OPTIMIZER_PKG.gDropTable +1;
5116:
5117: IF (mod(BSC_METADATA_OPTIMIZER_PKG.gDropTable, 500) = 0) THEN
5118: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
5119: writeTmp('Call # '||BSC_METADATA_OPTIMIZER_PKG.gDropTable||' to API DropTable');

Line 5117: IF (mod(BSC_METADATA_OPTIMIZER_PKG.gDropTable, 500) = 0) THEN

5113: PROCEDURE DropTable(p_table_name in VARCHAR2) IS
5114: BEGIN
5115: BSC_METADATA_OPTIMIZER_PKG.gDropTable := BSC_METADATA_OPTIMIZER_PKG.gDropTable +1;
5116:
5117: IF (mod(BSC_METADATA_OPTIMIZER_PKG.gDropTable, 500) = 0) THEN
5118: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
5119: writeTmp('Call # '||BSC_METADATA_OPTIMIZER_PKG.gDropTable||' to API DropTable');
5120: END IF;
5121:

Line 5118: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN

5114: BEGIN
5115: BSC_METADATA_OPTIMIZER_PKG.gDropTable := BSC_METADATA_OPTIMIZER_PKG.gDropTable +1;
5116:
5117: IF (mod(BSC_METADATA_OPTIMIZER_PKG.gDropTable, 500) = 0) THEN
5118: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
5119: writeTmp('Call # '||BSC_METADATA_OPTIMIZER_PKG.gDropTable||' to API DropTable');
5120: END IF;
5121:
5122: END IF;

Line 5119: writeTmp('Call # '||BSC_METADATA_OPTIMIZER_PKG.gDropTable||' to API DropTable');

5115: BSC_METADATA_OPTIMIZER_PKG.gDropTable := BSC_METADATA_OPTIMIZER_PKG.gDropTable +1;
5116:
5117: IF (mod(BSC_METADATA_OPTIMIZER_PKG.gDropTable, 500) = 0) THEN
5118: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
5119: writeTmp('Call # '||BSC_METADATA_OPTIMIZER_PKG.gDropTable||' to API DropTable');
5120: END IF;
5121:
5122: END IF;
5123:

Line 5160: IF (BSC_METADATA_OPTIMIZER_PKG.gApplsysSchema IS NULL) THEN

5156: x_statement_type IN INTEGER := 0,
5157: x_object_name IN VARCHAR2
5158: ) IS
5159: BEGIN
5160: IF (BSC_METADATA_OPTIMIZER_PKG.gApplsysSchema IS NULL) THEN
5161: BSC_METADATA_OPTIMIZER_PKG.gApplsysSchema := BSC_MO_HELPER_PKG.getApplsysSchema;
5162: END IF;
5163: BSC_APPS.DO_DDL(x_statement=>x_statement ,
5164: x_statement_type => x_statement_type,

Line 5161: BSC_METADATA_OPTIMIZER_PKG.gApplsysSchema := BSC_MO_HELPER_PKG.getApplsysSchema;

5157: x_object_name IN VARCHAR2
5158: ) IS
5159: BEGIN
5160: IF (BSC_METADATA_OPTIMIZER_PKG.gApplsysSchema IS NULL) THEN
5161: BSC_METADATA_OPTIMIZER_PKG.gApplsysSchema := BSC_MO_HELPER_PKG.getApplsysSchema;
5162: END IF;
5163: BSC_APPS.DO_DDL(x_statement=>x_statement ,
5164: x_statement_type => x_statement_type,
5165: x_object_name=> x_object_name);

Line 5179: if ( bsc_metadata_optimizer_pkg.gAppsSchema is not null) then

5175: Function getAppsSchema RETURN VARCHAR2 IS
5176:
5177:
5178: BEGIN
5179: if ( bsc_metadata_optimizer_pkg.gAppsSchema is not null) then
5180: return bsc_metadata_optimizer_pkg.gAppsSchema;
5181: end if;
5182: if ( bsc_metadata_optimizer_pkg.g_bsc_apps_initialized=false) then
5183: bsc_apps.init_bsc_apps;

Line 5180: return bsc_metadata_optimizer_pkg.gAppsSchema;

5176:
5177:
5178: BEGIN
5179: if ( bsc_metadata_optimizer_pkg.gAppsSchema is not null) then
5180: return bsc_metadata_optimizer_pkg.gAppsSchema;
5181: end if;
5182: if ( bsc_metadata_optimizer_pkg.g_bsc_apps_initialized=false) then
5183: bsc_apps.init_bsc_apps;
5184: bsc_metadata_optimizer_pkg.g_bsc_apps_initialized := true;

Line 5182: if ( bsc_metadata_optimizer_pkg.g_bsc_apps_initialized=false) then

5178: BEGIN
5179: if ( bsc_metadata_optimizer_pkg.gAppsSchema is not null) then
5180: return bsc_metadata_optimizer_pkg.gAppsSchema;
5181: end if;
5182: if ( bsc_metadata_optimizer_pkg.g_bsc_apps_initialized=false) then
5183: bsc_apps.init_bsc_apps;
5184: bsc_metadata_optimizer_pkg.g_bsc_apps_initialized := true;
5185: end if;
5186: bsc_metadata_optimizer_pkg.gAppsSchema := bsc_apps.get_user_schema('APPS');

Line 5184: bsc_metadata_optimizer_pkg.g_bsc_apps_initialized := true;

5180: return bsc_metadata_optimizer_pkg.gAppsSchema;
5181: end if;
5182: if ( bsc_metadata_optimizer_pkg.g_bsc_apps_initialized=false) then
5183: bsc_apps.init_bsc_apps;
5184: bsc_metadata_optimizer_pkg.g_bsc_apps_initialized := true;
5185: end if;
5186: bsc_metadata_optimizer_pkg.gAppsSchema := bsc_apps.get_user_schema('APPS');
5187: return bsc_metadata_optimizer_pkg.gAppsSchema;
5188:

Line 5186: bsc_metadata_optimizer_pkg.gAppsSchema := bsc_apps.get_user_schema('APPS');

5182: if ( bsc_metadata_optimizer_pkg.g_bsc_apps_initialized=false) then
5183: bsc_apps.init_bsc_apps;
5184: bsc_metadata_optimizer_pkg.g_bsc_apps_initialized := true;
5185: end if;
5186: bsc_metadata_optimizer_pkg.gAppsSchema := bsc_apps.get_user_schema('APPS');
5187: return bsc_metadata_optimizer_pkg.gAppsSchema;
5188:
5189: END;
5190:

Line 5187: return bsc_metadata_optimizer_pkg.gAppsSchema;

5183: bsc_apps.init_bsc_apps;
5184: bsc_metadata_optimizer_pkg.g_bsc_apps_initialized := true;
5185: end if;
5186: bsc_metadata_optimizer_pkg.gAppsSchema := bsc_apps.get_user_schema('APPS');
5187: return bsc_metadata_optimizer_pkg.gAppsSchema;
5188:
5189: END;
5190:
5191:

Line 5200: if (bsc_metadata_optimizer_pkg.gBSCSchema is not null) then

5196: Returns the BSC schema name
5197: ***************************************************************************/
5198: FUNCTION getBSCSchema return varchar2 is
5199: begin
5200: if (bsc_metadata_optimizer_pkg.gBSCSchema is not null) then
5201: return bsc_metadata_optimizer_pkg.gBSCSchema;
5202: end if;
5203: if ( bsc_metadata_optimizer_pkg.g_bsc_apps_initialized=false) then
5204: bsc_apps.init_bsc_apps;

Line 5201: return bsc_metadata_optimizer_pkg.gBSCSchema;

5197: ***************************************************************************/
5198: FUNCTION getBSCSchema return varchar2 is
5199: begin
5200: if (bsc_metadata_optimizer_pkg.gBSCSchema is not null) then
5201: return bsc_metadata_optimizer_pkg.gBSCSchema;
5202: end if;
5203: if ( bsc_metadata_optimizer_pkg.g_bsc_apps_initialized=false) then
5204: bsc_apps.init_bsc_apps;
5205: bsc_metadata_optimizer_pkg.g_bsc_apps_initialized := true;

Line 5203: if ( bsc_metadata_optimizer_pkg.g_bsc_apps_initialized=false) then

5199: begin
5200: if (bsc_metadata_optimizer_pkg.gBSCSchema is not null) then
5201: return bsc_metadata_optimizer_pkg.gBSCSchema;
5202: end if;
5203: if ( bsc_metadata_optimizer_pkg.g_bsc_apps_initialized=false) then
5204: bsc_apps.init_bsc_apps;
5205: bsc_metadata_optimizer_pkg.g_bsc_apps_initialized := true;
5206: end if;
5207: bsc_metadata_optimizer_pkg.gBSCSchema:= bsc_apps.get_user_schema('BSC');

Line 5205: bsc_metadata_optimizer_pkg.g_bsc_apps_initialized := true;

5201: return bsc_metadata_optimizer_pkg.gBSCSchema;
5202: end if;
5203: if ( bsc_metadata_optimizer_pkg.g_bsc_apps_initialized=false) then
5204: bsc_apps.init_bsc_apps;
5205: bsc_metadata_optimizer_pkg.g_bsc_apps_initialized := true;
5206: end if;
5207: bsc_metadata_optimizer_pkg.gBSCSchema:= bsc_apps.get_user_schema('BSC');
5208: return bsc_metadata_optimizer_pkg.gBSCSchema;
5209:

Line 5207: bsc_metadata_optimizer_pkg.gBSCSchema:= bsc_apps.get_user_schema('BSC');

5203: if ( bsc_metadata_optimizer_pkg.g_bsc_apps_initialized=false) then
5204: bsc_apps.init_bsc_apps;
5205: bsc_metadata_optimizer_pkg.g_bsc_apps_initialized := true;
5206: end if;
5207: bsc_metadata_optimizer_pkg.gBSCSchema:= bsc_apps.get_user_schema('BSC');
5208: return bsc_metadata_optimizer_pkg.gBSCSchema;
5209:
5210: END;
5211:

Line 5208: return bsc_metadata_optimizer_pkg.gBSCSchema;

5204: bsc_apps.init_bsc_apps;
5205: bsc_metadata_optimizer_pkg.g_bsc_apps_initialized := true;
5206: end if;
5207: bsc_metadata_optimizer_pkg.gBSCSchema:= bsc_apps.get_user_schema('BSC');
5208: return bsc_metadata_optimizer_pkg.gBSCSchema;
5209:
5210: END;
5211:
5212:

Line 5221: if (bsc_metadata_optimizer_pkg.gApplsysSchema is not null) then

5217: Returns the FND schema name
5218: ***************************************************************************/
5219: FUNCTION getApplsysSchema return varchar2 is
5220: begin
5221: if (bsc_metadata_optimizer_pkg.gApplsysSchema is not null) then
5222: return bsc_metadata_optimizer_pkg.gApplsysSchema;
5223: end if;
5224:
5225: if ( bsc_metadata_optimizer_pkg.g_bsc_apps_initialized=false) then

Line 5222: return bsc_metadata_optimizer_pkg.gApplsysSchema;

5218: ***************************************************************************/
5219: FUNCTION getApplsysSchema return varchar2 is
5220: begin
5221: if (bsc_metadata_optimizer_pkg.gApplsysSchema is not null) then
5222: return bsc_metadata_optimizer_pkg.gApplsysSchema;
5223: end if;
5224:
5225: if ( bsc_metadata_optimizer_pkg.g_bsc_apps_initialized=false) then
5226: bsc_apps.init_bsc_apps;

Line 5225: if ( bsc_metadata_optimizer_pkg.g_bsc_apps_initialized=false) then

5221: if (bsc_metadata_optimizer_pkg.gApplsysSchema is not null) then
5222: return bsc_metadata_optimizer_pkg.gApplsysSchema;
5223: end if;
5224:
5225: if ( bsc_metadata_optimizer_pkg.g_bsc_apps_initialized=false) then
5226: bsc_apps.init_bsc_apps;
5227: bsc_metadata_optimizer_pkg.g_bsc_apps_initialized := true;
5228: end if;
5229: bsc_metadata_optimizer_pkg.gApplsysSchema := bsc_apps.get_user_schema('FND');

Line 5227: bsc_metadata_optimizer_pkg.g_bsc_apps_initialized := true;

5223: end if;
5224:
5225: if ( bsc_metadata_optimizer_pkg.g_bsc_apps_initialized=false) then
5226: bsc_apps.init_bsc_apps;
5227: bsc_metadata_optimizer_pkg.g_bsc_apps_initialized := true;
5228: end if;
5229: bsc_metadata_optimizer_pkg.gApplsysSchema := bsc_apps.get_user_schema('FND');
5230: return bsc_metadata_optimizer_pkg.gApplsysSchema;
5231: END;

Line 5229: bsc_metadata_optimizer_pkg.gApplsysSchema := bsc_apps.get_user_schema('FND');

5225: if ( bsc_metadata_optimizer_pkg.g_bsc_apps_initialized=false) then
5226: bsc_apps.init_bsc_apps;
5227: bsc_metadata_optimizer_pkg.g_bsc_apps_initialized := true;
5228: end if;
5229: bsc_metadata_optimizer_pkg.gApplsysSchema := bsc_apps.get_user_schema('FND');
5230: return bsc_metadata_optimizer_pkg.gApplsysSchema;
5231: END;
5232:
5233: --****************************************************************************

Line 5230: return bsc_metadata_optimizer_pkg.gApplsysSchema;

5226: bsc_apps.init_bsc_apps;
5227: bsc_metadata_optimizer_pkg.g_bsc_apps_initialized := true;
5228: end if;
5229: bsc_metadata_optimizer_pkg.gApplsysSchema := bsc_apps.get_user_schema('FND');
5230: return bsc_metadata_optimizer_pkg.gApplsysSchema;
5231: END;
5232:
5233: --****************************************************************************
5234: -- PerteneceArregloStr: searchStringExists

Line 5410: FROM '||BSC_METADATA_OPTIMIZER_PKG.g_db_table_rels_last||' R, '||

5406: numTables pls_Integer;
5407: strWhereInChildTables varchar2(1000);
5408:
5409: l_stmt VARCHAR2(1000):='SELECT R.TABLE_NAME, R.SOURCE_TABLE_NAME, BT.PERIODICITY_ID
5410: FROM '||BSC_METADATA_OPTIMIZER_PKG.g_db_table_rels_last||' R, '||
5411: BSC_METADATA_OPTIMIZER_PKG.g_db_tables_last||' IT, '||
5412: BSC_METADATA_OPTIMIZER_PKG.g_db_tables_last||' BT
5413: WHERE R.SOURCE_TABLE_NAME = IT.TABLE_NAME
5414: AND IT.TABLE_TYPE = 0

Line 5411: BSC_METADATA_OPTIMIZER_PKG.g_db_tables_last||' IT, '||

5407: strWhereInChildTables varchar2(1000);
5408:
5409: l_stmt VARCHAR2(1000):='SELECT R.TABLE_NAME, R.SOURCE_TABLE_NAME, BT.PERIODICITY_ID
5410: FROM '||BSC_METADATA_OPTIMIZER_PKG.g_db_table_rels_last||' R, '||
5411: BSC_METADATA_OPTIMIZER_PKG.g_db_tables_last||' IT, '||
5412: BSC_METADATA_OPTIMIZER_PKG.g_db_tables_last||' BT
5413: WHERE R.SOURCE_TABLE_NAME = IT.TABLE_NAME
5414: AND IT.TABLE_TYPE = 0
5415: AND R.TABLE_NAME = BT.TABLE_NAME

Line 5412: BSC_METADATA_OPTIMIZER_PKG.g_db_tables_last||' BT

5408:
5409: l_stmt VARCHAR2(1000):='SELECT R.TABLE_NAME, R.SOURCE_TABLE_NAME, BT.PERIODICITY_ID
5410: FROM '||BSC_METADATA_OPTIMIZER_PKG.g_db_table_rels_last||' R, '||
5411: BSC_METADATA_OPTIMIZER_PKG.g_db_tables_last||' IT, '||
5412: BSC_METADATA_OPTIMIZER_PKG.g_db_tables_last||' BT
5413: WHERE R.SOURCE_TABLE_NAME = IT.TABLE_NAME
5414: AND IT.TABLE_TYPE = 0
5415: AND R.TABLE_NAME = BT.TABLE_NAME
5416: AND IT.TABLE_NAME IN

Line 5420: (select distinct table_name from '||BSC_METADATA_OPTIMIZER_PKG.g_kpi_tmp_table||' where indicator in

5416: AND IT.TABLE_NAME IN
5417: (SELECT SOURCE_TABLE_NAME FROM BSC_DB_TABLES_RELS
5418: CONNECT BY TABLE_NAME=prior SOURCE_TABLE_NAME
5419: start with table_name in
5420: (select distinct table_name from '||BSC_METADATA_OPTIMIZER_PKG.g_kpi_tmp_table||' where indicator in
5421: (select indicator from bsc_tmp_opt_ui_kpis where process_id=:1)
5422: )
5423: )
5424: ORDER BY R.SOURCE_TABLE_NAME';

Line 5442: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN

5438: l_error varchar2(1000);
5439: l_arr_indicators dbms_sql.number_table;
5440: BEGIN
5441:
5442: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
5443: writeTmp( 'Inside InitInfoOldSystem, time is '||get_time); --commit;
5444: END IF;
5445: open cv1 for l_stmt using BSC_METADATA_OPTIMIZER_PKG.g_processID;
5446: LOOP

Line 5445: open cv1 for l_stmt using BSC_METADATA_OPTIMIZER_PKG.g_processID;

5441:
5442: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
5443: writeTmp( 'Inside InitInfoOldSystem, time is '||get_time); --commit;
5444: END IF;
5445: open cv1 for l_stmt using BSC_METADATA_OPTIMIZER_PKG.g_processID;
5446: LOOP
5447: FETCH cv1 into l_table_name, l_source_table_name, l_periodicity_id;
5448: EXIT when cv1%NOTFOUND;
5449: BaseTable := l_table_name;

Line 5454: BSC_METADATA_OPTIMIZER_PKG.garrOldBTables(BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables).Name := BaseTable;

5450: BakTable := BaseTable||'_BAK';
5451: l_InputTable := l_SOURCE_TABLE_NAME;
5452: periodicity := l_PERIODICITY_ID;
5453: --Add base table to array garrOldBTables
5454: BSC_METADATA_OPTIMIZER_PKG.garrOldBTables(BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables).Name := BaseTable;
5455: BSC_METADATA_OPTIMIZER_PKG.garrOldBTables(BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables).periodicity := periodicity;
5456: BSC_METADATA_OPTIMIZER_PKG.garrOldBTables(BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables).InputTable := l_InputTable;
5457: OPEN cColumns(UPPER(BakTable), UPPER(BSC_METADATA_OPTIMIZER_PKG.gBscSchema));
5458: BSC_METADATA_OPTIMIZER_PKG.garrOldBTables(BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables).numFields := 0;

Line 5455: BSC_METADATA_OPTIMIZER_PKG.garrOldBTables(BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables).periodicity := periodicity;

5451: l_InputTable := l_SOURCE_TABLE_NAME;
5452: periodicity := l_PERIODICITY_ID;
5453: --Add base table to array garrOldBTables
5454: BSC_METADATA_OPTIMIZER_PKG.garrOldBTables(BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables).Name := BaseTable;
5455: BSC_METADATA_OPTIMIZER_PKG.garrOldBTables(BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables).periodicity := periodicity;
5456: BSC_METADATA_OPTIMIZER_PKG.garrOldBTables(BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables).InputTable := l_InputTable;
5457: OPEN cColumns(UPPER(BakTable), UPPER(BSC_METADATA_OPTIMIZER_PKG.gBscSchema));
5458: BSC_METADATA_OPTIMIZER_PKG.garrOldBTables(BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables).numFields := 0;
5459: LOOP

Line 5456: BSC_METADATA_OPTIMIZER_PKG.garrOldBTables(BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables).InputTable := l_InputTable;

5452: periodicity := l_PERIODICITY_ID;
5453: --Add base table to array garrOldBTables
5454: BSC_METADATA_OPTIMIZER_PKG.garrOldBTables(BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables).Name := BaseTable;
5455: BSC_METADATA_OPTIMIZER_PKG.garrOldBTables(BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables).periodicity := periodicity;
5456: BSC_METADATA_OPTIMIZER_PKG.garrOldBTables(BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables).InputTable := l_InputTable;
5457: OPEN cColumns(UPPER(BakTable), UPPER(BSC_METADATA_OPTIMIZER_PKG.gBscSchema));
5458: BSC_METADATA_OPTIMIZER_PKG.garrOldBTables(BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables).numFields := 0;
5459: LOOP
5460: FETCH cColumns into l_column;

Line 5457: OPEN cColumns(UPPER(BakTable), UPPER(BSC_METADATA_OPTIMIZER_PKG.gBscSchema));

5453: --Add base table to array garrOldBTables
5454: BSC_METADATA_OPTIMIZER_PKG.garrOldBTables(BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables).Name := BaseTable;
5455: BSC_METADATA_OPTIMIZER_PKG.garrOldBTables(BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables).periodicity := periodicity;
5456: BSC_METADATA_OPTIMIZER_PKG.garrOldBTables(BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables).InputTable := l_InputTable;
5457: OPEN cColumns(UPPER(BakTable), UPPER(BSC_METADATA_OPTIMIZER_PKG.gBscSchema));
5458: BSC_METADATA_OPTIMIZER_PKG.garrOldBTables(BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables).numFields := 0;
5459: LOOP
5460: FETCH cColumns into l_column;
5461: EXIT WHEN cColumns%NOTFOUND;

Line 5458: BSC_METADATA_OPTIMIZER_PKG.garrOldBTables(BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables).numFields := 0;

5454: BSC_METADATA_OPTIMIZER_PKG.garrOldBTables(BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables).Name := BaseTable;
5455: BSC_METADATA_OPTIMIZER_PKG.garrOldBTables(BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables).periodicity := periodicity;
5456: BSC_METADATA_OPTIMIZER_PKG.garrOldBTables(BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables).InputTable := l_InputTable;
5457: OPEN cColumns(UPPER(BakTable), UPPER(BSC_METADATA_OPTIMIZER_PKG.gBscSchema));
5458: BSC_METADATA_OPTIMIZER_PKG.garrOldBTables(BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables).numFields := 0;
5459: LOOP
5460: FETCH cColumns into l_column;
5461: EXIT WHEN cColumns%NOTFOUND;
5462: IF (BSC_METADATA_OPTIMIZER_PKG.garrOldBTables(BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables).Fields IS NOT NULL) THEN

Line 5462: IF (BSC_METADATA_OPTIMIZER_PKG.garrOldBTables(BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables).Fields IS NOT NULL) THEN

5458: BSC_METADATA_OPTIMIZER_PKG.garrOldBTables(BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables).numFields := 0;
5459: LOOP
5460: FETCH cColumns into l_column;
5461: EXIT WHEN cColumns%NOTFOUND;
5462: IF (BSC_METADATA_OPTIMIZER_PKG.garrOldBTables(BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables).Fields IS NOT NULL) THEN
5463: BSC_METADATA_OPTIMIZER_PKG.garrOldBTables(BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables).Fields :=
5464: BSC_METADATA_OPTIMIZER_PKG.garrOldBTables(BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables).Fields||',';
5465: END IF;
5466: BSC_METADATA_OPTIMIZER_PKG.garrOldBTables(BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables).Fields :=

Line 5463: BSC_METADATA_OPTIMIZER_PKG.garrOldBTables(BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables).Fields :=

5459: LOOP
5460: FETCH cColumns into l_column;
5461: EXIT WHEN cColumns%NOTFOUND;
5462: IF (BSC_METADATA_OPTIMIZER_PKG.garrOldBTables(BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables).Fields IS NOT NULL) THEN
5463: BSC_METADATA_OPTIMIZER_PKG.garrOldBTables(BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables).Fields :=
5464: BSC_METADATA_OPTIMIZER_PKG.garrOldBTables(BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables).Fields||',';
5465: END IF;
5466: BSC_METADATA_OPTIMIZER_PKG.garrOldBTables(BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables).Fields :=
5467: BSC_METADATA_OPTIMIZER_PKG.garrOldBTables(BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables).Fields||l_column;

Line 5464: BSC_METADATA_OPTIMIZER_PKG.garrOldBTables(BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables).Fields||',';

5460: FETCH cColumns into l_column;
5461: EXIT WHEN cColumns%NOTFOUND;
5462: IF (BSC_METADATA_OPTIMIZER_PKG.garrOldBTables(BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables).Fields IS NOT NULL) THEN
5463: BSC_METADATA_OPTIMIZER_PKG.garrOldBTables(BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables).Fields :=
5464: BSC_METADATA_OPTIMIZER_PKG.garrOldBTables(BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables).Fields||',';
5465: END IF;
5466: BSC_METADATA_OPTIMIZER_PKG.garrOldBTables(BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables).Fields :=
5467: BSC_METADATA_OPTIMIZER_PKG.garrOldBTables(BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables).Fields||l_column;
5468: BSC_METADATA_OPTIMIZER_PKG.garrOldBTables(BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables).numFields :=

Line 5466: BSC_METADATA_OPTIMIZER_PKG.garrOldBTables(BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables).Fields :=

5462: IF (BSC_METADATA_OPTIMIZER_PKG.garrOldBTables(BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables).Fields IS NOT NULL) THEN
5463: BSC_METADATA_OPTIMIZER_PKG.garrOldBTables(BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables).Fields :=
5464: BSC_METADATA_OPTIMIZER_PKG.garrOldBTables(BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables).Fields||',';
5465: END IF;
5466: BSC_METADATA_OPTIMIZER_PKG.garrOldBTables(BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables).Fields :=
5467: BSC_METADATA_OPTIMIZER_PKG.garrOldBTables(BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables).Fields||l_column;
5468: BSC_METADATA_OPTIMIZER_PKG.garrOldBTables(BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables).numFields :=
5469: BSC_METADATA_OPTIMIZER_PKG.garrOldBTables(BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables).numFields + 1;
5470: END LOOP;

Line 5467: BSC_METADATA_OPTIMIZER_PKG.garrOldBTables(BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables).Fields||l_column;

5463: BSC_METADATA_OPTIMIZER_PKG.garrOldBTables(BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables).Fields :=
5464: BSC_METADATA_OPTIMIZER_PKG.garrOldBTables(BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables).Fields||',';
5465: END IF;
5466: BSC_METADATA_OPTIMIZER_PKG.garrOldBTables(BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables).Fields :=
5467: BSC_METADATA_OPTIMIZER_PKG.garrOldBTables(BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables).Fields||l_column;
5468: BSC_METADATA_OPTIMIZER_PKG.garrOldBTables(BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables).numFields :=
5469: BSC_METADATA_OPTIMIZER_PKG.garrOldBTables(BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables).numFields + 1;
5470: END LOOP;
5471: CLOSE cColumns;

Line 5468: BSC_METADATA_OPTIMIZER_PKG.garrOldBTables(BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables).numFields :=

5464: BSC_METADATA_OPTIMIZER_PKG.garrOldBTables(BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables).Fields||',';
5465: END IF;
5466: BSC_METADATA_OPTIMIZER_PKG.garrOldBTables(BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables).Fields :=
5467: BSC_METADATA_OPTIMIZER_PKG.garrOldBTables(BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables).Fields||l_column;
5468: BSC_METADATA_OPTIMIZER_PKG.garrOldBTables(BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables).numFields :=
5469: BSC_METADATA_OPTIMIZER_PKG.garrOldBTables(BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables).numFields + 1;
5470: END LOOP;
5471: CLOSE cColumns;
5472: numChildTables := 0;

Line 5469: BSC_METADATA_OPTIMIZER_PKG.garrOldBTables(BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables).numFields + 1;

5465: END IF;
5466: BSC_METADATA_OPTIMIZER_PKG.garrOldBTables(BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables).Fields :=
5467: BSC_METADATA_OPTIMIZER_PKG.garrOldBTables(BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables).Fields||l_column;
5468: BSC_METADATA_OPTIMIZER_PKG.garrOldBTables(BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables).numFields :=
5469: BSC_METADATA_OPTIMIZER_PKG.garrOldBTables(BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables).numFields + 1;
5470: END LOOP;
5471: CLOSE cColumns;
5472: numChildTables := 0;
5473: arrTables(0) := BaseTable;

Line 5480: l_stmt := 'SELECT DISTINCT INDICATOR FROM '||BSC_METADATA_OPTIMIZER_PKG.g_kpi_tmp_table||' WHERE '||strWhereInChildTables;

5476: InsertChildTables_LAST(arrTables, numTables, arrChildTables, numChildTables);
5477: --get all the indicator affected by these tables
5478: strWhereInChildTables := Get_New_Big_In_Cond_Varchar2(1, 'TABLE_NAME');
5479: Add_Value_Bulk(1, arrChildTables);
5480: l_stmt := 'SELECT DISTINCT INDICATOR FROM '||BSC_METADATA_OPTIMIZER_PKG.g_kpi_tmp_table||' WHERE '||strWhereInChildTables;
5481: l_stmt := replace(l_stmt, 'UPPER(TABLE_NAME)', 'TABLE_NAME');
5482: l_stmt := replace(l_stmt, 'UPPER(VALUE_V)', 'VALUE_V');
5483: BSC_METADATA_OPTIMIZER_PKG.garrOldBTables(BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables).NumIndicators := 0;
5484: open cv for l_stmt;

Line 5483: BSC_METADATA_OPTIMIZER_PKG.garrOldBTables(BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables).NumIndicators := 0;

5479: Add_Value_Bulk(1, arrChildTables);
5480: l_stmt := 'SELECT DISTINCT INDICATOR FROM '||BSC_METADATA_OPTIMIZER_PKG.g_kpi_tmp_table||' WHERE '||strWhereInChildTables;
5481: l_stmt := replace(l_stmt, 'UPPER(TABLE_NAME)', 'TABLE_NAME');
5482: l_stmt := replace(l_stmt, 'UPPER(VALUE_V)', 'VALUE_V');
5483: BSC_METADATA_OPTIMIZER_PKG.garrOldBTables(BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables).NumIndicators := 0;
5484: open cv for l_stmt;
5485: FETCH cv BULK COLLECT into l_arr_indicators;
5486: close cv;
5487: FOR i IN 1..l_arr_indicators.count LOOP

Line 5489: IF (BSC_METADATA_OPTIMIZER_PKG.garrOldBTables(BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables).Indicators IS NOT NULL) THEN

5485: FETCH cv BULK COLLECT into l_arr_indicators;
5486: close cv;
5487: FOR i IN 1..l_arr_indicators.count LOOP
5488: l_indicator := l_arr_indicators(i);
5489: IF (BSC_METADATA_OPTIMIZER_PKG.garrOldBTables(BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables).Indicators IS NOT NULL) THEN
5490: BSC_METADATA_OPTIMIZER_PKG.garrOldBTables(BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables).Indicators :=
5491: BSC_METADATA_OPTIMIZER_PKG.garrOldBTables(BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables).Indicators|| ',';
5492: END IF;
5493: BSC_METADATA_OPTIMIZER_PKG.garrOldBTables(BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables).Indicators :=

Line 5490: BSC_METADATA_OPTIMIZER_PKG.garrOldBTables(BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables).Indicators :=

5486: close cv;
5487: FOR i IN 1..l_arr_indicators.count LOOP
5488: l_indicator := l_arr_indicators(i);
5489: IF (BSC_METADATA_OPTIMIZER_PKG.garrOldBTables(BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables).Indicators IS NOT NULL) THEN
5490: BSC_METADATA_OPTIMIZER_PKG.garrOldBTables(BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables).Indicators :=
5491: BSC_METADATA_OPTIMIZER_PKG.garrOldBTables(BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables).Indicators|| ',';
5492: END IF;
5493: BSC_METADATA_OPTIMIZER_PKG.garrOldBTables(BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables).Indicators :=
5494: BSC_METADATA_OPTIMIZER_PKG.garrOldBTables(BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables).Indicators||l_indicator;

Line 5491: BSC_METADATA_OPTIMIZER_PKG.garrOldBTables(BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables).Indicators|| ',';

5487: FOR i IN 1..l_arr_indicators.count LOOP
5488: l_indicator := l_arr_indicators(i);
5489: IF (BSC_METADATA_OPTIMIZER_PKG.garrOldBTables(BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables).Indicators IS NOT NULL) THEN
5490: BSC_METADATA_OPTIMIZER_PKG.garrOldBTables(BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables).Indicators :=
5491: BSC_METADATA_OPTIMIZER_PKG.garrOldBTables(BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables).Indicators|| ',';
5492: END IF;
5493: BSC_METADATA_OPTIMIZER_PKG.garrOldBTables(BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables).Indicators :=
5494: BSC_METADATA_OPTIMIZER_PKG.garrOldBTables(BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables).Indicators||l_indicator;
5495: BSC_METADATA_OPTIMIZER_PKG.garrOldBTables(BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables).NumIndicators :=

Line 5493: BSC_METADATA_OPTIMIZER_PKG.garrOldBTables(BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables).Indicators :=

5489: IF (BSC_METADATA_OPTIMIZER_PKG.garrOldBTables(BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables).Indicators IS NOT NULL) THEN
5490: BSC_METADATA_OPTIMIZER_PKG.garrOldBTables(BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables).Indicators :=
5491: BSC_METADATA_OPTIMIZER_PKG.garrOldBTables(BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables).Indicators|| ',';
5492: END IF;
5493: BSC_METADATA_OPTIMIZER_PKG.garrOldBTables(BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables).Indicators :=
5494: BSC_METADATA_OPTIMIZER_PKG.garrOldBTables(BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables).Indicators||l_indicator;
5495: BSC_METADATA_OPTIMIZER_PKG.garrOldBTables(BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables).NumIndicators :=
5496: BSC_METADATA_OPTIMIZER_PKG.garrOldBTables(BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables).NumIndicators + 1;
5497: END LOOP;

Line 5494: BSC_METADATA_OPTIMIZER_PKG.garrOldBTables(BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables).Indicators||l_indicator;

5490: BSC_METADATA_OPTIMIZER_PKG.garrOldBTables(BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables).Indicators :=
5491: BSC_METADATA_OPTIMIZER_PKG.garrOldBTables(BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables).Indicators|| ',';
5492: END IF;
5493: BSC_METADATA_OPTIMIZER_PKG.garrOldBTables(BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables).Indicators :=
5494: BSC_METADATA_OPTIMIZER_PKG.garrOldBTables(BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables).Indicators||l_indicator;
5495: BSC_METADATA_OPTIMIZER_PKG.garrOldBTables(BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables).NumIndicators :=
5496: BSC_METADATA_OPTIMIZER_PKG.garrOldBTables(BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables).NumIndicators + 1;
5497: END LOOP;
5498: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN

Line 5495: BSC_METADATA_OPTIMIZER_PKG.garrOldBTables(BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables).NumIndicators :=

5491: BSC_METADATA_OPTIMIZER_PKG.garrOldBTables(BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables).Indicators|| ',';
5492: END IF;
5493: BSC_METADATA_OPTIMIZER_PKG.garrOldBTables(BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables).Indicators :=
5494: BSC_METADATA_OPTIMIZER_PKG.garrOldBTables(BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables).Indicators||l_indicator;
5495: BSC_METADATA_OPTIMIZER_PKG.garrOldBTables(BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables).NumIndicators :=
5496: BSC_METADATA_OPTIMIZER_PKG.garrOldBTables(BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables).NumIndicators + 1;
5497: END LOOP;
5498: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
5499: writeTmp('Indicator list for table '||BSC_METADATA_OPTIMIZER_PKG.garrOldBTables(

Line 5496: BSC_METADATA_OPTIMIZER_PKG.garrOldBTables(BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables).NumIndicators + 1;

5492: END IF;
5493: BSC_METADATA_OPTIMIZER_PKG.garrOldBTables(BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables).Indicators :=
5494: BSC_METADATA_OPTIMIZER_PKG.garrOldBTables(BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables).Indicators||l_indicator;
5495: BSC_METADATA_OPTIMIZER_PKG.garrOldBTables(BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables).NumIndicators :=
5496: BSC_METADATA_OPTIMIZER_PKG.garrOldBTables(BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables).NumIndicators + 1;
5497: END LOOP;
5498: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
5499: writeTmp('Indicator list for table '||BSC_METADATA_OPTIMIZER_PKG.garrOldBTables(
5500: BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables).name||' - '|| BSC_METADATA_OPTIMIZER_PKG.garrOldBTables(

Line 5498: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN

5494: BSC_METADATA_OPTIMIZER_PKG.garrOldBTables(BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables).Indicators||l_indicator;
5495: BSC_METADATA_OPTIMIZER_PKG.garrOldBTables(BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables).NumIndicators :=
5496: BSC_METADATA_OPTIMIZER_PKG.garrOldBTables(BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables).NumIndicators + 1;
5497: END LOOP;
5498: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
5499: writeTmp('Indicator list for table '||BSC_METADATA_OPTIMIZER_PKG.garrOldBTables(
5500: BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables).name||' - '|| BSC_METADATA_OPTIMIZER_PKG.garrOldBTables(
5501: BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables).Indicators);
5502: END IF;

Line 5499: writeTmp('Indicator list for table '||BSC_METADATA_OPTIMIZER_PKG.garrOldBTables(

5495: BSC_METADATA_OPTIMIZER_PKG.garrOldBTables(BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables).NumIndicators :=
5496: BSC_METADATA_OPTIMIZER_PKG.garrOldBTables(BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables).NumIndicators + 1;
5497: END LOOP;
5498: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
5499: writeTmp('Indicator list for table '||BSC_METADATA_OPTIMIZER_PKG.garrOldBTables(
5500: BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables).name||' - '|| BSC_METADATA_OPTIMIZER_PKG.garrOldBTables(
5501: BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables).Indicators);
5502: END IF;
5503: BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables := BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables + 1;

Line 5500: BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables).name||' - '|| BSC_METADATA_OPTIMIZER_PKG.garrOldBTables(

5496: BSC_METADATA_OPTIMIZER_PKG.garrOldBTables(BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables).NumIndicators + 1;
5497: END LOOP;
5498: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
5499: writeTmp('Indicator list for table '||BSC_METADATA_OPTIMIZER_PKG.garrOldBTables(
5500: BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables).name||' - '|| BSC_METADATA_OPTIMIZER_PKG.garrOldBTables(
5501: BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables).Indicators);
5502: END IF;
5503: BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables := BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables + 1;
5504: END Loop;

Line 5501: BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables).Indicators);

5497: END LOOP;
5498: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
5499: writeTmp('Indicator list for table '||BSC_METADATA_OPTIMIZER_PKG.garrOldBTables(
5500: BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables).name||' - '|| BSC_METADATA_OPTIMIZER_PKG.garrOldBTables(
5501: BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables).Indicators);
5502: END IF;
5503: BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables := BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables + 1;
5504: END Loop;
5505: Close cv1;

Line 5503: BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables := BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables + 1;

5499: writeTmp('Indicator list for table '||BSC_METADATA_OPTIMIZER_PKG.garrOldBTables(
5500: BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables).name||' - '|| BSC_METADATA_OPTIMIZER_PKG.garrOldBTables(
5501: BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables).Indicators);
5502: END IF;
5503: BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables := BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables + 1;
5504: END Loop;
5505: Close cv1;
5506: --Initialize array of old indicators
5507: l_stmt := 'SELECT DISTINCT INDICATOR FROM '||BSC_METADATA_OPTIMIZER_PKG.g_kpi_tmp_table||' WHERE TABLE_NAME IS NOT NULL';

Line 5507: l_stmt := 'SELECT DISTINCT INDICATOR FROM '||BSC_METADATA_OPTIMIZER_PKG.g_kpi_tmp_table||' WHERE TABLE_NAME IS NOT NULL';

5503: BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables := BSC_METADATA_OPTIMIZER_PKG.gnumOldBTables + 1;
5504: END Loop;
5505: Close cv1;
5506: --Initialize array of old indicators
5507: l_stmt := 'SELECT DISTINCT INDICATOR FROM '||BSC_METADATA_OPTIMIZER_PKG.g_kpi_tmp_table||' WHERE TABLE_NAME IS NOT NULL';
5508: BSC_METADATA_OPTIMIZER_PKG.gnumOldIndicators := 0;
5509: BSC_METADATA_OPTIMIZER_PKG.garrOldIndicators.delete;
5510: l_arr_indicators.delete;
5511: open cv for l_stmt;

Line 5508: BSC_METADATA_OPTIMIZER_PKG.gnumOldIndicators := 0;

5504: END Loop;
5505: Close cv1;
5506: --Initialize array of old indicators
5507: l_stmt := 'SELECT DISTINCT INDICATOR FROM '||BSC_METADATA_OPTIMIZER_PKG.g_kpi_tmp_table||' WHERE TABLE_NAME IS NOT NULL';
5508: BSC_METADATA_OPTIMIZER_PKG.gnumOldIndicators := 0;
5509: BSC_METADATA_OPTIMIZER_PKG.garrOldIndicators.delete;
5510: l_arr_indicators.delete;
5511: open cv for l_stmt;
5512: fetch cv bulk collect into l_arr_indicators;

Line 5509: BSC_METADATA_OPTIMIZER_PKG.garrOldIndicators.delete;

5505: Close cv1;
5506: --Initialize array of old indicators
5507: l_stmt := 'SELECT DISTINCT INDICATOR FROM '||BSC_METADATA_OPTIMIZER_PKG.g_kpi_tmp_table||' WHERE TABLE_NAME IS NOT NULL';
5508: BSC_METADATA_OPTIMIZER_PKG.gnumOldIndicators := 0;
5509: BSC_METADATA_OPTIMIZER_PKG.garrOldIndicators.delete;
5510: l_arr_indicators.delete;
5511: open cv for l_stmt;
5512: fetch cv bulk collect into l_arr_indicators;
5513: close cv;

Line 5516: BSC_METADATA_OPTIMIZER_PKG.garrOldIndicators(BSC_METADATA_OPTIMIZER_PKG.gnumOldIndicators) := l_indicator;

5512: fetch cv bulk collect into l_arr_indicators;
5513: close cv;
5514: FOR i in 1..l_arr_indicators.count LOOP
5515: l_indicator := l_arr_indicators(i);
5516: BSC_METADATA_OPTIMIZER_PKG.garrOldIndicators(BSC_METADATA_OPTIMIZER_PKG.gnumOldIndicators) := l_indicator;
5517: BSC_METADATA_OPTIMIZER_PKG.gnumOldIndicators := BSC_METADATA_OPTIMIZER_PKG.gnumOldIndicators + 1;
5518: END Loop;
5519:
5520: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN

Line 5517: BSC_METADATA_OPTIMIZER_PKG.gnumOldIndicators := BSC_METADATA_OPTIMIZER_PKG.gnumOldIndicators + 1;

5513: close cv;
5514: FOR i in 1..l_arr_indicators.count LOOP
5515: l_indicator := l_arr_indicators(i);
5516: BSC_METADATA_OPTIMIZER_PKG.garrOldIndicators(BSC_METADATA_OPTIMIZER_PKG.gnumOldIndicators) := l_indicator;
5517: BSC_METADATA_OPTIMIZER_PKG.gnumOldIndicators := BSC_METADATA_OPTIMIZER_PKG.gnumOldIndicators + 1;
5518: END Loop;
5519:
5520: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
5521: writeTmp( 'Compl InitInfoOldSystem, time is '||get_time);

Line 5520: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN

5516: BSC_METADATA_OPTIMIZER_PKG.garrOldIndicators(BSC_METADATA_OPTIMIZER_PKG.gnumOldIndicators) := l_indicator;
5517: BSC_METADATA_OPTIMIZER_PKG.gnumOldIndicators := BSC_METADATA_OPTIMIZER_PKG.gnumOldIndicators + 1;
5518: END Loop;
5519:
5520: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
5521: writeTmp( 'Compl InitInfoOldSystem, time is '||get_time);
5522: END IF;
5523: EXCEPTION WHEN OTHERS THEN
5524: l_ERROR := sqlerrm;

Line 5566: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN

5562: exception when others then
5563: null;
5564: end;
5565: strWhereInIndics := Get_New_Big_In_Cond_Number( 1, 'INDICATOR');
5566: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
5567: writeTmp('Will Loop '||BSC_METADATA_OPTIMIZER_PKG.garrIndics.count||' times for garrIndics');
5568: END IF;
5569: i:= BSC_METADATA_OPTIMIZER_PKG.garrIndics.first;
5570: LOOP

Line 5567: writeTmp('Will Loop '||BSC_METADATA_OPTIMIZER_PKG.garrIndics.count||' times for garrIndics');

5563: null;
5564: end;
5565: strWhereInIndics := Get_New_Big_In_Cond_Number( 1, 'INDICATOR');
5566: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
5567: writeTmp('Will Loop '||BSC_METADATA_OPTIMIZER_PKG.garrIndics.count||' times for garrIndics');
5568: END IF;
5569: i:= BSC_METADATA_OPTIMIZER_PKG.garrIndics.first;
5570: LOOP
5571: EXIT when BSC_METADATA_OPTIMIZER_PKG.garrIndics.count = 0;

Line 5569: i:= BSC_METADATA_OPTIMIZER_PKG.garrIndics.first;

5565: strWhereInIndics := Get_New_Big_In_Cond_Number( 1, 'INDICATOR');
5566: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
5567: writeTmp('Will Loop '||BSC_METADATA_OPTIMIZER_PKG.garrIndics.count||' times for garrIndics');
5568: END IF;
5569: i:= BSC_METADATA_OPTIMIZER_PKG.garrIndics.first;
5570: LOOP
5571: EXIT when BSC_METADATA_OPTIMIZER_PKG.garrIndics.count = 0;
5572: --Add_Value_Big_In_Cond_Number(1, BSC_METADATA_OPTIMIZER_PKG.garrIndics(i));
5573: -- Feb 16, 2006, AW attach/detach taking too long in 9i

Line 5571: EXIT when BSC_METADATA_OPTIMIZER_PKG.garrIndics.count = 0;

5567: writeTmp('Will Loop '||BSC_METADATA_OPTIMIZER_PKG.garrIndics.count||' times for garrIndics');
5568: END IF;
5569: i:= BSC_METADATA_OPTIMIZER_PKG.garrIndics.first;
5570: LOOP
5571: EXIT when BSC_METADATA_OPTIMIZER_PKG.garrIndics.count = 0;
5572: --Add_Value_Big_In_Cond_Number(1, BSC_METADATA_OPTIMIZER_PKG.garrIndics(i));
5573: -- Feb 16, 2006, AW attach/detach taking too long in 9i
5574: -- first check if objective was implemented as AW previously
5575: -- Needed for AW call out , start with index = 1 for Venu :)

Line 5572: --Add_Value_Big_In_Cond_Number(1, BSC_METADATA_OPTIMIZER_PKG.garrIndics(i));

5568: END IF;
5569: i:= BSC_METADATA_OPTIMIZER_PKG.garrIndics.first;
5570: LOOP
5571: EXIT when BSC_METADATA_OPTIMIZER_PKG.garrIndics.count = 0;
5572: --Add_Value_Big_In_Cond_Number(1, BSC_METADATA_OPTIMIZER_PKG.garrIndics(i));
5573: -- Feb 16, 2006, AW attach/detach taking too long in 9i
5574: -- first check if objective was implemented as AW previously
5575: -- Needed for AW call out , start with index = 1 for Venu :)
5576: if BSC_AW_MD_API.is_kpi_present(to_char(BSC_METADATA_OPTIMIZER_PKG.garrIndics(i))) then

Line 5576: if BSC_AW_MD_API.is_kpi_present(to_char(BSC_METADATA_OPTIMIZER_PKG.garrIndics(i))) then

5572: --Add_Value_Big_In_Cond_Number(1, BSC_METADATA_OPTIMIZER_PKG.garrIndics(i));
5573: -- Feb 16, 2006, AW attach/detach taking too long in 9i
5574: -- first check if objective was implemented as AW previously
5575: -- Needed for AW call out , start with index = 1 for Venu :)
5576: if BSC_AW_MD_API.is_kpi_present(to_char(BSC_METADATA_OPTIMIZER_PKG.garrIndics(i))) then
5577: l_drop_list_aw(l_drop_list_aw.count+1) := BSC_METADATA_OPTIMIZER_PKG.garrIndics(i);
5578: end if;
5579: l_drop_list_number(l_drop_list_number.count+1) := BSC_METADATA_OPTIMIZER_PKG.garrIndics(i);
5580: EXIT WHEN i = BSC_METADATA_OPTIMIZER_PKG.garrIndics.last;

Line 5577: l_drop_list_aw(l_drop_list_aw.count+1) := BSC_METADATA_OPTIMIZER_PKG.garrIndics(i);

5573: -- Feb 16, 2006, AW attach/detach taking too long in 9i
5574: -- first check if objective was implemented as AW previously
5575: -- Needed for AW call out , start with index = 1 for Venu :)
5576: if BSC_AW_MD_API.is_kpi_present(to_char(BSC_METADATA_OPTIMIZER_PKG.garrIndics(i))) then
5577: l_drop_list_aw(l_drop_list_aw.count+1) := BSC_METADATA_OPTIMIZER_PKG.garrIndics(i);
5578: end if;
5579: l_drop_list_number(l_drop_list_number.count+1) := BSC_METADATA_OPTIMIZER_PKG.garrIndics(i);
5580: EXIT WHEN i = BSC_METADATA_OPTIMIZER_PKG.garrIndics.last;
5581: i:= BSC_METADATA_OPTIMIZER_PKG.garrIndics.next(i);

Line 5579: l_drop_list_number(l_drop_list_number.count+1) := BSC_METADATA_OPTIMIZER_PKG.garrIndics(i);

5575: -- Needed for AW call out , start with index = 1 for Venu :)
5576: if BSC_AW_MD_API.is_kpi_present(to_char(BSC_METADATA_OPTIMIZER_PKG.garrIndics(i))) then
5577: l_drop_list_aw(l_drop_list_aw.count+1) := BSC_METADATA_OPTIMIZER_PKG.garrIndics(i);
5578: end if;
5579: l_drop_list_number(l_drop_list_number.count+1) := BSC_METADATA_OPTIMIZER_PKG.garrIndics(i);
5580: EXIT WHEN i = BSC_METADATA_OPTIMIZER_PKG.garrIndics.last;
5581: i:= BSC_METADATA_OPTIMIZER_PKG.garrIndics.next(i);
5582: END LOOP;
5583: Add_Value_Bulk(1, l_drop_list_number);

Line 5580: EXIT WHEN i = BSC_METADATA_OPTIMIZER_PKG.garrIndics.last;

5576: if BSC_AW_MD_API.is_kpi_present(to_char(BSC_METADATA_OPTIMIZER_PKG.garrIndics(i))) then
5577: l_drop_list_aw(l_drop_list_aw.count+1) := BSC_METADATA_OPTIMIZER_PKG.garrIndics(i);
5578: end if;
5579: l_drop_list_number(l_drop_list_number.count+1) := BSC_METADATA_OPTIMIZER_PKG.garrIndics(i);
5580: EXIT WHEN i = BSC_METADATA_OPTIMIZER_PKG.garrIndics.last;
5581: i:= BSC_METADATA_OPTIMIZER_PKG.garrIndics.next(i);
5582: END LOOP;
5583: Add_Value_Bulk(1, l_drop_list_number);
5584: strWhereNotInIndics := ' NOT (' || strWhereInIndics ||')';

Line 5581: i:= BSC_METADATA_OPTIMIZER_PKG.garrIndics.next(i);

5577: l_drop_list_aw(l_drop_list_aw.count+1) := BSC_METADATA_OPTIMIZER_PKG.garrIndics(i);
5578: end if;
5579: l_drop_list_number(l_drop_list_number.count+1) := BSC_METADATA_OPTIMIZER_PKG.garrIndics(i);
5580: EXIT WHEN i = BSC_METADATA_OPTIMIZER_PKG.garrIndics.last;
5581: i:= BSC_METADATA_OPTIMIZER_PKG.garrIndics.next(i);
5582: END LOOP;
5583: Add_Value_Bulk(1, l_drop_list_number);
5584: strWhereNotInIndics := ' NOT (' || strWhereInIndics ||')';
5585: strWhereInIndics4 := Get_New_Big_In_Cond_Number( 3, 'INDICATOR');

Line 5586: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN

5582: END LOOP;
5583: Add_Value_Bulk(1, l_drop_list_number);
5584: strWhereNotInIndics := ' NOT (' || strWhereInIndics ||')';
5585: strWhereInIndics4 := Get_New_Big_In_Cond_Number( 3, 'INDICATOR');
5586: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
5587: writeTmp('Will Loop '||BSC_METADATA_OPTIMIZER_PKG.garrIndics4.count||' times for garrIndics4');
5588: END IF;
5589:
5590: Add_Value_Bulk(3, BSC_METADATA_OPTIMIZER_PKG.garrIndics4);

Line 5587: writeTmp('Will Loop '||BSC_METADATA_OPTIMIZER_PKG.garrIndics4.count||' times for garrIndics4');

5583: Add_Value_Bulk(1, l_drop_list_number);
5584: strWhereNotInIndics := ' NOT (' || strWhereInIndics ||')';
5585: strWhereInIndics4 := Get_New_Big_In_Cond_Number( 3, 'INDICATOR');
5586: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
5587: writeTmp('Will Loop '||BSC_METADATA_OPTIMIZER_PKG.garrIndics4.count||' times for garrIndics4');
5588: END IF;
5589:
5590: Add_Value_Bulk(3, BSC_METADATA_OPTIMIZER_PKG.garrIndics4);
5591: strWhereInTables := Get_New_Big_In_Cond_Varchar2( 2, 'TABLE_NAME');

Line 5590: Add_Value_Bulk(3, BSC_METADATA_OPTIMIZER_PKG.garrIndics4);

5586: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
5587: writeTmp('Will Loop '||BSC_METADATA_OPTIMIZER_PKG.garrIndics4.count||' times for garrIndics4');
5588: END IF;
5589:
5590: Add_Value_Bulk(3, BSC_METADATA_OPTIMIZER_PKG.garrIndics4);
5591: strWhereInTables := Get_New_Big_In_Cond_Varchar2( 2, 'TABLE_NAME');
5592: Add_Value_Bulk(2, BSC_METADATA_OPTIMIZER_PKG.garrTables);
5593: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
5594: writeTmp( 'Loop thru and drop all tables');

Line 5592: Add_Value_Bulk(2, BSC_METADATA_OPTIMIZER_PKG.garrTables);

5588: END IF;
5589:
5590: Add_Value_Bulk(3, BSC_METADATA_OPTIMIZER_PKG.garrIndics4);
5591: strWhereInTables := Get_New_Big_In_Cond_Varchar2( 2, 'TABLE_NAME');
5592: Add_Value_Bulk(2, BSC_METADATA_OPTIMIZER_PKG.garrTables);
5593: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
5594: writeTmp( 'Loop thru and drop all tables');
5595: END IF;
5596:

Line 5593: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN

5589:
5590: Add_Value_Bulk(3, BSC_METADATA_OPTIMIZER_PKG.garrIndics4);
5591: strWhereInTables := Get_New_Big_In_Cond_Varchar2( 2, 'TABLE_NAME');
5592: Add_Value_Bulk(2, BSC_METADATA_OPTIMIZER_PKG.garrTables);
5593: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
5594: writeTmp( 'Loop thru and drop all tables');
5595: END IF;
5596:
5597: IF BSC_METADATA_OPTIMIZER_PKG.garrIndics.count > 0 THEN

Line 5597: IF BSC_METADATA_OPTIMIZER_PKG.garrIndics.count > 0 THEN

5593: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
5594: writeTmp( 'Loop thru and drop all tables');
5595: END IF;
5596:
5597: IF BSC_METADATA_OPTIMIZER_PKG.garrIndics.count > 0 THEN
5598: --Set the prototype flag to 3 for the indicators that are going to be re-created
5599: --So, if Metadata fail, those indicators are marked and the next time
5600: --will be recreated and no matter that the configuration of BSC_KPI_DATA_TABLES
5601: --had been deleted.

Line 5606: IF BSC_METADATA_OPTIMIZER_PKG.gSYSTEM_STAGE = 2 THEN

5602: --Also, since the documentation is done for all indicators, the documentation
5603: --re-load all indicator from the database. So, it is necessary to update the
5604: --prototype flag with the correct one (remember that due to the relations between
5605: --kpi, some kpi could be flagged too)
5606: IF BSC_METADATA_OPTIMIZER_PKG.gSYSTEM_STAGE = 2 THEN
5607: l_stmt := ' UPDATE BSC_KPIS_B
5608: SET PROTOTYPE_FLAG = DECODE(PROTOTYPE_FLAG, 2, 2, 3),
5609: LAST_UPDATED_BY = :1,
5610: LAST_UPDATE_DATE = SYSDATE WHERE '|| strWhereInIndics;

Line 5611: execute immediate l_stmt using BSC_METADATA_OPTIMIZER_PKG.gUserId;

5607: l_stmt := ' UPDATE BSC_KPIS_B
5608: SET PROTOTYPE_FLAG = DECODE(PROTOTYPE_FLAG, 2, 2, 3),
5609: LAST_UPDATED_BY = :1,
5610: LAST_UPDATE_DATE = SYSDATE WHERE '|| strWhereInIndics;
5611: execute immediate l_stmt using BSC_METADATA_OPTIMIZER_PKG.gUserId;
5612: END IF;
5613: --BSC-MV Note: Drop all the MV used for those KPis
5614: l_stmt := 'SELECT DISTINCT MV_NAME FROM BSC_KPI_DATA_TABLES WHERE ('|| strWhereInIndics ||') AND MV_NAME IS NOT NULL';
5615: writeTmp(l_stmt);

Line 5629: FROM '||BSC_METADATA_OPTIMIZER_PKG.g_kpi_tmp_table||'

5625: --BSC-MV Note: Drop all MV used for targets for those KPIs
5626: l_stmt := 'SELECT DISTINCT BSC_BIA_WRAPPER.Get_Sum_Table_MV_Name(SOURCE_TABLE_NAME) MV_NAME
5627: FROM BSC_DB_TABLES_RELS WHERE TABLE_NAME IN (
5628: SELECT TABLE_NAME
5629: FROM '||BSC_METADATA_OPTIMIZER_PKG.g_kpi_tmp_table||'
5630: WHERE (' || strWhereInIndics || ') AND TABLE_NAME IS NOT NULL ) AND RELATION_TYPE = 1';
5631:
5632: OPEN cv FOR l_stmt;
5633: LOOP

Line 5661: IF BSC_METADATA_OPTIMIZER_PKG.garrIndics4.count > 0 THEN

5657: WHERE '|| strWhereInIndics;
5658: writeTmp(l_stmt, fnd_log.level_statement, false);
5659: Execute immediate l_stmt;
5660: END IF;
5661: IF BSC_METADATA_OPTIMIZER_PKG.garrIndics4.count > 0 THEN
5662: --Set the prototype flag to 4 for the indicators that are going to be re-configured
5663: --So, if Metadata fail, those indicators are marked and the next time
5664: --will be re-configured no matter that the configuration of BSC_KPI_DATA_TABLES
5665: --had been deleted.

Line 5671: IF BSC_METADATA_OPTIMIZER_PKG.gSYSTEM_STAGE = 2 THEN

5667: --re-load all indicator from the database. So, it is necessary to update the
5668: --prototype flag with the correct one (remember that due to the relations between
5669: --kpi, some kpi could be flagged too)
5670:
5671: IF BSC_METADATA_OPTIMIZER_PKG.gSYSTEM_STAGE = 2 THEN
5672: l_stmt := 'UPDATE BSC_KPIS_B SET PROTOTYPE_FLAG = DECODE(PROTOTYPE_FLAG, 2, 2, 4), '||
5673: ' LAST_UPDATED_BY = :1 ,'||
5674: ' LAST_UPDATE_DATE = SYSDATE '||
5675: ' WHERE (' || strWhereInIndics4 || ')';

Line 5676: IF BSC_METADATA_OPTIMIZER_PKG.garrIndics.count > 0 THEN

5672: l_stmt := 'UPDATE BSC_KPIS_B SET PROTOTYPE_FLAG = DECODE(PROTOTYPE_FLAG, 2, 2, 4), '||
5673: ' LAST_UPDATED_BY = :1 ,'||
5674: ' LAST_UPDATE_DATE = SYSDATE '||
5675: ' WHERE (' || strWhereInIndics4 || ')';
5676: IF BSC_METADATA_OPTIMIZER_PKG.garrIndics.count > 0 THEN
5677: l_stmt:= l_stmt|| ' AND ('|| strWhereNotInIndics ||')';
5678: END IF;
5679: Execute immediate l_stmt using BSC_METADATA_OPTIMIZER_PKG.gUserId;
5680: END IF;

Line 5679: Execute immediate l_stmt using BSC_METADATA_OPTIMIZER_PKG.gUserId;

5675: ' WHERE (' || strWhereInIndics4 || ')';
5676: IF BSC_METADATA_OPTIMIZER_PKG.garrIndics.count > 0 THEN
5677: l_stmt:= l_stmt|| ' AND ('|| strWhereNotInIndics ||')';
5678: END IF;
5679: Execute immediate l_stmt using BSC_METADATA_OPTIMIZER_PKG.gUserId;
5680: END IF;
5681: --BSC-MV Note: If there is summarization level change (example from 3 to 2 or 2 to 3)
5682: --It is necessary to drop the existing MV of the indicator. They will be re-created
5683: --and bSC_KPI_DATA_TABLES will be reconfigured

Line 5684: If BSC_METADATA_OPTIMIZER_PKG.g_Sum_Level_Change = 2 Then

5680: END IF;
5681: --BSC-MV Note: If there is summarization level change (example from 3 to 2 or 2 to 3)
5682: --It is necessary to drop the existing MV of the indicator. They will be re-created
5683: --and bSC_KPI_DATA_TABLES will be reconfigured
5684: If BSC_METADATA_OPTIMIZER_PKG.g_Sum_Level_Change = 2 Then
5685: --BSC-MV Note: Drop all the MV used for those KPis
5686: l_stmt := 'SELECT DISTINCT MV_NAME FROM BSC_KPI_DATA_TABLES WHERE ('|| strWhereInIndics4 ||')';
5687: If BSC_METADATA_OPTIMIZER_PKG.garrIndics.count > 0 Then
5688: l_stmt := l_stmt ||' AND (' || strWhereNotInIndics || ')';

Line 5687: If BSC_METADATA_OPTIMIZER_PKG.garrIndics.count > 0 Then

5683: --and bSC_KPI_DATA_TABLES will be reconfigured
5684: If BSC_METADATA_OPTIMIZER_PKG.g_Sum_Level_Change = 2 Then
5685: --BSC-MV Note: Drop all the MV used for those KPis
5686: l_stmt := 'SELECT DISTINCT MV_NAME FROM BSC_KPI_DATA_TABLES WHERE ('|| strWhereInIndics4 ||')';
5687: If BSC_METADATA_OPTIMIZER_PKG.garrIndics.count > 0 Then
5688: l_stmt := l_stmt ||' AND (' || strWhereNotInIndics || ')';
5689: End If;
5690: l_stmt := l_stmt ||' AND MV_NAME IS NOT NULL';
5691:

Line 5697: IF (bsc_metadata_optimizer_pkg.g_log) then

5693: LOOP
5694: FETCH cv INTO mv_name;
5695: EXIT WHEN cv%NOTFOUND;
5696: BSC_BIA_WRAPPER.Drop_Summary_MV_VB(mv_name);
5697: IF (bsc_metadata_optimizer_pkg.g_log) then
5698: writeTmp('Dropping summary mv '||mv_name, fnd_log.level_statement, false);
5699: END IF;
5700: BSC_MO_HELPER_PKG.CheckError('BSC_BIA_WRAPPER.Drop_Summary_MV_VB');
5701: END LOOP;

Line 5708: If BSC_METADATA_OPTIMIZER_PKG.garrIndics.count > 0 Then

5704: --BSC-MV Note: Drop all MV used for targets for those KPIs
5705: l_stmt := 'SELECT DISTINCT BSC_BIA_WRAPPER.Get_Sum_Table_MV_Name(SOURCE_TABLE_NAME) MV_NAME
5706: FROM BSC_DB_TABLES_RELS WHERE TABLE_NAME IN (
5707: SELECT TABLE_NAME FROM BSC_KPI_DATA_TABLES WHERE ('|| strWhereInIndics4 || ')';
5708: If BSC_METADATA_OPTIMIZER_PKG.garrIndics.count > 0 Then
5709: l_stmt := l_stmt || ' AND (' || strWhereNotInIndics || ')';
5710: End If;
5711:
5712: l_stmt := l_stmt || ' AND TABLE_NAME IS NOT NULL ) AND RELATION_TYPE = 1';

Line 5727: i:= BSC_METADATA_OPTIMIZER_PKG.garrTables.first;

5723: --BSC-MV Note: Do NOT drop tables created for projections. For non-structural
5724: --changes those tables are not going to be re-created
5725: END IF;
5726: --Delete all input, base, temporal and summary tables
5727: i:= BSC_METADATA_OPTIMIZER_PKG.garrTables.first;
5728: writeTmp('Dropping Table and related metadata for ', FND_LOG.LEVEL_STATEMENT, true);
5729: LOOP
5730: EXIT WHEN BSC_METADATA_OPTIMIZER_PKG.garrTables.count = 0;
5731: IF substr(BSC_METADATA_OPTIMIZER_PKG.garrTables(i), 1, 6)= 'BSC_B_' THEN

Line 5730: EXIT WHEN BSC_METADATA_OPTIMIZER_PKG.garrTables.count = 0;

5726: --Delete all input, base, temporal and summary tables
5727: i:= BSC_METADATA_OPTIMIZER_PKG.garrTables.first;
5728: writeTmp('Dropping Table and related metadata for ', FND_LOG.LEVEL_STATEMENT, true);
5729: LOOP
5730: EXIT WHEN BSC_METADATA_OPTIMIZER_PKG.garrTables.count = 0;
5731: IF substr(BSC_METADATA_OPTIMIZER_PKG.garrTables(i), 1, 6)= 'BSC_B_' THEN
5732: IF is_base_table(BSC_METADATA_OPTIMIZER_PKG.garrTables(i)) THEN
5733: backup_b_table(BSC_METADATA_OPTIMIZER_PKG.garrTables(i));
5734: BSC_METADATA_OPTIMIZER_PKG.gBackedUpBTables(BSC_METADATA_OPTIMIZER_PKG.gBackedUpBTables.count):= BSC_METADATA_OPTIMIZER_PKG.garrTables(i);

Line 5731: IF substr(BSC_METADATA_OPTIMIZER_PKG.garrTables(i), 1, 6)= 'BSC_B_' THEN

5727: i:= BSC_METADATA_OPTIMIZER_PKG.garrTables.first;
5728: writeTmp('Dropping Table and related metadata for ', FND_LOG.LEVEL_STATEMENT, true);
5729: LOOP
5730: EXIT WHEN BSC_METADATA_OPTIMIZER_PKG.garrTables.count = 0;
5731: IF substr(BSC_METADATA_OPTIMIZER_PKG.garrTables(i), 1, 6)= 'BSC_B_' THEN
5732: IF is_base_table(BSC_METADATA_OPTIMIZER_PKG.garrTables(i)) THEN
5733: backup_b_table(BSC_METADATA_OPTIMIZER_PKG.garrTables(i));
5734: BSC_METADATA_OPTIMIZER_PKG.gBackedUpBTables(BSC_METADATA_OPTIMIZER_PKG.gBackedUpBTables.count):= BSC_METADATA_OPTIMIZER_PKG.garrTables(i);
5735: IF BSC_DBGEN_UTILS.get_objective_type_for_b_table(BSC_METADATA_OPTIMIZER_PKG.garrTables(i))='AW' THEN

Line 5732: IF is_base_table(BSC_METADATA_OPTIMIZER_PKG.garrTables(i)) THEN

5728: writeTmp('Dropping Table and related metadata for ', FND_LOG.LEVEL_STATEMENT, true);
5729: LOOP
5730: EXIT WHEN BSC_METADATA_OPTIMIZER_PKG.garrTables.count = 0;
5731: IF substr(BSC_METADATA_OPTIMIZER_PKG.garrTables(i), 1, 6)= 'BSC_B_' THEN
5732: IF is_base_table(BSC_METADATA_OPTIMIZER_PKG.garrTables(i)) THEN
5733: backup_b_table(BSC_METADATA_OPTIMIZER_PKG.garrTables(i));
5734: BSC_METADATA_OPTIMIZER_PKG.gBackedUpBTables(BSC_METADATA_OPTIMIZER_PKG.gBackedUpBTables.count):= BSC_METADATA_OPTIMIZER_PKG.garrTables(i);
5735: IF BSC_DBGEN_UTILS.get_objective_type_for_b_table(BSC_METADATA_OPTIMIZER_PKG.garrTables(i))='AW' THEN
5736: bsc_aw_load.drop_bt_change_vector(BSC_METADATA_OPTIMIZER_PKG.garrTables(i));

Line 5733: backup_b_table(BSC_METADATA_OPTIMIZER_PKG.garrTables(i));

5729: LOOP
5730: EXIT WHEN BSC_METADATA_OPTIMIZER_PKG.garrTables.count = 0;
5731: IF substr(BSC_METADATA_OPTIMIZER_PKG.garrTables(i), 1, 6)= 'BSC_B_' THEN
5732: IF is_base_table(BSC_METADATA_OPTIMIZER_PKG.garrTables(i)) THEN
5733: backup_b_table(BSC_METADATA_OPTIMIZER_PKG.garrTables(i));
5734: BSC_METADATA_OPTIMIZER_PKG.gBackedUpBTables(BSC_METADATA_OPTIMIZER_PKG.gBackedUpBTables.count):= BSC_METADATA_OPTIMIZER_PKG.garrTables(i);
5735: IF BSC_DBGEN_UTILS.get_objective_type_for_b_table(BSC_METADATA_OPTIMIZER_PKG.garrTables(i))='AW' THEN
5736: bsc_aw_load.drop_bt_change_vector(BSC_METADATA_OPTIMIZER_PKG.garrTables(i));
5737: END IF;

Line 5734: BSC_METADATA_OPTIMIZER_PKG.gBackedUpBTables(BSC_METADATA_OPTIMIZER_PKG.gBackedUpBTables.count):= BSC_METADATA_OPTIMIZER_PKG.garrTables(i);

5730: EXIT WHEN BSC_METADATA_OPTIMIZER_PKG.garrTables.count = 0;
5731: IF substr(BSC_METADATA_OPTIMIZER_PKG.garrTables(i), 1, 6)= 'BSC_B_' THEN
5732: IF is_base_table(BSC_METADATA_OPTIMIZER_PKG.garrTables(i)) THEN
5733: backup_b_table(BSC_METADATA_OPTIMIZER_PKG.garrTables(i));
5734: BSC_METADATA_OPTIMIZER_PKG.gBackedUpBTables(BSC_METADATA_OPTIMIZER_PKG.gBackedUpBTables.count):= BSC_METADATA_OPTIMIZER_PKG.garrTables(i);
5735: IF BSC_DBGEN_UTILS.get_objective_type_for_b_table(BSC_METADATA_OPTIMIZER_PKG.garrTables(i))='AW' THEN
5736: bsc_aw_load.drop_bt_change_vector(BSC_METADATA_OPTIMIZER_PKG.garrTables(i));
5737: END IF;
5738: -- drop B_PRJ table if it exists

Line 5735: IF BSC_DBGEN_UTILS.get_objective_type_for_b_table(BSC_METADATA_OPTIMIZER_PKG.garrTables(i))='AW' THEN

5731: IF substr(BSC_METADATA_OPTIMIZER_PKG.garrTables(i), 1, 6)= 'BSC_B_' THEN
5732: IF is_base_table(BSC_METADATA_OPTIMIZER_PKG.garrTables(i)) THEN
5733: backup_b_table(BSC_METADATA_OPTIMIZER_PKG.garrTables(i));
5734: BSC_METADATA_OPTIMIZER_PKG.gBackedUpBTables(BSC_METADATA_OPTIMIZER_PKG.gBackedUpBTables.count):= BSC_METADATA_OPTIMIZER_PKG.garrTables(i);
5735: IF BSC_DBGEN_UTILS.get_objective_type_for_b_table(BSC_METADATA_OPTIMIZER_PKG.garrTables(i))='AW' THEN
5736: bsc_aw_load.drop_bt_change_vector(BSC_METADATA_OPTIMIZER_PKG.garrTables(i));
5737: END IF;
5738: -- drop B_PRJ table if it exists
5739: writeTmp('Table Type=B, child_table='||l_child_table);

Line 5736: bsc_aw_load.drop_bt_change_vector(BSC_METADATA_OPTIMIZER_PKG.garrTables(i));

5732: IF is_base_table(BSC_METADATA_OPTIMIZER_PKG.garrTables(i)) THEN
5733: backup_b_table(BSC_METADATA_OPTIMIZER_PKG.garrTables(i));
5734: BSC_METADATA_OPTIMIZER_PKG.gBackedUpBTables(BSC_METADATA_OPTIMIZER_PKG.gBackedUpBTables.count):= BSC_METADATA_OPTIMIZER_PKG.garrTables(i);
5735: IF BSC_DBGEN_UTILS.get_objective_type_for_b_table(BSC_METADATA_OPTIMIZER_PKG.garrTables(i))='AW' THEN
5736: bsc_aw_load.drop_bt_change_vector(BSC_METADATA_OPTIMIZER_PKG.garrTables(i));
5737: END IF;
5738: -- drop B_PRJ table if it exists
5739: writeTmp('Table Type=B, child_table='||l_child_table);
5740: l_child_table:= BSC_DBGEN_METADATA_READER.get_table_properties(BSC_METADATA_OPTIMIZER_PKG.garrTables(i),

Line 5740: l_child_table:= BSC_DBGEN_METADATA_READER.get_table_properties(BSC_METADATA_OPTIMIZER_PKG.garrTables(i),

5736: bsc_aw_load.drop_bt_change_vector(BSC_METADATA_OPTIMIZER_PKG.garrTables(i));
5737: END IF;
5738: -- drop B_PRJ table if it exists
5739: writeTmp('Table Type=B, child_table='||l_child_table);
5740: l_child_table:= BSC_DBGEN_METADATA_READER.get_table_properties(BSC_METADATA_OPTIMIZER_PKG.garrTables(i),
5741: BSC_DBGEN_STD_METADATA.BSC_B_PRJ_TABLE) ;
5742: if (l_child_table is not null) then
5743: DropTable(l_child_table);
5744: end if;

Line 5748: IF (bsc_dbgen_utils.get_table_type(bsc_metadata_optimizer_pkg.garrTables(i))='I') THEN

5744: end if;
5745: END IF;
5746: END IF;
5747: -- drop i_rowid table if it exists
5748: IF (bsc_dbgen_utils.get_table_type(bsc_metadata_optimizer_pkg.garrTables(i))='I') THEN
5749: l_child_table := BSC_DBGEN_METADATA_READER.get_table_properties(BSC_METADATA_OPTIMIZER_PKG.garrTables(i),
5750: BSC_DBGEN_STD_METADATA.BSC_I_ROWID_TABLE) ;
5751: writeTmp('Table Type=I, child_table='||l_child_table);
5752: if (l_child_table is not null) then

Line 5749: l_child_table := BSC_DBGEN_METADATA_READER.get_table_properties(BSC_METADATA_OPTIMIZER_PKG.garrTables(i),

5745: END IF;
5746: END IF;
5747: -- drop i_rowid table if it exists
5748: IF (bsc_dbgen_utils.get_table_type(bsc_metadata_optimizer_pkg.garrTables(i))='I') THEN
5749: l_child_table := BSC_DBGEN_METADATA_READER.get_table_properties(BSC_METADATA_OPTIMIZER_PKG.garrTables(i),
5750: BSC_DBGEN_STD_METADATA.BSC_I_ROWID_TABLE) ;
5751: writeTmp('Table Type=I, child_table='||l_child_table);
5752: if (l_child_table is not null) then
5753: DropTable(l_child_table);

Line 5756: DropTable( BSC_METADATA_OPTIMIZER_PKG.garrTables(i));

5752: if (l_child_table is not null) then
5753: DropTable(l_child_table);
5754: end if;
5755: END IF;
5756: DropTable( BSC_METADATA_OPTIMIZER_PKG.garrTables(i));
5757: -- force this to the output.
5758: l_error := l_error || BSC_METADATA_OPTIMIZER_PKG.garrTables(i) ||', ';
5759: IF (i>0 AND mod(i, 10) = 0) THEN
5760: writeTmp(l_error, FND_LOG.LEVEL_STATEMENT, true);

Line 5758: l_error := l_error || BSC_METADATA_OPTIMIZER_PKG.garrTables(i) ||', ';

5754: end if;
5755: END IF;
5756: DropTable( BSC_METADATA_OPTIMIZER_PKG.garrTables(i));
5757: -- force this to the output.
5758: l_error := l_error || BSC_METADATA_OPTIMIZER_PKG.garrTables(i) ||', ';
5759: IF (i>0 AND mod(i, 10) = 0) THEN
5760: writeTmp(l_error, FND_LOG.LEVEL_STATEMENT, true);
5761: l_error := null;
5762: END IF;

Line 5763: EXIT WHEN i=BSC_METADATA_OPTIMIZER_PKG.garrTables.last;

5759: IF (i>0 AND mod(i, 10) = 0) THEN
5760: writeTmp(l_error, FND_LOG.LEVEL_STATEMENT, true);
5761: l_error := null;
5762: END IF;
5763: EXIT WHEN i=BSC_METADATA_OPTIMIZER_PKG.garrTables.last;
5764: i := BSC_METADATA_OPTIMIZER_PKG.garrTables.next(i);
5765: END LOOP;
5766: IF BSC_METADATA_OPTIMIZER_PKG.garrTables.count > 0 THEN
5767: --BSC_DB_TABLES

Line 5764: i := BSC_METADATA_OPTIMIZER_PKG.garrTables.next(i);

5760: writeTmp(l_error, FND_LOG.LEVEL_STATEMENT, true);
5761: l_error := null;
5762: END IF;
5763: EXIT WHEN i=BSC_METADATA_OPTIMIZER_PKG.garrTables.last;
5764: i := BSC_METADATA_OPTIMIZER_PKG.garrTables.next(i);
5765: END LOOP;
5766: IF BSC_METADATA_OPTIMIZER_PKG.garrTables.count > 0 THEN
5767: --BSC_DB_TABLES
5768: l_stmt := 'DELETE FROM BSC_DB_TABLES WHERE '||strWhereInTables;

Line 5766: IF BSC_METADATA_OPTIMIZER_PKG.garrTables.count > 0 THEN

5762: END IF;
5763: EXIT WHEN i=BSC_METADATA_OPTIMIZER_PKG.garrTables.last;
5764: i := BSC_METADATA_OPTIMIZER_PKG.garrTables.next(i);
5765: END LOOP;
5766: IF BSC_METADATA_OPTIMIZER_PKG.garrTables.count > 0 THEN
5767: --BSC_DB_TABLES
5768: l_stmt := 'DELETE FROM BSC_DB_TABLES WHERE '||strWhereInTables;
5769: l_stmt := replace(l_stmt, 'UPPER(TABLE_NAME)', 'table_name');
5770: l_stmt := replace(l_stmt, 'UPPER(VALUE_V)', 'value_v');

Line 5789: IF (bsc_metadata_optimizer_pkg.g_bsc_mv and l_drop_list_aw.count>0) then

5785: l_stmt := replace(l_stmt, 'UPPER(VALUE_V)', 'value_v');
5786: Execute immediate l_stmt;
5787: END IF;
5788:
5789: IF (bsc_metadata_optimizer_pkg.g_bsc_mv and l_drop_list_aw.count>0) then
5790: -- DROP ALL OBJECTS IMPLEMENTED AS AW
5791: l_stmt := null;
5792: IF (BSC_METADATA_OPTIMIZER_PKG.g_log) THEN
5793: l_stmt := 'DEBUG LOG';

Line 5792: IF (BSC_METADATA_OPTIMIZER_PKG.g_log) THEN

5788:
5789: IF (bsc_metadata_optimizer_pkg.g_bsc_mv and l_drop_list_aw.count>0) then
5790: -- DROP ALL OBJECTS IMPLEMENTED AS AW
5791: l_stmt := null;
5792: IF (BSC_METADATA_OPTIMIZER_PKG.g_log) THEN
5793: l_stmt := 'DEBUG LOG';
5794: END IF;
5795: BEGIN
5796: BSC_AW_ADAPTER.drop_kpi(l_drop_list_aw, l_stmt);

Line 5829: UPDATE BSC_SYS_INIT SET PROPERTY_VALUE = propertyValue, LAST_UPDATED_BY = BSC_METADATA_OPTIMIZER_PKG.gUserID, LAST_UPDATE_DATE = SYSDATE

5825: SELECT Count(1) INTO l_count FROM BSC_SYS_INIT
5826: WHERE UPPER(PROPERTY_CODE) = UPPER(propertyCode);
5827:
5828: IF l_count > 0 THEN
5829: UPDATE BSC_SYS_INIT SET PROPERTY_VALUE = propertyValue, LAST_UPDATED_BY = BSC_METADATA_OPTIMIZER_PKG.gUserID, LAST_UPDATE_DATE = SYSDATE
5830: WHERE UPPER(PROPERTY_CODE) = UPPER(propertyCode);
5831: --Execute IMMEDIATE l_stmt using propertyValue, BSC_METADATA_OPTIMIZER_PKG.gUserID, UPPER(propertyCode);
5832: Else
5833: INSERT INTO BSC_SYS_INIT (PROPERTY_CODE, PROPERTY_VALUE, CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE)

Line 5831: --Execute IMMEDIATE l_stmt using propertyValue, BSC_METADATA_OPTIMIZER_PKG.gUserID, UPPER(propertyCode);

5827:
5828: IF l_count > 0 THEN
5829: UPDATE BSC_SYS_INIT SET PROPERTY_VALUE = propertyValue, LAST_UPDATED_BY = BSC_METADATA_OPTIMIZER_PKG.gUserID, LAST_UPDATE_DATE = SYSDATE
5830: WHERE UPPER(PROPERTY_CODE) = UPPER(propertyCode);
5831: --Execute IMMEDIATE l_stmt using propertyValue, BSC_METADATA_OPTIMIZER_PKG.gUserID, UPPER(propertyCode);
5832: Else
5833: INSERT INTO BSC_SYS_INIT (PROPERTY_CODE, PROPERTY_VALUE, CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE)
5834: VALUES(propertyCode, propertyValue, BSC_METADATA_OPTIMIZER_PKG.gUserID, SYSDATE, BSC_METADATA_OPTIMIZER_PKG.gUserID, SYSDATE);
5835: End IF;

Line 5834: VALUES(propertyCode, propertyValue, BSC_METADATA_OPTIMIZER_PKG.gUserID, SYSDATE, BSC_METADATA_OPTIMIZER_PKG.gUserID, SYSDATE);

5830: WHERE UPPER(PROPERTY_CODE) = UPPER(propertyCode);
5831: --Execute IMMEDIATE l_stmt using propertyValue, BSC_METADATA_OPTIMIZER_PKG.gUserID, UPPER(propertyCode);
5832: Else
5833: INSERT INTO BSC_SYS_INIT (PROPERTY_CODE, PROPERTY_VALUE, CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE)
5834: VALUES(propertyCode, propertyValue, BSC_METADATA_OPTIMIZER_PKG.gUserID, SYSDATE, BSC_METADATA_OPTIMIZER_PKG.gUserID, SYSDATE);
5835: End IF;
5836: End IF;
5837: End;
5838:

Line 5850: Indicador BSC_METADATA_OPTIMIZER_PKG.clsIndicator;

5846: --****************************************************************************
5847: PROCEDURE InitializeYear IS
5848:
5849: l_stmt VARCHAR2(3000);
5850: Indicador BSC_METADATA_OPTIMIZER_PKG.clsIndicator;
5851: Calendar BSC_METADATA_OPTIMIZER_PKG.clsCalendar;
5852: num_anos NUMBER;
5853: num_anosant NUMBER;
5854: table_name VARCHAR2(100);

Line 5851: Calendar BSC_METADATA_OPTIMIZER_PKG.clsCalendar;

5847: PROCEDURE InitializeYear IS
5848:
5849: l_stmt VARCHAR2(3000);
5850: Indicador BSC_METADATA_OPTIMIZER_PKG.clsIndicator;
5851: Calendar BSC_METADATA_OPTIMIZER_PKG.clsCalendar;
5852: num_anos NUMBER;
5853: num_anosant NUMBER;
5854: table_name VARCHAR2(100);
5855: mv_name VARCHAR2(100);

Line 5863: IF (BSC_METADATA_OPTIMIZER_PKG.gSYSTEM_STAGE = 1) THEN

5859: l_index2 NUMBER;
5860:
5861: l_temp NUMBER;
5862: BEGIN
5863: IF (BSC_METADATA_OPTIMIZER_PKG.gSYSTEM_STAGE = 1) THEN
5864: --Initilaize BSC Calendar if this is the first time
5865: --Populate calendar tables according to fiscal year
5866: l_index1 := BSC_METADATA_OPTIMIZER_PKG.gCalendars.first;
5867:

Line 5866: l_index1 := BSC_METADATA_OPTIMIZER_PKG.gCalendars.first;

5862: BEGIN
5863: IF (BSC_METADATA_OPTIMIZER_PKG.gSYSTEM_STAGE = 1) THEN
5864: --Initilaize BSC Calendar if this is the first time
5865: --Populate calendar tables according to fiscal year
5866: l_index1 := BSC_METADATA_OPTIMIZER_PKG.gCalendars.first;
5867:
5868: LOOP
5869: EXIT WHEN BSC_METADATA_OPTIMIZER_PKG.gCalendars.count=0;
5870: Calendar := BSC_METADATA_OPTIMIZER_PKG.gCalendars(l_index1);

Line 5869: EXIT WHEN BSC_METADATA_OPTIMIZER_PKG.gCalendars.count=0;

5865: --Populate calendar tables according to fiscal year
5866: l_index1 := BSC_METADATA_OPTIMIZER_PKG.gCalendars.first;
5867:
5868: LOOP
5869: EXIT WHEN BSC_METADATA_OPTIMIZER_PKG.gCalendars.count=0;
5870: Calendar := BSC_METADATA_OPTIMIZER_PKG.gCalendars(l_index1);
5871: --BIS DIMENSIONS: We cannot call Populate_Calendar_Tables for BIS Calendars
5872: --The API that imported the BIS Calendars already populated BSC_DB_CALENDAR and
5873: --BSC_SYS_PERIODS_TL, etc

Line 5870: Calendar := BSC_METADATA_OPTIMIZER_PKG.gCalendars(l_index1);

5866: l_index1 := BSC_METADATA_OPTIMIZER_PKG.gCalendars.first;
5867:
5868: LOOP
5869: EXIT WHEN BSC_METADATA_OPTIMIZER_PKG.gCalendars.count=0;
5870: Calendar := BSC_METADATA_OPTIMIZER_PKG.gCalendars(l_index1);
5871: --BIS DIMENSIONS: We cannot call Populate_Calendar_Tables for BIS Calendars
5872: --The API that imported the BIS Calendars already populated BSC_DB_CALENDAR and
5873: --BSC_SYS_PERIODS_TL, etc
5874: IF Calendar.Source = 'BSC' THEN

Line 5879: EXIT WHEN l_index1 = BSC_METADATA_OPTIMIZER_PKG.gCalendars.last;

5875: --BSC Calendar
5876: BSC_UPDATE_UTIL.Populate_Calendar_Tables(Calendar.Code);
5877: BSC_MO_HELPER_PKG.CheckError('BSC_UPDATE_UTIL.Populate_Calendar_Tables');
5878: End IF;
5879: EXIT WHEN l_index1 = BSC_METADATA_OPTIMIZER_PKG.gCalendars.last;
5880: l_index1 := BSC_METADATA_OPTIMIZER_PKG.gCalendars.next(l_index1);
5881: END LOOP;
5882: Else
5883: --gSYSTEM_STAGE = 2

Line 5880: l_index1 := BSC_METADATA_OPTIMIZER_PKG.gCalendars.next(l_index1);

5876: BSC_UPDATE_UTIL.Populate_Calendar_Tables(Calendar.Code);
5877: BSC_MO_HELPER_PKG.CheckError('BSC_UPDATE_UTIL.Populate_Calendar_Tables');
5878: End IF;
5879: EXIT WHEN l_index1 = BSC_METADATA_OPTIMIZER_PKG.gCalendars.last;
5880: l_index1 := BSC_METADATA_OPTIMIZER_PKG.gCalendars.next(l_index1);
5881: END LOOP;
5882: Else
5883: --gSYSTEM_STAGE = 2
5884: --Check for any change in year range of all calendars

Line 5885: IF (BSC_METADATA_OPTIMIZER_PKG.gCalendars.count >0) THEN

5881: END LOOP;
5882: Else
5883: --gSYSTEM_STAGE = 2
5884: --Check for any change in year range of all calendars
5885: IF (BSC_METADATA_OPTIMIZER_PKG.gCalendars.count >0) THEN
5886: l_index1 := BSC_METADATA_OPTIMIZER_PKG.gCalendars.first;
5887: LOOP
5888: Calendar := BSC_METADATA_OPTIMIZER_PKG.gCalendars(l_index1);
5889: IF Calendar.RangeYrMod = 1 THEN

Line 5886: l_index1 := BSC_METADATA_OPTIMIZER_PKG.gCalendars.first;

5882: Else
5883: --gSYSTEM_STAGE = 2
5884: --Check for any change in year range of all calendars
5885: IF (BSC_METADATA_OPTIMIZER_PKG.gCalendars.count >0) THEN
5886: l_index1 := BSC_METADATA_OPTIMIZER_PKG.gCalendars.first;
5887: LOOP
5888: Calendar := BSC_METADATA_OPTIMIZER_PKG.gCalendars(l_index1);
5889: IF Calendar.RangeYrMod = 1 THEN
5890: --There was a change in the range of years

Line 5888: Calendar := BSC_METADATA_OPTIMIZER_PKG.gCalendars(l_index1);

5884: --Check for any change in year range of all calendars
5885: IF (BSC_METADATA_OPTIMIZER_PKG.gCalendars.count >0) THEN
5886: l_index1 := BSC_METADATA_OPTIMIZER_PKG.gCalendars.first;
5887: LOOP
5888: Calendar := BSC_METADATA_OPTIMIZER_PKG.gCalendars(l_index1);
5889: IF Calendar.RangeYrMod = 1 THEN
5890: --There was a change in the range of years
5891: num_anos := Calendar.NumOfYears;
5892: num_anosant := Calendar.PreviousYears;

Line 5911: EXIT WHEN l_index1 = BSC_METADATA_OPTIMIZER_PKG.gCalendars.last;

5907: --The API that imported the BIS Calendars already populated BSC_DB_CALENDAR and
5908: --BSC_SYS_PERIODS_TL, etc
5909:
5910: End IF;
5911: EXIT WHEN l_index1 = BSC_METADATA_OPTIMIZER_PKG.gCalendars.last;
5912: l_index1 := BSC_METADATA_OPTIMIZER_PKG.gCalendars.next(l_index1);
5913: END LOOP;
5914: END IF; -- OF (BSC_METADATA_OPTIMIZER_PKG.gCalendars.count >0)
5915: End IF;

Line 5912: l_index1 := BSC_METADATA_OPTIMIZER_PKG.gCalendars.next(l_index1);

5908: --BSC_SYS_PERIODS_TL, etc
5909:
5910: End IF;
5911: EXIT WHEN l_index1 = BSC_METADATA_OPTIMIZER_PKG.gCalendars.last;
5912: l_index1 := BSC_METADATA_OPTIMIZER_PKG.gCalendars.next(l_index1);
5913: END LOOP;
5914: END IF; -- OF (BSC_METADATA_OPTIMIZER_PKG.gCalendars.count >0)
5915: End IF;
5916:

Line 5914: END IF; -- OF (BSC_METADATA_OPTIMIZER_PKG.gCalendars.count >0)

5910: End IF;
5911: EXIT WHEN l_index1 = BSC_METADATA_OPTIMIZER_PKG.gCalendars.last;
5912: l_index1 := BSC_METADATA_OPTIMIZER_PKG.gCalendars.next(l_index1);
5913: END LOOP;
5914: END IF; -- OF (BSC_METADATA_OPTIMIZER_PKG.gCalendars.count >0)
5915: End IF;
5916:
5917: IF BSC_METADATA_OPTIMIZER_PKG.gThereisStructureChange THEN
5918: IF (BSC_METADATA_OPTIMIZER_PKG.gIndicators.count >0) THEN

Line 5917: IF BSC_METADATA_OPTIMIZER_PKG.gThereisStructureChange THEN

5913: END LOOP;
5914: END IF; -- OF (BSC_METADATA_OPTIMIZER_PKG.gCalendars.count >0)
5915: End IF;
5916:
5917: IF BSC_METADATA_OPTIMIZER_PKG.gThereisStructureChange THEN
5918: IF (BSC_METADATA_OPTIMIZER_PKG.gIndicators.count >0) THEN
5919: l_index1 := BSC_METADATA_OPTIMIZER_PKG.gIndicators.first;
5920: END IF;
5921: LOOP

Line 5918: IF (BSC_METADATA_OPTIMIZER_PKG.gIndicators.count >0) THEN

5914: END IF; -- OF (BSC_METADATA_OPTIMIZER_PKG.gCalendars.count >0)
5915: End IF;
5916:
5917: IF BSC_METADATA_OPTIMIZER_PKG.gThereisStructureChange THEN
5918: IF (BSC_METADATA_OPTIMIZER_PKG.gIndicators.count >0) THEN
5919: l_index1 := BSC_METADATA_OPTIMIZER_PKG.gIndicators.first;
5920: END IF;
5921: LOOP
5922: EXIT WHEN BSC_METADATA_OPTIMIZER_PKG.gIndicators.count = 0;

Line 5919: l_index1 := BSC_METADATA_OPTIMIZER_PKG.gIndicators.first;

5915: End IF;
5916:
5917: IF BSC_METADATA_OPTIMIZER_PKG.gThereisStructureChange THEN
5918: IF (BSC_METADATA_OPTIMIZER_PKG.gIndicators.count >0) THEN
5919: l_index1 := BSC_METADATA_OPTIMIZER_PKG.gIndicators.first;
5920: END IF;
5921: LOOP
5922: EXIT WHEN BSC_METADATA_OPTIMIZER_PKG.gIndicators.count = 0;
5923: Indicador := BSC_METADATA_OPTIMIZER_PKG.gIndicators(l_index1);

Line 5922: EXIT WHEN BSC_METADATA_OPTIMIZER_PKG.gIndicators.count = 0;

5918: IF (BSC_METADATA_OPTIMIZER_PKG.gIndicators.count >0) THEN
5919: l_index1 := BSC_METADATA_OPTIMIZER_PKG.gIndicators.first;
5920: END IF;
5921: LOOP
5922: EXIT WHEN BSC_METADATA_OPTIMIZER_PKG.gIndicators.count = 0;
5923: Indicador := BSC_METADATA_OPTIMIZER_PKG.gIndicators(l_index1);
5924: IF Indicador.Action_Flag = 3 THEN
5925: --Update indicators current period in BSC_KPI_PERIODICITIES
5926: --IF the periodicity is not yearly then the period need to be 1,

Line 5923: Indicador := BSC_METADATA_OPTIMIZER_PKG.gIndicators(l_index1);

5919: l_index1 := BSC_METADATA_OPTIMIZER_PKG.gIndicators.first;
5920: END IF;
5921: LOOP
5922: EXIT WHEN BSC_METADATA_OPTIMIZER_PKG.gIndicators.count = 0;
5923: Indicador := BSC_METADATA_OPTIMIZER_PKG.gIndicators(l_index1);
5924: IF Indicador.Action_Flag = 3 THEN
5925: --Update indicators current period in BSC_KPI_PERIODICITIES
5926: --IF the periodicity is not yearly then the period need to be 1,
5927: --otherwise the period ned to be the current fiscal year of the calendar

Line 5938: SET KPI_COLOR = BSC_METADATA_OPTIMIZER_PKG.ColorG,

5934: )
5935: WHERE INDICATOR = Indicador.Code;
5936: --All colors in the panel have to be gray
5937: UPDATE BSC_SYS_KPI_COLORS
5938: SET KPI_COLOR = BSC_METADATA_OPTIMIZER_PKG.ColorG,
5939: ACTUAL_DATA = NULL,
5940: BUDGET_DATA = NULL
5941: WHERE INDICATOR = Indicador.Code;
5942: UPDATE bsc_sys_objective_colors

Line 5943: SET obj_color = BSC_METADATA_OPTIMIZER_PKG.ColorG

5939: ACTUAL_DATA = NULL,
5940: BUDGET_DATA = NULL
5941: WHERE INDICATOR = Indicador.Code;
5942: UPDATE bsc_sys_objective_colors
5943: SET obj_color = BSC_METADATA_OPTIMIZER_PKG.ColorG
5944: WHERE indicator = Indicador.Code;
5945: --Update the name of period of indicators in BSC_KPI_DEFAULTS_TL table
5946: --BSC Kpi => BSC Periodicity
5947: --Labels are in BSC_SYS_PERIODS_TL

Line 5988: EXIT WHEN l_index1 = BSC_METADATA_OPTIMIZER_PKG.gIndicators.last;

5984: --Update date of indicator
5985: UPDATE BSC_KPI_DEFAULTS_B SET LAST_UPDATE_DATE = SYSDATE WHERE INDICATOR = Indicador.Code;
5986: --EXECUTE IMMEDIATE l_stmt USING Indicador.Code;
5987: End IF;
5988: EXIT WHEN l_index1 = BSC_METADATA_OPTIMIZER_PKG.gIndicators.last;
5989: l_index1 := BSC_METADATA_OPTIMIZER_PKG.gIndicators.next(l_index1);
5990: END LOOP;
5991: End IF;
5992:

Line 5989: l_index1 := BSC_METADATA_OPTIMIZER_PKG.gIndicators.next(l_index1);

5985: UPDATE BSC_KPI_DEFAULTS_B SET LAST_UPDATE_DATE = SYSDATE WHERE INDICATOR = Indicador.Code;
5986: --EXECUTE IMMEDIATE l_stmt USING Indicador.Code;
5987: End IF;
5988: EXIT WHEN l_index1 = BSC_METADATA_OPTIMIZER_PKG.gIndicators.last;
5989: l_index1 := BSC_METADATA_OPTIMIZER_PKG.gIndicators.next(l_index1);
5990: END LOOP;
5991: End IF;
5992:
5993: --Update BSC_SYS_INIT

Line 6003: FROM '||bsc_metadata_optimizer_pkg.g_db_tables_cols_last||' last

5999: FUNCTION all_columns_used(p_arr_source_table DBMS_SQL.VARCHAR2_TABLE, p_table_name OUT NOCOPY DBMS_SQL.VARCHAR2_TABLE, p_unused_columns OUT NOCOPY DBMS_SQL.VARCHAR2_TABLE) return boolean IS
6000:
6001: l_stmt VARCHAR2(1000):=
6002: 'SELECT last.table_name, last.column_name
6003: FROM '||bsc_metadata_optimizer_pkg.g_db_tables_cols_last||' last
6004: , bsc_tmp_big_in_cond cond
6005: WHERE last.table_name = cond.value_v
6006: AND cond.variable_id = :1
6007: AND cond.session_id = :2

Line 6063: 'select distinct source_table_name from '||BSC_METADATA_OPTIMIZER_PKG.g_db_table_rels_last||'

6059: PROCEDURE drop_unused_columns_for_tables(p_table_name IN DBMS_SQL.VARCHAR2_TABLE) IS
6060: strWhereInIndics VARCHAR2(1000);
6061: cv CurTyp;
6062: l_stmt VARCHAR2(1000):=
6063: 'select distinct source_table_name from '||BSC_METADATA_OPTIMIZER_PKG.g_db_table_rels_last||'
6064: connect by table_name = prior source_table_name
6065: start with table_name in (select value_v from bsc_tmp_big_in_cond where variable_id=:1 and session_id=:2)';
6066: l_unused_columns DBMS_SQL.VARCHAR2_TABLE;
6067: l_mvlog_name VARCHAR2(100);

Line 6121: FOR i IN BSC_METADATA_OPTIMIZER_PKG.gIndicators.first..BSC_METADATA_OPTIMIZER_PKG.gIndicators.last LOOP

6117: BEGIN
6118:
6119: writeTmp('Starting drop_unused_columns');
6120: strWhereInIndics := Get_New_Big_In_Cond_Number(11, 'INDICATOR');
6121: FOR i IN BSC_METADATA_OPTIMIZER_PKG.gIndicators.first..BSC_METADATA_OPTIMIZER_PKG.gIndicators.last LOOP
6122: l_number_list(l_number_list.count+1):= BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).code;
6123: END LOOP;
6124: Add_Value_Bulk(11, l_number_list);
6125:

Line 6122: l_number_list(l_number_list.count+1):= BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).code;

6118:
6119: writeTmp('Starting drop_unused_columns');
6120: strWhereInIndics := Get_New_Big_In_Cond_Number(11, 'INDICATOR');
6121: FOR i IN BSC_METADATA_OPTIMIZER_PKG.gIndicators.first..BSC_METADATA_OPTIMIZER_PKG.gIndicators.last LOOP
6122: l_number_list(l_number_list.count+1):= BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).code;
6123: END LOOP;
6124: Add_Value_Bulk(11, l_number_list);
6125:
6126: l_stmt := '

Line 6127: SELECT distinct table_name FROM '||BSC_METADATA_OPTIMIZER_PKG.g_db_table_rels_last||' last

6123: END LOOP;
6124: Add_Value_Bulk(11, l_number_list);
6125:
6126: l_stmt := '
6127: SELECT distinct table_name FROM '||BSC_METADATA_OPTIMIZER_PKG.g_db_table_rels_last||' last
6128: WHERE table_name LIKE ''BSC_S%'' AND source_table_name NOT like ''BSC_S%''
6129: AND table_name in
6130: (select distinct table_name
6131: from '||BSC_METADATA_OPTIMIZER_PKG.g_kpi_data_last||' )';

Line 6131: from '||BSC_METADATA_OPTIMIZER_PKG.g_kpi_data_last||' )';

6127: SELECT distinct table_name FROM '||BSC_METADATA_OPTIMIZER_PKG.g_db_table_rels_last||' last
6128: WHERE table_name LIKE ''BSC_S%'' AND source_table_name NOT like ''BSC_S%''
6129: AND table_name in
6130: (select distinct table_name
6131: from '||BSC_METADATA_OPTIMIZER_PKG.g_kpi_data_last||' )';
6132:
6133: writeTmp('Drop table SQL in drop unused columns is :'||l_stmt, FND_LOG.LEVEL_STATEMENT, FALSE);
6134: writeTmp(BSC_METADATA_OPTIMIZER_PKG.gBSCSchema||','|| BSC_METADATA_OPTIMIZER_PKG.gAppsSchema,
6135: FND_LOG.LEVEL_STATEMENT, FALSE);

Line 6134: writeTmp(BSC_METADATA_OPTIMIZER_PKG.gBSCSchema||','|| BSC_METADATA_OPTIMIZER_PKG.gAppsSchema,

6130: (select distinct table_name
6131: from '||BSC_METADATA_OPTIMIZER_PKG.g_kpi_data_last||' )';
6132:
6133: writeTmp('Drop table SQL in drop unused columns is :'||l_stmt, FND_LOG.LEVEL_STATEMENT, FALSE);
6134: writeTmp(BSC_METADATA_OPTIMIZER_PKG.gBSCSchema||','|| BSC_METADATA_OPTIMIZER_PKG.gAppsSchema,
6135: FND_LOG.LEVEL_STATEMENT, FALSE);
6136: OPEN cv FOR l_stmt ;
6137: FETCH cv BULK COLLECT INTO l_arr_table_names;
6138: CLOSE cv;

Line 6154: where log.log_owner=BSC_METADATA_OPTIMIZER_PKG.gBSCSchema

6150: CURSOR cDropThese IS
6151: select distinct level_table_name
6152: from bsc_sys_dim_levels_b lvl
6153: , all_snapshot_logs log
6154: where log.log_owner=BSC_METADATA_OPTIMIZER_PKG.gBSCSchema
6155: and log.master = lvl.level_Table_name
6156: minus
6157: select distinct level_table_name
6158: from bsc_sys_dim_levels_b lvl

Line 6162: where log.log_owner=BSC_METADATA_OPTIMIZER_PKG.gBSCSchema

6158: from bsc_sys_dim_levels_b lvl
6159: , all_snapshot_logs log
6160: , all_dependencies db
6161: , all_mviews mv
6162: where log.log_owner=BSC_METADATA_OPTIMIZER_PKG.gBSCSchema
6163: and log.master = lvl.level_Table_name
6164: and db.referenced_owner=BSC_METADATA_OPTIMIZER_PKG.gBSCSchema
6165: and db.referenced_type = 'TABLE'
6166: and db.referenced_name = lvl.level_table_name

Line 6164: and db.referenced_owner=BSC_METADATA_OPTIMIZER_PKG.gBSCSchema

6160: , all_dependencies db
6161: , all_mviews mv
6162: where log.log_owner=BSC_METADATA_OPTIMIZER_PKG.gBSCSchema
6163: and log.master = lvl.level_Table_name
6164: and db.referenced_owner=BSC_METADATA_OPTIMIZER_PKG.gBSCSchema
6165: and db.referenced_type = 'TABLE'
6166: and db.referenced_name = lvl.level_table_name
6167: and db.type = 'MATERIALIZED VIEW'
6168: and db.owner=mv.owner

Line 6170: and mv.owner = BSC_METADATA_OPTIMIZER_PKG.gAppsSchema

6166: and db.referenced_name = lvl.level_table_name
6167: and db.type = 'MATERIALIZED VIEW'
6168: and db.owner=mv.owner
6169: and db.name=mv.mview_name
6170: and mv.owner = BSC_METADATA_OPTIMIZER_PKG.gAppsSchema
6171: and mv.fast_refreshable<>'NO';
6172: BEGIN
6173: FOR i IN cDropThese LOOP
6174: execute immediate 'drop materialized view log on '||BSC_METADATA_OPTIMIZER_PKG.gBSCSchema||'.'||i.level_table_name;

Line 6174: execute immediate 'drop materialized view log on '||BSC_METADATA_OPTIMIZER_PKG.gBSCSchema||'.'||i.level_table_name;

6170: and mv.owner = BSC_METADATA_OPTIMIZER_PKG.gAppsSchema
6171: and mv.fast_refreshable<>'NO';
6172: BEGIN
6173: FOR i IN cDropThese LOOP
6174: execute immediate 'drop materialized view log on '||BSC_METADATA_OPTIMIZER_PKG.gBSCSchema||'.'||i.level_table_name;
6175: END LOOP;
6176: EXCEPTION WHEN OTHERS THEN
6177: writeTmp('Exception in drop_unused_mvlogs:'||sqlerrm, FND_LOG.LEVEL_UNEXPECTED, true);
6178: raise;

Line 6233: WHERE (table_name like BSC_METADATA_OPTIMIZER_PKG.g_kpi_tmp_table_pfx||'%'

6229: CURSOR cDropThese IS
6230: WITH btable as (
6231: SELECT table_name, owner
6232: FROM all_tables
6233: WHERE (table_name like BSC_METADATA_OPTIMIZER_PKG.g_kpi_tmp_table_pfx||'%'
6234: OR table_name like BSC_METADATA_OPTIMIZER_PKG.g_period_circ_check_pfx||'%'
6235: OR table_name like BSC_METADATA_OPTIMIZER_PKG.g_filtered_indics_pfx||'%'
6236: OR table_name like BSC_METADATA_OPTIMIZER_PKG.g_db_tables_last_pfx||'%'
6237: OR table_name like BSC_METADATA_OPTIMIZER_PKG.g_db_tables_rels_last_pfx||'%'

Line 6234: OR table_name like BSC_METADATA_OPTIMIZER_PKG.g_period_circ_check_pfx||'%'

6230: WITH btable as (
6231: SELECT table_name, owner
6232: FROM all_tables
6233: WHERE (table_name like BSC_METADATA_OPTIMIZER_PKG.g_kpi_tmp_table_pfx||'%'
6234: OR table_name like BSC_METADATA_OPTIMIZER_PKG.g_period_circ_check_pfx||'%'
6235: OR table_name like BSC_METADATA_OPTIMIZER_PKG.g_filtered_indics_pfx||'%'
6236: OR table_name like BSC_METADATA_OPTIMIZER_PKG.g_db_tables_last_pfx||'%'
6237: OR table_name like BSC_METADATA_OPTIMIZER_PKG.g_db_tables_rels_last_pfx||'%'
6238: OR table_name like BSC_METADATA_OPTIMIZER_PKG.g_kpi_data_last_pfx||'%'

Line 6235: OR table_name like BSC_METADATA_OPTIMIZER_PKG.g_filtered_indics_pfx||'%'

6231: SELECT table_name, owner
6232: FROM all_tables
6233: WHERE (table_name like BSC_METADATA_OPTIMIZER_PKG.g_kpi_tmp_table_pfx||'%'
6234: OR table_name like BSC_METADATA_OPTIMIZER_PKG.g_period_circ_check_pfx||'%'
6235: OR table_name like BSC_METADATA_OPTIMIZER_PKG.g_filtered_indics_pfx||'%'
6236: OR table_name like BSC_METADATA_OPTIMIZER_PKG.g_db_tables_last_pfx||'%'
6237: OR table_name like BSC_METADATA_OPTIMIZER_PKG.g_db_tables_rels_last_pfx||'%'
6238: OR table_name like BSC_METADATA_OPTIMIZER_PKG.g_kpi_data_last_pfx||'%'
6239: OR table_name like BSC_METADATA_OPTIMIZER_PKG.g_db_tables_cols_last_pfx||'%'

Line 6236: OR table_name like BSC_METADATA_OPTIMIZER_PKG.g_db_tables_last_pfx||'%'

6232: FROM all_tables
6233: WHERE (table_name like BSC_METADATA_OPTIMIZER_PKG.g_kpi_tmp_table_pfx||'%'
6234: OR table_name like BSC_METADATA_OPTIMIZER_PKG.g_period_circ_check_pfx||'%'
6235: OR table_name like BSC_METADATA_OPTIMIZER_PKG.g_filtered_indics_pfx||'%'
6236: OR table_name like BSC_METADATA_OPTIMIZER_PKG.g_db_tables_last_pfx||'%'
6237: OR table_name like BSC_METADATA_OPTIMIZER_PKG.g_db_tables_rels_last_pfx||'%'
6238: OR table_name like BSC_METADATA_OPTIMIZER_PKG.g_kpi_data_last_pfx||'%'
6239: OR table_name like BSC_METADATA_OPTIMIZER_PKG.g_db_tables_cols_last_pfx||'%'
6240: OR table_name like 'BSC_TMP_COL_TYPE%'

Line 6237: OR table_name like BSC_METADATA_OPTIMIZER_PKG.g_db_tables_rels_last_pfx||'%'

6233: WHERE (table_name like BSC_METADATA_OPTIMIZER_PKG.g_kpi_tmp_table_pfx||'%'
6234: OR table_name like BSC_METADATA_OPTIMIZER_PKG.g_period_circ_check_pfx||'%'
6235: OR table_name like BSC_METADATA_OPTIMIZER_PKG.g_filtered_indics_pfx||'%'
6236: OR table_name like BSC_METADATA_OPTIMIZER_PKG.g_db_tables_last_pfx||'%'
6237: OR table_name like BSC_METADATA_OPTIMIZER_PKG.g_db_tables_rels_last_pfx||'%'
6238: OR table_name like BSC_METADATA_OPTIMIZER_PKG.g_kpi_data_last_pfx||'%'
6239: OR table_name like BSC_METADATA_OPTIMIZER_PKG.g_db_tables_cols_last_pfx||'%'
6240: OR table_name like 'BSC_TMP_COL_TYPE%'
6241: )

Line 6238: OR table_name like BSC_METADATA_OPTIMIZER_PKG.g_kpi_data_last_pfx||'%'

6234: OR table_name like BSC_METADATA_OPTIMIZER_PKG.g_period_circ_check_pfx||'%'
6235: OR table_name like BSC_METADATA_OPTIMIZER_PKG.g_filtered_indics_pfx||'%'
6236: OR table_name like BSC_METADATA_OPTIMIZER_PKG.g_db_tables_last_pfx||'%'
6237: OR table_name like BSC_METADATA_OPTIMIZER_PKG.g_db_tables_rels_last_pfx||'%'
6238: OR table_name like BSC_METADATA_OPTIMIZER_PKG.g_kpi_data_last_pfx||'%'
6239: OR table_name like BSC_METADATA_OPTIMIZER_PKG.g_db_tables_cols_last_pfx||'%'
6240: OR table_name like 'BSC_TMP_COL_TYPE%'
6241: )
6242: AND owner in (BSC_METADATA_OPTIMIZER_PKG.gAppsSchema, BSC_METADATA_OPTIMIZER_PKG.gBSCSchema))

Line 6239: OR table_name like BSC_METADATA_OPTIMIZER_PKG.g_db_tables_cols_last_pfx||'%'

6235: OR table_name like BSC_METADATA_OPTIMIZER_PKG.g_filtered_indics_pfx||'%'
6236: OR table_name like BSC_METADATA_OPTIMIZER_PKG.g_db_tables_last_pfx||'%'
6237: OR table_name like BSC_METADATA_OPTIMIZER_PKG.g_db_tables_rels_last_pfx||'%'
6238: OR table_name like BSC_METADATA_OPTIMIZER_PKG.g_kpi_data_last_pfx||'%'
6239: OR table_name like BSC_METADATA_OPTIMIZER_PKG.g_db_tables_cols_last_pfx||'%'
6240: OR table_name like 'BSC_TMP_COL_TYPE%'
6241: )
6242: AND owner in (BSC_METADATA_OPTIMIZER_PKG.gAppsSchema, BSC_METADATA_OPTIMIZER_PKG.gBSCSchema))
6243: SELECT table_name, owner

Line 6242: AND owner in (BSC_METADATA_OPTIMIZER_PKG.gAppsSchema, BSC_METADATA_OPTIMIZER_PKG.gBSCSchema))

6238: OR table_name like BSC_METADATA_OPTIMIZER_PKG.g_kpi_data_last_pfx||'%'
6239: OR table_name like BSC_METADATA_OPTIMIZER_PKG.g_db_tables_cols_last_pfx||'%'
6240: OR table_name like 'BSC_TMP_COL_TYPE%'
6241: )
6242: AND owner in (BSC_METADATA_OPTIMIZER_PKG.gAppsSchema, BSC_METADATA_OPTIMIZER_PKG.gBSCSchema))
6243: SELECT table_name, owner
6244: FROM btable
6245: MINUS
6246: SELECT table_name, owner

Line 6254: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN

6250:
6251: l_table_name VARCHAR2(100);
6252: l_owner VARCHAR2(100);
6253: BEGIN
6254: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
6255: BSC_MO_HELPER_PKG.writeTmp('Inside cleanDatabase '||get_time, FND_LOG.LEVEL_PROCEDURE);
6256: END IF;
6257: -- Applicable only for MV architecture and non-upgrade scenario
6258: IF (bsc_metadata_optimizer_pkg.g_bsc_mv and bsc_metadata_optimizer_pkg.g_Sum_Level_Change<>1) then

Line 6258: IF (bsc_metadata_optimizer_pkg.g_bsc_mv and bsc_metadata_optimizer_pkg.g_Sum_Level_Change<>1) then

6254: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
6255: BSC_MO_HELPER_PKG.writeTmp('Inside cleanDatabase '||get_time, FND_LOG.LEVEL_PROCEDURE);
6256: END IF;
6257: -- Applicable only for MV architecture and non-upgrade scenario
6258: IF (bsc_metadata_optimizer_pkg.g_bsc_mv and bsc_metadata_optimizer_pkg.g_Sum_Level_Change<>1) then
6259: -- Bug 4318566:drop unused MV logs
6260: drop_unused_mvlogs;
6261: END IF;
6262: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN

Line 6262: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN

6258: IF (bsc_metadata_optimizer_pkg.g_bsc_mv and bsc_metadata_optimizer_pkg.g_Sum_Level_Change<>1) then
6259: -- Bug 4318566:drop unused MV logs
6260: drop_unused_mvlogs;
6261: END IF;
6262: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
6263: BSC_MO_HELPER_PKG.writeTmp('Dropped unused mv logs '||get_time, FND_LOG.LEVEL_PROCEDURE);
6264: END IF;
6265:
6266: numAllTables := 0;

Line 6284: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN

6280: --used in the whole system
6281: --Tables that are in BSC_DB_TABLES (excluding input tables for dimensions) and are not
6282: --in the array arrAllTables() are not used. We need to delete those tables from database
6283: -- and BSC metadata.
6284: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
6285: BSC_MO_HELPER_PKG.writeTmp('numAllTables = '||numAllTables||', arrAllTables.count = '||arrAllTables.count||' '||get_time);
6286: END IF;
6287: --So far the array arrAllTables() contains all input, base and summary tables
6288: --used in the whole system

Line 6302: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN

6298:
6299: l_stmt := 'SELECT DISTINCT TABLE_NAME FROM BSC_DB_TABLES WHERE TABLE_TYPE <> :1
6300: minus
6301: select upper(value_v) from bsc_tmp_big_in_cond where variable_id=:2 and session_id = :3';
6302: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
6303: BSC_MO_HELPER_PKG.writeTmp('l_stmt = '||l_stmt||' '||get_time);
6304: END IF;
6305:
6306: OPEN cv FOR L_stmt using 2, 1, bsc_metadata_optimizer_pkg.g_session_id;

Line 6306: OPEN cv FOR L_stmt using 2, 1, bsc_metadata_optimizer_pkg.g_session_id;

6302: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
6303: BSC_MO_HELPER_PKG.writeTmp('l_stmt = '||l_stmt||' '||get_time);
6304: END IF;
6305:
6306: OPEN cv FOR L_stmt using 2, 1, bsc_metadata_optimizer_pkg.g_session_id;
6307: LOOP
6308: FETCH cv INTO l_table;
6309: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
6310: BSC_MO_HELPER_PKG.writeTmp('after fetch '||get_time);

Line 6309: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN

6305:
6306: OPEN cv FOR L_stmt using 2, 1, bsc_metadata_optimizer_pkg.g_session_id;
6307: LOOP
6308: FETCH cv INTO l_table;
6309: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
6310: BSC_MO_HELPER_PKG.writeTmp('after fetch '||get_time);
6311: END IF;
6312: EXIT WHEN CV%NOTFOUND;
6313: arrNotUsedTables(arrNotUsedTables.count) := l_table;

Line 6318: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN

6314: END Loop;
6315: Close cv;
6316:
6317: numNotUsedTables := arrNotUsedTables.count;
6318: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
6319: writeTmp('numNotUsedTables = '||numNotUsedTables||' '||get_time);
6320: END IF;
6321:
6322: strWhereInCondition := Get_New_Big_In_Cond_Varchar2(1, 'TABLE_NAME');

Line 6328: bsc_metadata_optimizer_pkg.logProgress('MISC', 'Dropping unused table = '||arrNotUsedTables(i));

6324: --Drop the table from the database
6325: If numNotUsedTables > 0 Then
6326: For i IN 0..numNotUsedTables - 1 LOOP
6327: writeTmp('Dropping unused table = '||arrNotUsedTables(i)||' '||get_time, FND_LOG.LEVEL_STATEMENT, true);
6328: bsc_metadata_optimizer_pkg.logProgress('MISC', 'Dropping unused table = '||arrNotUsedTables(i));
6329: DropTable(arrNotUsedTables(i));
6330: IF (numNotUsedTables>l_drop_threshold) THEN
6331: null;
6332: ELSE

Line 6344: bsc_metadata_optimizer_pkg.logProgress('CLEANUP', 'Deleting entries from BSC_DB_TABLES');

6340: --BSC_DB_TABLES
6341:
6342: IF (numNotUsedTables>l_drop_threshold) THEN
6343: writeTmp('Deleting entries from BSC_DB_TABLES '||get_time);
6344: bsc_metadata_optimizer_pkg.logProgress('CLEANUP', 'Deleting entries from BSC_DB_TABLES');
6345: EXECUTE IMMEDIATE ' DELETE FROM BSC_DB_TABLES WHERE '||strWhereInCondition;
6346: writeTmp('Deleting entries from BSC_DB_TABLES_RELS '||get_time);
6347: bsc_metadata_optimizer_pkg.logProgress('CLEANUP', 'Deleting entries from BSC_DB_TABLES_RELS');
6348: EXECUTE IMMEDIATE ' DELETE FROM BSC_DB_TABLES_RELS WHERE '|| strWhereInCondition;

Line 6347: bsc_metadata_optimizer_pkg.logProgress('CLEANUP', 'Deleting entries from BSC_DB_TABLES_RELS');

6343: writeTmp('Deleting entries from BSC_DB_TABLES '||get_time);
6344: bsc_metadata_optimizer_pkg.logProgress('CLEANUP', 'Deleting entries from BSC_DB_TABLES');
6345: EXECUTE IMMEDIATE ' DELETE FROM BSC_DB_TABLES WHERE '||strWhereInCondition;
6346: writeTmp('Deleting entries from BSC_DB_TABLES_RELS '||get_time);
6347: bsc_metadata_optimizer_pkg.logProgress('CLEANUP', 'Deleting entries from BSC_DB_TABLES_RELS');
6348: EXECUTE IMMEDIATE ' DELETE FROM BSC_DB_TABLES_RELS WHERE '|| strWhereInCondition;
6349: writeTmp('Deleting entries from BSC_DB_TABLES_COLS '||get_time);
6350: bsc_metadata_optimizer_pkg.logProgress('CLEANUP', 'Deleting entries from BSC_DB_TABLES_COLS');
6351: EXECUTE IMMEDIATE ' DELETE FROM BSC_DB_TABLES_COLS WHERE '|| strWhereInCondition;

Line 6350: bsc_metadata_optimizer_pkg.logProgress('CLEANUP', 'Deleting entries from BSC_DB_TABLES_COLS');

6346: writeTmp('Deleting entries from BSC_DB_TABLES_RELS '||get_time);
6347: bsc_metadata_optimizer_pkg.logProgress('CLEANUP', 'Deleting entries from BSC_DB_TABLES_RELS');
6348: EXECUTE IMMEDIATE ' DELETE FROM BSC_DB_TABLES_RELS WHERE '|| strWhereInCondition;
6349: writeTmp('Deleting entries from BSC_DB_TABLES_COLS '||get_time);
6350: bsc_metadata_optimizer_pkg.logProgress('CLEANUP', 'Deleting entries from BSC_DB_TABLES_COLS');
6351: EXECUTE IMMEDIATE ' DELETE FROM BSC_DB_TABLES_COLS WHERE '|| strWhereInCondition;
6352: writeTmp('Deleting entries from BSC_DB_CALCULATIONS '||get_time);
6353: bsc_metadata_optimizer_pkg.logProgress('CLEANUP', 'Deleting entries from BSC_DB_CALCULATIONS');
6354: EXECUTE IMMEDIATE ' DELETE FROM BSC_DB_CALCULATIONS WHERE '|| strWhereInCondition;

Line 6353: bsc_metadata_optimizer_pkg.logProgress('CLEANUP', 'Deleting entries from BSC_DB_CALCULATIONS');

6349: writeTmp('Deleting entries from BSC_DB_TABLES_COLS '||get_time);
6350: bsc_metadata_optimizer_pkg.logProgress('CLEANUP', 'Deleting entries from BSC_DB_TABLES_COLS');
6351: EXECUTE IMMEDIATE ' DELETE FROM BSC_DB_TABLES_COLS WHERE '|| strWhereInCondition;
6352: writeTmp('Deleting entries from BSC_DB_CALCULATIONS '||get_time);
6353: bsc_metadata_optimizer_pkg.logProgress('CLEANUP', 'Deleting entries from BSC_DB_CALCULATIONS');
6354: EXECUTE IMMEDIATE ' DELETE FROM BSC_DB_CALCULATIONS WHERE '|| strWhereInCondition;
6355: ELSE
6356: l_drop_these := substr(l_drop_these, 1, length(l_drop_these)-1)||')';
6357: writeTmp('Deleting entries from BSC_DB_TABLES '||get_time);

Line 6358: bsc_metadata_optimizer_pkg.logProgress('CLEANUP', 'Deleting entries from BSC_DB_TABLES');

6354: EXECUTE IMMEDIATE ' DELETE FROM BSC_DB_CALCULATIONS WHERE '|| strWhereInCondition;
6355: ELSE
6356: l_drop_these := substr(l_drop_these, 1, length(l_drop_these)-1)||')';
6357: writeTmp('Deleting entries from BSC_DB_TABLES '||get_time);
6358: bsc_metadata_optimizer_pkg.logProgress('CLEANUP', 'Deleting entries from BSC_DB_TABLES');
6359: EXECUTE IMMEDIATE ' DELETE FROM BSC_DB_TABLES WHERE table_name IN '||l_drop_these;
6360: writeTmp('Deleting entries from BSC_DB_TABLES_RELS '||get_time);
6361: bsc_metadata_optimizer_pkg.logProgress('CLEANUP', 'Deleting entries from BSC_DB_TABLES_RELS');
6362: EXECUTE IMMEDIATE ' DELETE FROM BSC_DB_TABLES_RELS WHERE table_name IN '||l_drop_these;

Line 6361: bsc_metadata_optimizer_pkg.logProgress('CLEANUP', 'Deleting entries from BSC_DB_TABLES_RELS');

6357: writeTmp('Deleting entries from BSC_DB_TABLES '||get_time);
6358: bsc_metadata_optimizer_pkg.logProgress('CLEANUP', 'Deleting entries from BSC_DB_TABLES');
6359: EXECUTE IMMEDIATE ' DELETE FROM BSC_DB_TABLES WHERE table_name IN '||l_drop_these;
6360: writeTmp('Deleting entries from BSC_DB_TABLES_RELS '||get_time);
6361: bsc_metadata_optimizer_pkg.logProgress('CLEANUP', 'Deleting entries from BSC_DB_TABLES_RELS');
6362: EXECUTE IMMEDIATE ' DELETE FROM BSC_DB_TABLES_RELS WHERE table_name IN '||l_drop_these;
6363: writeTmp('Deleting entries from BSC_DB_TABLES_COLS '||get_time);
6364: bsc_metadata_optimizer_pkg.logProgress('CLEANUP', 'Deleting entries from BSC_DB_TABLES_COLS');
6365: EXECUTE IMMEDIATE ' DELETE FROM BSC_DB_TABLES_COLS WHERE table_name IN '||l_drop_these;

Line 6364: bsc_metadata_optimizer_pkg.logProgress('CLEANUP', 'Deleting entries from BSC_DB_TABLES_COLS');

6360: writeTmp('Deleting entries from BSC_DB_TABLES_RELS '||get_time);
6361: bsc_metadata_optimizer_pkg.logProgress('CLEANUP', 'Deleting entries from BSC_DB_TABLES_RELS');
6362: EXECUTE IMMEDIATE ' DELETE FROM BSC_DB_TABLES_RELS WHERE table_name IN '||l_drop_these;
6363: writeTmp('Deleting entries from BSC_DB_TABLES_COLS '||get_time);
6364: bsc_metadata_optimizer_pkg.logProgress('CLEANUP', 'Deleting entries from BSC_DB_TABLES_COLS');
6365: EXECUTE IMMEDIATE ' DELETE FROM BSC_DB_TABLES_COLS WHERE table_name IN '||l_drop_these;
6366: writeTmp('Deleting entries from BSC_DB_CALCULATIONS '||get_time);
6367: bsc_metadata_optimizer_pkg.logProgress('CLEANUP', 'Deleting entries from BSC_DB_CALCULATIONS');
6368: EXECUTE IMMEDIATE ' DELETE FROM BSC_DB_CALCULATIONS WHERE table_name IN '||l_drop_these;

Line 6367: bsc_metadata_optimizer_pkg.logProgress('CLEANUP', 'Deleting entries from BSC_DB_CALCULATIONS');

6363: writeTmp('Deleting entries from BSC_DB_TABLES_COLS '||get_time);
6364: bsc_metadata_optimizer_pkg.logProgress('CLEANUP', 'Deleting entries from BSC_DB_TABLES_COLS');
6365: EXECUTE IMMEDIATE ' DELETE FROM BSC_DB_TABLES_COLS WHERE table_name IN '||l_drop_these;
6366: writeTmp('Deleting entries from BSC_DB_CALCULATIONS '||get_time);
6367: bsc_metadata_optimizer_pkg.logProgress('CLEANUP', 'Deleting entries from BSC_DB_CALCULATIONS');
6368: EXECUTE IMMEDIATE ' DELETE FROM BSC_DB_CALCULATIONS WHERE table_name IN '||l_drop_these;
6369: END IF;
6370: END IF;
6371: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN

Line 6371: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN

6367: bsc_metadata_optimizer_pkg.logProgress('CLEANUP', 'Deleting entries from BSC_DB_CALCULATIONS');
6368: EXECUTE IMMEDIATE ' DELETE FROM BSC_DB_CALCULATIONS WHERE table_name IN '||l_drop_these;
6369: END IF;
6370: END IF;
6371: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
6372: BSC_MO_HELPER_PKG.writeTmp('Deleted invalid entries from metadata tables '||get_time, FND_LOG.LEVEL_PROCEDURE);
6373: END IF;
6374: -- If the system is in summary tables mode, then bsc_kpi_properties.implementation_type should be 1
6375: -- clean up any corruption caused by foll. case

Line 6378: IF (BSC_METADATA_OPTIMIZER_PKG.g_BSC_mv=false) THEN

6374: -- If the system is in summary tables mode, then bsc_kpi_properties.implementation_type should be 1
6375: -- clean up any corruption caused by foll. case
6376: -- System in in Summary tables. User changes MV level to 2. User sets KPI as AW impl.
6377: -- Then user changes MV level to null (note that he may have NOT run database generator)
6378: IF (BSC_METADATA_OPTIMIZER_PKG.g_BSC_mv=false) THEN
6379: UPDATE BSC_KPI_PROPERTIES set property_value = 1 where property_code = BSC_METADATA_OPTIMIZER_PKG.IMPL_TYPE;
6380: END IF;
6381: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
6382: BSC_MO_HELPER_PKG.writeTmp('Updated kpi_properties '||get_time, FND_LOG.LEVEL_PROCEDURE);

Line 6379: UPDATE BSC_KPI_PROPERTIES set property_value = 1 where property_code = BSC_METADATA_OPTIMIZER_PKG.IMPL_TYPE;

6375: -- clean up any corruption caused by foll. case
6376: -- System in in Summary tables. User changes MV level to 2. User sets KPI as AW impl.
6377: -- Then user changes MV level to null (note that he may have NOT run database generator)
6378: IF (BSC_METADATA_OPTIMIZER_PKG.g_BSC_mv=false) THEN
6379: UPDATE BSC_KPI_PROPERTIES set property_value = 1 where property_code = BSC_METADATA_OPTIMIZER_PKG.IMPL_TYPE;
6380: END IF;
6381: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
6382: BSC_MO_HELPER_PKG.writeTmp('Updated kpi_properties '||get_time, FND_LOG.LEVEL_PROCEDURE);
6383: END IF;

Line 6381: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN

6377: -- Then user changes MV level to null (note that he may have NOT run database generator)
6378: IF (BSC_METADATA_OPTIMIZER_PKG.g_BSC_mv=false) THEN
6379: UPDATE BSC_KPI_PROPERTIES set property_value = 1 where property_code = BSC_METADATA_OPTIMIZER_PKG.IMPL_TYPE;
6380: END IF;
6381: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
6382: BSC_MO_HELPER_PKG.writeTmp('Updated kpi_properties '||get_time, FND_LOG.LEVEL_PROCEDURE);
6383: END IF;
6384: --DropTable(BSC_METADATA_OPTIMIZER_PKG.g_kpi_tmp_table);
6385: DropTable(BSC_METADATA_OPTIMIZER_PKG.g_dbmeasure_tmp_table );

Line 6384: --DropTable(BSC_METADATA_OPTIMIZER_PKG.g_kpi_tmp_table);

6380: END IF;
6381: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
6382: BSC_MO_HELPER_PKG.writeTmp('Updated kpi_properties '||get_time, FND_LOG.LEVEL_PROCEDURE);
6383: END IF;
6384: --DropTable(BSC_METADATA_OPTIMIZER_PKG.g_kpi_tmp_table);
6385: DropTable(BSC_METADATA_OPTIMIZER_PKG.g_dbmeasure_tmp_table );
6386: DropTable(BSC_METADATA_OPTIMIZER_PKG.g_period_circ_check);
6387: DropTable(BSC_METADATA_OPTIMIZER_PKG.g_filtered_indics);
6388: DropTable(BSC_METADATA_OPTIMIZER_PKG.g_kpi_tmp_table);

Line 6385: DropTable(BSC_METADATA_OPTIMIZER_PKG.g_dbmeasure_tmp_table );

6381: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
6382: BSC_MO_HELPER_PKG.writeTmp('Updated kpi_properties '||get_time, FND_LOG.LEVEL_PROCEDURE);
6383: END IF;
6384: --DropTable(BSC_METADATA_OPTIMIZER_PKG.g_kpi_tmp_table);
6385: DropTable(BSC_METADATA_OPTIMIZER_PKG.g_dbmeasure_tmp_table );
6386: DropTable(BSC_METADATA_OPTIMIZER_PKG.g_period_circ_check);
6387: DropTable(BSC_METADATA_OPTIMIZER_PKG.g_filtered_indics);
6388: DropTable(BSC_METADATA_OPTIMIZER_PKG.g_kpi_tmp_table);
6389: DropTable(BSC_METADATA_OPTIMIZER_PKG.g_db_tables_last);

Line 6386: DropTable(BSC_METADATA_OPTIMIZER_PKG.g_period_circ_check);

6382: BSC_MO_HELPER_PKG.writeTmp('Updated kpi_properties '||get_time, FND_LOG.LEVEL_PROCEDURE);
6383: END IF;
6384: --DropTable(BSC_METADATA_OPTIMIZER_PKG.g_kpi_tmp_table);
6385: DropTable(BSC_METADATA_OPTIMIZER_PKG.g_dbmeasure_tmp_table );
6386: DropTable(BSC_METADATA_OPTIMIZER_PKG.g_period_circ_check);
6387: DropTable(BSC_METADATA_OPTIMIZER_PKG.g_filtered_indics);
6388: DropTable(BSC_METADATA_OPTIMIZER_PKG.g_kpi_tmp_table);
6389: DropTable(BSC_METADATA_OPTIMIZER_PKG.g_db_tables_last);
6390: DropTable(BSC_METADATA_OPTIMIZER_PKG.g_db_table_rels_last);

Line 6387: DropTable(BSC_METADATA_OPTIMIZER_PKG.g_filtered_indics);

6383: END IF;
6384: --DropTable(BSC_METADATA_OPTIMIZER_PKG.g_kpi_tmp_table);
6385: DropTable(BSC_METADATA_OPTIMIZER_PKG.g_dbmeasure_tmp_table );
6386: DropTable(BSC_METADATA_OPTIMIZER_PKG.g_period_circ_check);
6387: DropTable(BSC_METADATA_OPTIMIZER_PKG.g_filtered_indics);
6388: DropTable(BSC_METADATA_OPTIMIZER_PKG.g_kpi_tmp_table);
6389: DropTable(BSC_METADATA_OPTIMIZER_PKG.g_db_tables_last);
6390: DropTable(BSC_METADATA_OPTIMIZER_PKG.g_db_table_rels_last);
6391: DropTable(BSC_METADATA_OPTIMIZER_PKG.g_kpi_data_last);

Line 6388: DropTable(BSC_METADATA_OPTIMIZER_PKG.g_kpi_tmp_table);

6384: --DropTable(BSC_METADATA_OPTIMIZER_PKG.g_kpi_tmp_table);
6385: DropTable(BSC_METADATA_OPTIMIZER_PKG.g_dbmeasure_tmp_table );
6386: DropTable(BSC_METADATA_OPTIMIZER_PKG.g_period_circ_check);
6387: DropTable(BSC_METADATA_OPTIMIZER_PKG.g_filtered_indics);
6388: DropTable(BSC_METADATA_OPTIMIZER_PKG.g_kpi_tmp_table);
6389: DropTable(BSC_METADATA_OPTIMIZER_PKG.g_db_tables_last);
6390: DropTable(BSC_METADATA_OPTIMIZER_PKG.g_db_table_rels_last);
6391: DropTable(BSC_METADATA_OPTIMIZER_PKG.g_kpi_data_last);
6392: DropTable(BSC_METADATA_OPTIMIZER_PKG.g_db_tables_cols_last);

Line 6389: DropTable(BSC_METADATA_OPTIMIZER_PKG.g_db_tables_last);

6385: DropTable(BSC_METADATA_OPTIMIZER_PKG.g_dbmeasure_tmp_table );
6386: DropTable(BSC_METADATA_OPTIMIZER_PKG.g_period_circ_check);
6387: DropTable(BSC_METADATA_OPTIMIZER_PKG.g_filtered_indics);
6388: DropTable(BSC_METADATA_OPTIMIZER_PKG.g_kpi_tmp_table);
6389: DropTable(BSC_METADATA_OPTIMIZER_PKG.g_db_tables_last);
6390: DropTable(BSC_METADATA_OPTIMIZER_PKG.g_db_table_rels_last);
6391: DropTable(BSC_METADATA_OPTIMIZER_PKG.g_kpi_data_last);
6392: DropTable(BSC_METADATA_OPTIMIZER_PKG.g_db_tables_cols_last);
6393: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN

Line 6390: DropTable(BSC_METADATA_OPTIMIZER_PKG.g_db_table_rels_last);

6386: DropTable(BSC_METADATA_OPTIMIZER_PKG.g_period_circ_check);
6387: DropTable(BSC_METADATA_OPTIMIZER_PKG.g_filtered_indics);
6388: DropTable(BSC_METADATA_OPTIMIZER_PKG.g_kpi_tmp_table);
6389: DropTable(BSC_METADATA_OPTIMIZER_PKG.g_db_tables_last);
6390: DropTable(BSC_METADATA_OPTIMIZER_PKG.g_db_table_rels_last);
6391: DropTable(BSC_METADATA_OPTIMIZER_PKG.g_kpi_data_last);
6392: DropTable(BSC_METADATA_OPTIMIZER_PKG.g_db_tables_cols_last);
6393: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
6394: BSC_MO_HELPER_PKG.writeTmp('Dropped temp tables '||get_time, FND_LOG.LEVEL_PROCEDURE);

Line 6391: DropTable(BSC_METADATA_OPTIMIZER_PKG.g_kpi_data_last);

6387: DropTable(BSC_METADATA_OPTIMIZER_PKG.g_filtered_indics);
6388: DropTable(BSC_METADATA_OPTIMIZER_PKG.g_kpi_tmp_table);
6389: DropTable(BSC_METADATA_OPTIMIZER_PKG.g_db_tables_last);
6390: DropTable(BSC_METADATA_OPTIMIZER_PKG.g_db_table_rels_last);
6391: DropTable(BSC_METADATA_OPTIMIZER_PKG.g_kpi_data_last);
6392: DropTable(BSC_METADATA_OPTIMIZER_PKG.g_db_tables_cols_last);
6393: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
6394: BSC_MO_HELPER_PKG.writeTmp('Dropped temp tables '||get_time, FND_LOG.LEVEL_PROCEDURE);
6395: END IF;

Line 6392: DropTable(BSC_METADATA_OPTIMIZER_PKG.g_db_tables_cols_last);

6388: DropTable(BSC_METADATA_OPTIMIZER_PKG.g_kpi_tmp_table);
6389: DropTable(BSC_METADATA_OPTIMIZER_PKG.g_db_tables_last);
6390: DropTable(BSC_METADATA_OPTIMIZER_PKG.g_db_table_rels_last);
6391: DropTable(BSC_METADATA_OPTIMIZER_PKG.g_kpi_data_last);
6392: DropTable(BSC_METADATA_OPTIMIZER_PKG.g_db_tables_cols_last);
6393: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
6394: BSC_MO_HELPER_PKG.writeTmp('Dropped temp tables '||get_time, FND_LOG.LEVEL_PROCEDURE);
6395: END IF;
6396: OPEN cDropThese;

Line 6393: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN

6389: DropTable(BSC_METADATA_OPTIMIZER_PKG.g_db_tables_last);
6390: DropTable(BSC_METADATA_OPTIMIZER_PKG.g_db_table_rels_last);
6391: DropTable(BSC_METADATA_OPTIMIZER_PKG.g_kpi_data_last);
6392: DropTable(BSC_METADATA_OPTIMIZER_PKG.g_db_tables_cols_last);
6393: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
6394: BSC_MO_HELPER_PKG.writeTmp('Dropped temp tables '||get_time, FND_LOG.LEVEL_PROCEDURE);
6395: END IF;
6396: OPEN cDropThese;
6397: LOOP

Line 6399: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN

6395: END IF;
6396: OPEN cDropThese;
6397: LOOP
6398: FETCH cDropThese INTO l_table_name, l_owner;
6399: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
6400: BSC_MO_HELPER_PKG.writeTmp('After fetching cursor time is '||get_time, FND_LOG.LEVEL_PROCEDURE);
6401: END IF;
6402: EXIT WHEN cDropThese%NOTFOUND;
6403: IF (l_owner = BSC_METADATA_OPTIMIZER_PKG.gAppsSchema) THEN -- table in apps schema

Line 6403: IF (l_owner = BSC_METADATA_OPTIMIZER_PKG.gAppsSchema) THEN -- table in apps schema

6399: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
6400: BSC_MO_HELPER_PKG.writeTmp('After fetching cursor time is '||get_time, FND_LOG.LEVEL_PROCEDURE);
6401: END IF;
6402: EXIT WHEN cDropThese%NOTFOUND;
6403: IF (l_owner = BSC_METADATA_OPTIMIZER_PKG.gAppsSchema) THEN -- table in apps schema
6404: execute immediate 'drop table '||l_table_name;
6405: ELSE
6406: DropTable(l_table_name);
6407: END IF;

Line 6411: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN

6407: END IF;
6408: BSC_MO_HELPER_PKG.writeTmp('Dropped left over table '||l_table_name||' '||get_time, FND_LOG.LEVEL_STATEMENT, false);
6409: END LOOP;
6410: CLOSE cDropThese;
6411: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
6412: BSC_MO_HELPER_PKG.writeTmp('Completed cleanDatabase '||get_time, FND_LOG.LEVEL_PROCEDURE);
6413: END IF;
6414: EXCEPTION WHEN OTHERS THEN
6415: writeTmp('Exception in cleanDatabase:'||sqlerrm, FND_LOG.LEVEL_UNEXPECTED, true);

Line 6524: IF (NOT BSC_METADATA_OPTIMIZER_PKG.g_log) THEN

6520: ELSE
6521: l_severity := pSeverity;
6522: END IF;
6523: IF (l_force_logging=false) THEN
6524: IF (NOT BSC_METADATA_OPTIMIZER_PKG.g_log) THEN
6525: write_to_stack(msg);
6526: write_debug(msg);
6527: return;
6528: END IF;

Line 6529: IF (l_severity < BSC_METADATA_OPTIMIZER_PKG.g_log_level) THEN

6525: write_to_stack(msg);
6526: write_debug(msg);
6527: return;
6528: END IF;
6529: IF (l_severity < BSC_METADATA_OPTIMIZER_PKG.g_log_level) THEN
6530: write_to_stack(msg);
6531: write_debug(msg);
6532: return;
6533: END IF;

Line 6535: bsc_metadata_optimizer_pkg.gSequence := bsc_metadata_optimizer_pkg.gSequence +1 ;

6531: write_debug(msg);
6532: return;
6533: END IF;
6534: END IF;
6535: bsc_metadata_optimizer_pkg.gSequence := bsc_metadata_optimizer_pkg.gSequence +1 ;
6536: l_msg := substr(msg, 1, 32767);
6537: IF (l_msg IS NULL) THEN
6538: l_msg := ' ';
6539: END IF;

Line 6541: bsc_metadata_optimizer_pkg.gIndent := substr(bsc_metadata_optimizer_pkg.gIndent,

6537: IF (l_msg IS NULL) THEN
6538: l_msg := ' ';
6539: END IF;
6540: IF (l_msg like 'Completed %' OR l_msg like 'Compl %' OR l_msg like 'Compl. %') THEN
6541: bsc_metadata_optimizer_pkg.gIndent := substr(bsc_metadata_optimizer_pkg.gIndent,
6542: 1, length(bsc_metadata_optimizer_pkg.gIndent) - length(bsc_metadata_optimizer_pkg.gSpacing));
6543: END IF;
6544:
6545: IF (NOT BSC_METADATA_OPTIMIZER_PKG.g_fileOpened) THEN

Line 6542: 1, length(bsc_metadata_optimizer_pkg.gIndent) - length(bsc_metadata_optimizer_pkg.gSpacing));

6538: l_msg := ' ';
6539: END IF;
6540: IF (l_msg like 'Completed %' OR l_msg like 'Compl %' OR l_msg like 'Compl. %') THEN
6541: bsc_metadata_optimizer_pkg.gIndent := substr(bsc_metadata_optimizer_pkg.gIndent,
6542: 1, length(bsc_metadata_optimizer_pkg.gIndent) - length(bsc_metadata_optimizer_pkg.gSpacing));
6543: END IF;
6544:
6545: IF (NOT BSC_METADATA_OPTIMIZER_PKG.g_fileOpened) THEN
6546: BSC_METADATA_OPTIMIZER_PKG.g_dir:=fnd_profile.value('UTL_FILE_LOG');

Line 6545: IF (NOT BSC_METADATA_OPTIMIZER_PKG.g_fileOpened) THEN

6541: bsc_metadata_optimizer_pkg.gIndent := substr(bsc_metadata_optimizer_pkg.gIndent,
6542: 1, length(bsc_metadata_optimizer_pkg.gIndent) - length(bsc_metadata_optimizer_pkg.gSpacing));
6543: END IF;
6544:
6545: IF (NOT BSC_METADATA_OPTIMIZER_PKG.g_fileOpened) THEN
6546: BSC_METADATA_OPTIMIZER_PKG.g_dir:=fnd_profile.value('UTL_FILE_LOG');
6547: BSC_METADATA_OPTIMIZER_PKG.g_dir := null;
6548: IF BSC_METADATA_OPTIMIZER_PKG.g_dir is null THEN
6549: BSC_METADATA_OPTIMIZER_PKG.g_dir:=BSC_METADATA_OPTIMIZER_PKG.getUtlFileDir;

Line 6546: BSC_METADATA_OPTIMIZER_PKG.g_dir:=fnd_profile.value('UTL_FILE_LOG');

6542: 1, length(bsc_metadata_optimizer_pkg.gIndent) - length(bsc_metadata_optimizer_pkg.gSpacing));
6543: END IF;
6544:
6545: IF (NOT BSC_METADATA_OPTIMIZER_PKG.g_fileOpened) THEN
6546: BSC_METADATA_OPTIMIZER_PKG.g_dir:=fnd_profile.value('UTL_FILE_LOG');
6547: BSC_METADATA_OPTIMIZER_PKG.g_dir := null;
6548: IF BSC_METADATA_OPTIMIZER_PKG.g_dir is null THEN
6549: BSC_METADATA_OPTIMIZER_PKG.g_dir:=BSC_METADATA_OPTIMIZER_PKG.getUtlFileDir;
6550: END IF;

Line 6547: BSC_METADATA_OPTIMIZER_PKG.g_dir := null;

6543: END IF;
6544:
6545: IF (NOT BSC_METADATA_OPTIMIZER_PKG.g_fileOpened) THEN
6546: BSC_METADATA_OPTIMIZER_PKG.g_dir:=fnd_profile.value('UTL_FILE_LOG');
6547: BSC_METADATA_OPTIMIZER_PKG.g_dir := null;
6548: IF BSC_METADATA_OPTIMIZER_PKG.g_dir is null THEN
6549: BSC_METADATA_OPTIMIZER_PKG.g_dir:=BSC_METADATA_OPTIMIZER_PKG.getUtlFileDir;
6550: END IF;
6551: fnd_file.put_names(BSC_METADATA_OPTIMIZER_PKG.g_filename||'.log', BSC_METADATA_OPTIMIZER_PKG.g_filename||'.out', BSC_METADATA_OPTIMIZER_PKG.g_dir);

Line 6548: IF BSC_METADATA_OPTIMIZER_PKG.g_dir is null THEN

6544:
6545: IF (NOT BSC_METADATA_OPTIMIZER_PKG.g_fileOpened) THEN
6546: BSC_METADATA_OPTIMIZER_PKG.g_dir:=fnd_profile.value('UTL_FILE_LOG');
6547: BSC_METADATA_OPTIMIZER_PKG.g_dir := null;
6548: IF BSC_METADATA_OPTIMIZER_PKG.g_dir is null THEN
6549: BSC_METADATA_OPTIMIZER_PKG.g_dir:=BSC_METADATA_OPTIMIZER_PKG.getUtlFileDir;
6550: END IF;
6551: fnd_file.put_names(BSC_METADATA_OPTIMIZER_PKG.g_filename||'.log', BSC_METADATA_OPTIMIZER_PKG.g_filename||'.out', BSC_METADATA_OPTIMIZER_PKG.g_dir);
6552: BSC_METADATA_OPTIMIZER_PKG.g_file := utl_file.fopen(BSC_METADATA_OPTIMIZER_PKG.g_dir, 'METADATA.log' ,'w');

Line 6549: BSC_METADATA_OPTIMIZER_PKG.g_dir:=BSC_METADATA_OPTIMIZER_PKG.getUtlFileDir;

6545: IF (NOT BSC_METADATA_OPTIMIZER_PKG.g_fileOpened) THEN
6546: BSC_METADATA_OPTIMIZER_PKG.g_dir:=fnd_profile.value('UTL_FILE_LOG');
6547: BSC_METADATA_OPTIMIZER_PKG.g_dir := null;
6548: IF BSC_METADATA_OPTIMIZER_PKG.g_dir is null THEN
6549: BSC_METADATA_OPTIMIZER_PKG.g_dir:=BSC_METADATA_OPTIMIZER_PKG.getUtlFileDir;
6550: END IF;
6551: fnd_file.put_names(BSC_METADATA_OPTIMIZER_PKG.g_filename||'.log', BSC_METADATA_OPTIMIZER_PKG.g_filename||'.out', BSC_METADATA_OPTIMIZER_PKG.g_dir);
6552: BSC_METADATA_OPTIMIZER_PKG.g_file := utl_file.fopen(BSC_METADATA_OPTIMIZER_PKG.g_dir, 'METADATA.log' ,'w');
6553: BSC_METADATA_OPTIMIZER_PKG.g_fileOpened := true;

Line 6551: fnd_file.put_names(BSC_METADATA_OPTIMIZER_PKG.g_filename||'.log', BSC_METADATA_OPTIMIZER_PKG.g_filename||'.out', BSC_METADATA_OPTIMIZER_PKG.g_dir);

6547: BSC_METADATA_OPTIMIZER_PKG.g_dir := null;
6548: IF BSC_METADATA_OPTIMIZER_PKG.g_dir is null THEN
6549: BSC_METADATA_OPTIMIZER_PKG.g_dir:=BSC_METADATA_OPTIMIZER_PKG.getUtlFileDir;
6550: END IF;
6551: fnd_file.put_names(BSC_METADATA_OPTIMIZER_PKG.g_filename||'.log', BSC_METADATA_OPTIMIZER_PKG.g_filename||'.out', BSC_METADATA_OPTIMIZER_PKG.g_dir);
6552: BSC_METADATA_OPTIMIZER_PKG.g_file := utl_file.fopen(BSC_METADATA_OPTIMIZER_PKG.g_dir, 'METADATA.log' ,'w');
6553: BSC_METADATA_OPTIMIZER_PKG.g_fileOpened := true;
6554: END IF;
6555: IF (length(l_msg) <=256) THEN

Line 6552: BSC_METADATA_OPTIMIZER_PKG.g_file := utl_file.fopen(BSC_METADATA_OPTIMIZER_PKG.g_dir, 'METADATA.log' ,'w');

6548: IF BSC_METADATA_OPTIMIZER_PKG.g_dir is null THEN
6549: BSC_METADATA_OPTIMIZER_PKG.g_dir:=BSC_METADATA_OPTIMIZER_PKG.getUtlFileDir;
6550: END IF;
6551: fnd_file.put_names(BSC_METADATA_OPTIMIZER_PKG.g_filename||'.log', BSC_METADATA_OPTIMIZER_PKG.g_filename||'.out', BSC_METADATA_OPTIMIZER_PKG.g_dir);
6552: BSC_METADATA_OPTIMIZER_PKG.g_file := utl_file.fopen(BSC_METADATA_OPTIMIZER_PKG.g_dir, 'METADATA.log' ,'w');
6553: BSC_METADATA_OPTIMIZER_PKG.g_fileOpened := true;
6554: END IF;
6555: IF (length(l_msg) <=256) THEN
6556: fnd_file.put_line(FND_FILE.LOG, bsc_metadata_optimizer_pkg.gIndent||l_msg);

Line 6553: BSC_METADATA_OPTIMIZER_PKG.g_fileOpened := true;

6549: BSC_METADATA_OPTIMIZER_PKG.g_dir:=BSC_METADATA_OPTIMIZER_PKG.getUtlFileDir;
6550: END IF;
6551: fnd_file.put_names(BSC_METADATA_OPTIMIZER_PKG.g_filename||'.log', BSC_METADATA_OPTIMIZER_PKG.g_filename||'.out', BSC_METADATA_OPTIMIZER_PKG.g_dir);
6552: BSC_METADATA_OPTIMIZER_PKG.g_file := utl_file.fopen(BSC_METADATA_OPTIMIZER_PKG.g_dir, 'METADATA.log' ,'w');
6553: BSC_METADATA_OPTIMIZER_PKG.g_fileOpened := true;
6554: END IF;
6555: IF (length(l_msg) <=256) THEN
6556: fnd_file.put_line(FND_FILE.LOG, bsc_metadata_optimizer_pkg.gIndent||l_msg);
6557: ELSE

Line 6556: fnd_file.put_line(FND_FILE.LOG, bsc_metadata_optimizer_pkg.gIndent||l_msg);

6552: BSC_METADATA_OPTIMIZER_PKG.g_file := utl_file.fopen(BSC_METADATA_OPTIMIZER_PKG.g_dir, 'METADATA.log' ,'w');
6553: BSC_METADATA_OPTIMIZER_PKG.g_fileOpened := true;
6554: END IF;
6555: IF (length(l_msg) <=256) THEN
6556: fnd_file.put_line(FND_FILE.LOG, bsc_metadata_optimizer_pkg.gIndent||l_msg);
6557: ELSE
6558: l_varchar2_table := bsc_dbgen_utils.get_char_chunks(l_msg, 256);
6559: FOR i IN l_varchar2_table.first..l_varchar2_table.last LOOP
6560: fnd_file.put_line(FND_FILE.LOG, bsc_metadata_optimizer_pkg.gIndent||l_varchar2_table(i));

Line 6560: fnd_file.put_line(FND_FILE.LOG, bsc_metadata_optimizer_pkg.gIndent||l_varchar2_table(i));

6556: fnd_file.put_line(FND_FILE.LOG, bsc_metadata_optimizer_pkg.gIndent||l_msg);
6557: ELSE
6558: l_varchar2_table := bsc_dbgen_utils.get_char_chunks(l_msg, 256);
6559: FOR i IN l_varchar2_table.first..l_varchar2_table.last LOOP
6560: fnd_file.put_line(FND_FILE.LOG, bsc_metadata_optimizer_pkg.gIndent||l_varchar2_table(i));
6561: END LOOP;
6562: END IF;
6563: IF (l_msg like 'Inside%') THEN
6564: bsc_metadata_optimizer_pkg.gIndent := bsc_metadata_optimizer_pkg.gIndent || bsc_metadata_optimizer_pkg.gSpacing;

Line 6564: bsc_metadata_optimizer_pkg.gIndent := bsc_metadata_optimizer_pkg.gIndent || bsc_metadata_optimizer_pkg.gSpacing;

6560: fnd_file.put_line(FND_FILE.LOG, bsc_metadata_optimizer_pkg.gIndent||l_varchar2_table(i));
6561: END LOOP;
6562: END IF;
6563: IF (l_msg like 'Inside%') THEN
6564: bsc_metadata_optimizer_pkg.gIndent := bsc_metadata_optimizer_pkg.gIndent || bsc_metadata_optimizer_pkg.gSpacing;
6565: END IF;
6566: IF length(bsc_metadata_optimizer_pkg.gIndent) > 256 THEN
6567: bsc_metadata_optimizer_pkg.gIndent := substr(bsc_metadata_optimizer_pkg.gIndent, 1, 64);
6568: END IF;

Line 6566: IF length(bsc_metadata_optimizer_pkg.gIndent) > 256 THEN

6562: END IF;
6563: IF (l_msg like 'Inside%') THEN
6564: bsc_metadata_optimizer_pkg.gIndent := bsc_metadata_optimizer_pkg.gIndent || bsc_metadata_optimizer_pkg.gSpacing;
6565: END IF;
6566: IF length(bsc_metadata_optimizer_pkg.gIndent) > 256 THEN
6567: bsc_metadata_optimizer_pkg.gIndent := substr(bsc_metadata_optimizer_pkg.gIndent, 1, 64);
6568: END IF;
6569: EXCEPTION WHEN OTHERS THEN
6570: fnd_file.put_line(FND_FILE.LOG, 'Exception in writeTmp:'||sqlerrm);

Line 6567: bsc_metadata_optimizer_pkg.gIndent := substr(bsc_metadata_optimizer_pkg.gIndent, 1, 64);

6563: IF (l_msg like 'Inside%') THEN
6564: bsc_metadata_optimizer_pkg.gIndent := bsc_metadata_optimizer_pkg.gIndent || bsc_metadata_optimizer_pkg.gSpacing;
6565: END IF;
6566: IF length(bsc_metadata_optimizer_pkg.gIndent) > 256 THEN
6567: bsc_metadata_optimizer_pkg.gIndent := substr(bsc_metadata_optimizer_pkg.gIndent, 1, 64);
6568: END IF;
6569: EXCEPTION WHEN OTHERS THEN
6570: fnd_file.put_line(FND_FILE.LOG, 'Exception in writeTmp:'||sqlerrm);
6571: raise;

Line 6583: IF (BSC_METADATA_OPTIMIZER_PKG.gIndicators.count>0) THEN

6579: BEGIN
6580:
6581: BSC_MO_HELPER_PKG.writeTmp('Inside UpdateFlags '||get_time, FND_LOG.LEVEL_PROCEDURE, true);
6582:
6583: IF (BSC_METADATA_OPTIMIZER_PKG.gIndicators.count>0) THEN
6584: i := BSC_METADATA_OPTIMIZER_PKG.gIndicators.first;
6585: END IF;
6586: LOOP
6587: EXIT WHEN BSC_METADATA_OPTIMIZER_PKG.gIndicators.count = 0;

Line 6584: i := BSC_METADATA_OPTIMIZER_PKG.gIndicators.first;

6580:
6581: BSC_MO_HELPER_PKG.writeTmp('Inside UpdateFlags '||get_time, FND_LOG.LEVEL_PROCEDURE, true);
6582:
6583: IF (BSC_METADATA_OPTIMIZER_PKG.gIndicators.count>0) THEN
6584: i := BSC_METADATA_OPTIMIZER_PKG.gIndicators.first;
6585: END IF;
6586: LOOP
6587: EXIT WHEN BSC_METADATA_OPTIMIZER_PKG.gIndicators.count = 0;
6588:

Line 6587: EXIT WHEN BSC_METADATA_OPTIMIZER_PKG.gIndicators.count = 0;

6583: IF (BSC_METADATA_OPTIMIZER_PKG.gIndicators.count>0) THEN
6584: i := BSC_METADATA_OPTIMIZER_PKG.gIndicators.first;
6585: END IF;
6586: LOOP
6587: EXIT WHEN BSC_METADATA_OPTIMIZER_PKG.gIndicators.count = 0;
6588:
6589: IF (BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).Action_Flag=2) THEN
6590: --Case 2
6591: DELETE FROM BSC_KPIS_B WHERE INDICATOR = BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).Code;

Line 6589: IF (BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).Action_Flag=2) THEN

6585: END IF;
6586: LOOP
6587: EXIT WHEN BSC_METADATA_OPTIMIZER_PKG.gIndicators.count = 0;
6588:
6589: IF (BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).Action_Flag=2) THEN
6590: --Case 2
6591: DELETE FROM BSC_KPIS_B WHERE INDICATOR = BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).Code;
6592: DELETE FROM BSC_KPIS_TL WHERE INDICATOR = BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).code;
6593: DELETE FROM BSC_KPI_DATA_TABLES WHERE INDICATOR = BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).code;

Line 6591: DELETE FROM BSC_KPIS_B WHERE INDICATOR = BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).Code;

6587: EXIT WHEN BSC_METADATA_OPTIMIZER_PKG.gIndicators.count = 0;
6588:
6589: IF (BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).Action_Flag=2) THEN
6590: --Case 2
6591: DELETE FROM BSC_KPIS_B WHERE INDICATOR = BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).Code;
6592: DELETE FROM BSC_KPIS_TL WHERE INDICATOR = BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).code;
6593: DELETE FROM BSC_KPI_DATA_TABLES WHERE INDICATOR = BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).code;
6594: writeTmp('Deleting entries for indicator='||BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).Code||', old value='||BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).Action_Flag, FND_LOG.LEVEL_STATEMENT, false);
6595: ELSIF (BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).Action_Flag=1 OR BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).Action_Flag=3) THEN

Line 6592: DELETE FROM BSC_KPIS_TL WHERE INDICATOR = BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).code;

6588:
6589: IF (BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).Action_Flag=2) THEN
6590: --Case 2
6591: DELETE FROM BSC_KPIS_B WHERE INDICATOR = BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).Code;
6592: DELETE FROM BSC_KPIS_TL WHERE INDICATOR = BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).code;
6593: DELETE FROM BSC_KPI_DATA_TABLES WHERE INDICATOR = BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).code;
6594: writeTmp('Deleting entries for indicator='||BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).Code||', old value='||BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).Action_Flag, FND_LOG.LEVEL_STATEMENT, false);
6595: ELSIF (BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).Action_Flag=1 OR BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).Action_Flag=3) THEN
6596: --Case 1, 3

Line 6593: DELETE FROM BSC_KPI_DATA_TABLES WHERE INDICATOR = BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).code;

6589: IF (BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).Action_Flag=2) THEN
6590: --Case 2
6591: DELETE FROM BSC_KPIS_B WHERE INDICATOR = BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).Code;
6592: DELETE FROM BSC_KPIS_TL WHERE INDICATOR = BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).code;
6593: DELETE FROM BSC_KPI_DATA_TABLES WHERE INDICATOR = BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).code;
6594: writeTmp('Deleting entries for indicator='||BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).Code||', old value='||BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).Action_Flag, FND_LOG.LEVEL_STATEMENT, false);
6595: ELSIF (BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).Action_Flag=1 OR BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).Action_Flag=3) THEN
6596: --Case 1, 3
6597: UPDATE BSC_KPIS_B SET PROTOTYPE_FLAG = 0,

Line 6594: writeTmp('Deleting entries for indicator='||BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).Code||', old value='||BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).Action_Flag, FND_LOG.LEVEL_STATEMENT, false);

6590: --Case 2
6591: DELETE FROM BSC_KPIS_B WHERE INDICATOR = BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).Code;
6592: DELETE FROM BSC_KPIS_TL WHERE INDICATOR = BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).code;
6593: DELETE FROM BSC_KPI_DATA_TABLES WHERE INDICATOR = BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).code;
6594: writeTmp('Deleting entries for indicator='||BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).Code||', old value='||BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).Action_Flag, FND_LOG.LEVEL_STATEMENT, false);
6595: ELSIF (BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).Action_Flag=1 OR BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).Action_Flag=3) THEN
6596: --Case 1, 3
6597: UPDATE BSC_KPIS_B SET PROTOTYPE_FLAG = 0,
6598: LAST_UPDATED_BY = BSC_METADATA_OPTIMIZER_PKG.gUserId,

Line 6595: ELSIF (BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).Action_Flag=1 OR BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).Action_Flag=3) THEN

6591: DELETE FROM BSC_KPIS_B WHERE INDICATOR = BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).Code;
6592: DELETE FROM BSC_KPIS_TL WHERE INDICATOR = BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).code;
6593: DELETE FROM BSC_KPI_DATA_TABLES WHERE INDICATOR = BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).code;
6594: writeTmp('Deleting entries for indicator='||BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).Code||', old value='||BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).Action_Flag, FND_LOG.LEVEL_STATEMENT, false);
6595: ELSIF (BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).Action_Flag=1 OR BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).Action_Flag=3) THEN
6596: --Case 1, 3
6597: UPDATE BSC_KPIS_B SET PROTOTYPE_FLAG = 0,
6598: LAST_UPDATED_BY = BSC_METADATA_OPTIMIZER_PKG.gUserId,
6599: LAST_UPDATE_DATE = SYSDATE

Line 6598: LAST_UPDATED_BY = BSC_METADATA_OPTIMIZER_PKG.gUserId,

6594: writeTmp('Deleting entries for indicator='||BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).Code||', old value='||BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).Action_Flag, FND_LOG.LEVEL_STATEMENT, false);
6595: ELSIF (BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).Action_Flag=1 OR BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).Action_Flag=3) THEN
6596: --Case 1, 3
6597: UPDATE BSC_KPIS_B SET PROTOTYPE_FLAG = 0,
6598: LAST_UPDATED_BY = BSC_METADATA_OPTIMIZER_PKG.gUserId,
6599: LAST_UPDATE_DATE = SYSDATE
6600: WHERE INDICATOR = BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).Code;
6601: -- Color By KPI: Mark KPIs to Production mode in tendem with Objective's prototype flag.
6602: -- This is done so that both Objective and underlying KPIs come with the same color in IViewer,

Line 6600: WHERE INDICATOR = BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).Code;

6596: --Case 1, 3
6597: UPDATE BSC_KPIS_B SET PROTOTYPE_FLAG = 0,
6598: LAST_UPDATED_BY = BSC_METADATA_OPTIMIZER_PKG.gUserId,
6599: LAST_UPDATE_DATE = SYSDATE
6600: WHERE INDICATOR = BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).Code;
6601: -- Color By KPI: Mark KPIs to Production mode in tendem with Objective's prototype flag.
6602: -- This is done so that both Objective and underlying KPIs come with the same color in IViewer,
6603: -- once GDB is run for the Objective. i.e. DARK_GRAY color
6604: UPDATE bsc_kpi_analysis_measures_b

Line 6606: WHERE indicator = BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).Code;

6602: -- This is done so that both Objective and underlying KPIs come with the same color in IViewer,
6603: -- once GDB is run for the Objective. i.e. DARK_GRAY color
6604: UPDATE bsc_kpi_analysis_measures_b
6605: SET prototype_flag = 0
6606: WHERE indicator = BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).Code;
6607: --Execute IMMEDIATE l_stmt USING BSC_METADATA_OPTIMIZER_PKG.gUserId, BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).Code;
6608: writeTmp('Updating prototype_flag=0 for indicator='||BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).Code||' from old value='||BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).Action_Flag, FND_LOG.LEVEL_STATEMENT, false);
6609: ELSIF (BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).Action_Flag=4) THEN
6610: --Case 4

Line 6607: --Execute IMMEDIATE l_stmt USING BSC_METADATA_OPTIMIZER_PKG.gUserId, BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).Code;

6603: -- once GDB is run for the Objective. i.e. DARK_GRAY color
6604: UPDATE bsc_kpi_analysis_measures_b
6605: SET prototype_flag = 0
6606: WHERE indicator = BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).Code;
6607: --Execute IMMEDIATE l_stmt USING BSC_METADATA_OPTIMIZER_PKG.gUserId, BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).Code;
6608: writeTmp('Updating prototype_flag=0 for indicator='||BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).Code||' from old value='||BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).Action_Flag, FND_LOG.LEVEL_STATEMENT, false);
6609: ELSIF (BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).Action_Flag=4) THEN
6610: --Case 4
6611: UPDATE BSC_KPIS_B SET PROTOTYPE_FLAG = 6,

Line 6608: writeTmp('Updating prototype_flag=0 for indicator='||BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).Code||' from old value='||BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).Action_Flag, FND_LOG.LEVEL_STATEMENT, false);

6604: UPDATE bsc_kpi_analysis_measures_b
6605: SET prototype_flag = 0
6606: WHERE indicator = BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).Code;
6607: --Execute IMMEDIATE l_stmt USING BSC_METADATA_OPTIMIZER_PKG.gUserId, BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).Code;
6608: writeTmp('Updating prototype_flag=0 for indicator='||BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).Code||' from old value='||BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).Action_Flag, FND_LOG.LEVEL_STATEMENT, false);
6609: ELSIF (BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).Action_Flag=4) THEN
6610: --Case 4
6611: UPDATE BSC_KPIS_B SET PROTOTYPE_FLAG = 6,
6612: LAST_UPDATED_BY = BSC_METADATA_OPTIMIZER_PKG.gUserId,

Line 6609: ELSIF (BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).Action_Flag=4) THEN

6605: SET prototype_flag = 0
6606: WHERE indicator = BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).Code;
6607: --Execute IMMEDIATE l_stmt USING BSC_METADATA_OPTIMIZER_PKG.gUserId, BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).Code;
6608: writeTmp('Updating prototype_flag=0 for indicator='||BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).Code||' from old value='||BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).Action_Flag, FND_LOG.LEVEL_STATEMENT, false);
6609: ELSIF (BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).Action_Flag=4) THEN
6610: --Case 4
6611: UPDATE BSC_KPIS_B SET PROTOTYPE_FLAG = 6,
6612: LAST_UPDATED_BY = BSC_METADATA_OPTIMIZER_PKG.gUserId,
6613: LAST_UPDATE_DATE = SYSDATE

Line 6612: LAST_UPDATED_BY = BSC_METADATA_OPTIMIZER_PKG.gUserId,

6608: writeTmp('Updating prototype_flag=0 for indicator='||BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).Code||' from old value='||BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).Action_Flag, FND_LOG.LEVEL_STATEMENT, false);
6609: ELSIF (BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).Action_Flag=4) THEN
6610: --Case 4
6611: UPDATE BSC_KPIS_B SET PROTOTYPE_FLAG = 6,
6612: LAST_UPDATED_BY = BSC_METADATA_OPTIMIZER_PKG.gUserId,
6613: LAST_UPDATE_DATE = SYSDATE
6614: WHERE INDICATOR = BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).Code;
6615: -- Color By KPI: Mark KPIs for color re-calculation
6616: UPDATE bsc_kpi_analysis_measures_b

Line 6614: WHERE INDICATOR = BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).Code;

6610: --Case 4
6611: UPDATE BSC_KPIS_B SET PROTOTYPE_FLAG = 6,
6612: LAST_UPDATED_BY = BSC_METADATA_OPTIMIZER_PKG.gUserId,
6613: LAST_UPDATE_DATE = SYSDATE
6614: WHERE INDICATOR = BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).Code;
6615: -- Color By KPI: Mark KPIs for color re-calculation
6616: UPDATE bsc_kpi_analysis_measures_b
6617: SET prototype_flag = 7
6618: WHERE indicator = BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).Code;

Line 6618: WHERE indicator = BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).Code;

6614: WHERE INDICATOR = BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).Code;
6615: -- Color By KPI: Mark KPIs for color re-calculation
6616: UPDATE bsc_kpi_analysis_measures_b
6617: SET prototype_flag = 7
6618: WHERE indicator = BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).Code;
6619: --Execute IMMEDIATE l_stmt USING BSC_METADATA_OPTIMIZER_PKG.gUserId, BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).Code;
6620: writeTmp('Updating prototype_flag=6 for indicator='||BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).Code||' from old value='||BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).Action_Flag, FND_LOG.LEVEL_STATEMENT, false);
6621: ELSE
6622: --BSC_MV Note: If summarizarion level changed then update prototype flag to 6

Line 6619: --Execute IMMEDIATE l_stmt USING BSC_METADATA_OPTIMIZER_PKG.gUserId, BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).Code;

6615: -- Color By KPI: Mark KPIs for color re-calculation
6616: UPDATE bsc_kpi_analysis_measures_b
6617: SET prototype_flag = 7
6618: WHERE indicator = BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).Code;
6619: --Execute IMMEDIATE l_stmt USING BSC_METADATA_OPTIMIZER_PKG.gUserId, BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).Code;
6620: writeTmp('Updating prototype_flag=6 for indicator='||BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).Code||' from old value='||BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).Action_Flag, FND_LOG.LEVEL_STATEMENT, false);
6621: ELSE
6622: --BSC_MV Note: If summarizarion level changed then update prototype flag to 6
6623: If BSC_METADATA_OPTIMIZER_PKG.g_Sum_Level_Change <> 0 Then

Line 6620: writeTmp('Updating prototype_flag=6 for indicator='||BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).Code||' from old value='||BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).Action_Flag, FND_LOG.LEVEL_STATEMENT, false);

6616: UPDATE bsc_kpi_analysis_measures_b
6617: SET prototype_flag = 7
6618: WHERE indicator = BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).Code;
6619: --Execute IMMEDIATE l_stmt USING BSC_METADATA_OPTIMIZER_PKG.gUserId, BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).Code;
6620: writeTmp('Updating prototype_flag=6 for indicator='||BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).Code||' from old value='||BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).Action_Flag, FND_LOG.LEVEL_STATEMENT, false);
6621: ELSE
6622: --BSC_MV Note: If summarizarion level changed then update prototype flag to 6
6623: If BSC_METADATA_OPTIMIZER_PKG.g_Sum_Level_Change <> 0 Then
6624: UPDATE BSC_KPIS_B SET PROTOTYPE_FLAG = 6,

Line 6623: If BSC_METADATA_OPTIMIZER_PKG.g_Sum_Level_Change <> 0 Then

6619: --Execute IMMEDIATE l_stmt USING BSC_METADATA_OPTIMIZER_PKG.gUserId, BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).Code;
6620: writeTmp('Updating prototype_flag=6 for indicator='||BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).Code||' from old value='||BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).Action_Flag, FND_LOG.LEVEL_STATEMENT, false);
6621: ELSE
6622: --BSC_MV Note: If summarizarion level changed then update prototype flag to 6
6623: If BSC_METADATA_OPTIMIZER_PKG.g_Sum_Level_Change <> 0 Then
6624: UPDATE BSC_KPIS_B SET PROTOTYPE_FLAG = 6,
6625: LAST_UPDATED_BY = BSC_METADATA_OPTIMIZER_PKG.gUserId,
6626: LAST_UPDATE_DATE = SYSDATE
6627: WHERE INDICATOR = BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).Code;

Line 6625: LAST_UPDATED_BY = BSC_METADATA_OPTIMIZER_PKG.gUserId,

6621: ELSE
6622: --BSC_MV Note: If summarizarion level changed then update prototype flag to 6
6623: If BSC_METADATA_OPTIMIZER_PKG.g_Sum_Level_Change <> 0 Then
6624: UPDATE BSC_KPIS_B SET PROTOTYPE_FLAG = 6,
6625: LAST_UPDATED_BY = BSC_METADATA_OPTIMIZER_PKG.gUserId,
6626: LAST_UPDATE_DATE = SYSDATE
6627: WHERE INDICATOR = BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).Code;
6628: -- Color By KPI: Mark KPIs for color re-calculation
6629: UPDATE bsc_kpi_analysis_measures_b

Line 6627: WHERE INDICATOR = BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).Code;

6623: If BSC_METADATA_OPTIMIZER_PKG.g_Sum_Level_Change <> 0 Then
6624: UPDATE BSC_KPIS_B SET PROTOTYPE_FLAG = 6,
6625: LAST_UPDATED_BY = BSC_METADATA_OPTIMIZER_PKG.gUserId,
6626: LAST_UPDATE_DATE = SYSDATE
6627: WHERE INDICATOR = BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).Code;
6628: -- Color By KPI: Mark KPIs for color re-calculation
6629: UPDATE bsc_kpi_analysis_measures_b
6630: SET prototype_flag = 7
6631: WHERE indicator = BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).Code;

Line 6631: WHERE indicator = BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).Code;

6627: WHERE INDICATOR = BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).Code;
6628: -- Color By KPI: Mark KPIs for color re-calculation
6629: UPDATE bsc_kpi_analysis_measures_b
6630: SET prototype_flag = 7
6631: WHERE indicator = BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).Code;
6632: writeTmp('Updating prototype_flag=6 for indicator='||BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).Code||' from old value='||BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).Action_Flag, FND_LOG.LEVEL_STATEMENT, false);
6633: END IF;
6634: END IF;
6635: EXIT WHEN i = BSC_METADATA_OPTIMIZER_PKG.gIndicators.last;

Line 6632: writeTmp('Updating prototype_flag=6 for indicator='||BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).Code||' from old value='||BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).Action_Flag, FND_LOG.LEVEL_STATEMENT, false);

6628: -- Color By KPI: Mark KPIs for color re-calculation
6629: UPDATE bsc_kpi_analysis_measures_b
6630: SET prototype_flag = 7
6631: WHERE indicator = BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).Code;
6632: writeTmp('Updating prototype_flag=6 for indicator='||BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).Code||' from old value='||BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).Action_Flag, FND_LOG.LEVEL_STATEMENT, false);
6633: END IF;
6634: END IF;
6635: EXIT WHEN i = BSC_METADATA_OPTIMIZER_PKG.gIndicators.last;
6636: i := BSC_METADATA_OPTIMIZER_PKG.gIndicators.next(i);

Line 6635: EXIT WHEN i = BSC_METADATA_OPTIMIZER_PKG.gIndicators.last;

6631: WHERE indicator = BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).Code;
6632: writeTmp('Updating prototype_flag=6 for indicator='||BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).Code||' from old value='||BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).Action_Flag, FND_LOG.LEVEL_STATEMENT, false);
6633: END IF;
6634: END IF;
6635: EXIT WHEN i = BSC_METADATA_OPTIMIZER_PKG.gIndicators.last;
6636: i := BSC_METADATA_OPTIMIZER_PKG.gIndicators.next(i);
6637: END LOOP;
6638:
6639: --BSC-PMF Integration: Update ALL PMF measures to production mode

Line 6636: i := BSC_METADATA_OPTIMIZER_PKG.gIndicators.next(i);

6632: writeTmp('Updating prototype_flag=6 for indicator='||BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).Code||' from old value='||BSC_METADATA_OPTIMIZER_PKG.gIndicators(i).Action_Flag, FND_LOG.LEVEL_STATEMENT, false);
6633: END IF;
6634: END IF;
6635: EXIT WHEN i = BSC_METADATA_OPTIMIZER_PKG.gIndicators.last;
6636: i := BSC_METADATA_OPTIMIZER_PKG.gIndicators.next(i);
6637: END LOOP;
6638:
6639: --BSC-PMF Integration: Update ALL PMF measures to production mode
6640: -- no need

Line 6646: AND INDICATOR IN (SELECT INDICATOR FROM BSC_TMP_OPT_UI_KPIS WHERE process_id = BSC_METADATA_OPTIMIZER_PKG.g_processID);*/

6642: SET PROTOTYPE_FLAG = 0
6643: WHERE DATASET_ID IN (
6644: SELECT DATASET_ID FROM BSC_SYS_DATASETS_B
6645: WHERE NVL(SOURCE, 'BSC') = 'PMF')
6646: AND INDICATOR IN (SELECT INDICATOR FROM BSC_TMP_OPT_UI_KPIS WHERE process_id = BSC_METADATA_OPTIMIZER_PKG.g_processID);*/
6647:
6648: WriteInitTable('SYSTEM_STAGE', '2');
6649:
6650: --BSC-MV Note: Store new summarization level into BSC_SYS_INIT

Line 6651: If BSC_METADATA_OPTIMIZER_PKG.g_BSC_MV Then

6647:
6648: WriteInitTable('SYSTEM_STAGE', '2');
6649:
6650: --BSC-MV Note: Store new summarization level into BSC_SYS_INIT
6651: If BSC_METADATA_OPTIMIZER_PKG.g_BSC_MV Then
6652: WriteInitTable('ADV_SUM_LEVEL', BSC_METADATA_OPTIMIZER_PKG.g_Adv_Summarization_Level);
6653: End If;
6654:
6655:

Line 6652: WriteInitTable('ADV_SUM_LEVEL', BSC_METADATA_OPTIMIZER_PKG.g_Adv_Summarization_Level);

6648: WriteInitTable('SYSTEM_STAGE', '2');
6649:
6650: --BSC-MV Note: Store new summarization level into BSC_SYS_INIT
6651: If BSC_METADATA_OPTIMIZER_PKG.g_BSC_MV Then
6652: WriteInitTable('ADV_SUM_LEVEL', BSC_METADATA_OPTIMIZER_PKG.g_Adv_Summarization_Level);
6653: End If;
6654:
6655:
6656: --Update range_yr_mod in BSC_SYS_CALENDARS_B

Line 6660: IF BSC_METADATA_OPTIMIZER_PKG.gSYSTEM_STAGE = 2 THEN

6656: --Update range_yr_mod in BSC_SYS_CALENDARS_B
6657: UPDATE BSC_SYS_CALENDARS_B SET RANGE_YR_MOD = 0;
6658:
6659:
6660: IF BSC_METADATA_OPTIMIZER_PKG.gSYSTEM_STAGE = 2 THEN
6661: DropAppsTables;
6662: End IF;
6663: execute immediate 'delete bsc_tmp_opt_ui_kpis where process_id=:1' using BSC_METADATA_OPTIMIZER_PKG.g_processID;
6664:

Line 6663: execute immediate 'delete bsc_tmp_opt_ui_kpis where process_id=:1' using BSC_METADATA_OPTIMIZER_PKG.g_processID;

6659:
6660: IF BSC_METADATA_OPTIMIZER_PKG.gSYSTEM_STAGE = 2 THEN
6661: DropAppsTables;
6662: End IF;
6663: execute immediate 'delete bsc_tmp_opt_ui_kpis where process_id=:1' using BSC_METADATA_OPTIMIZER_PKG.g_processID;
6664:
6665: BSC_MO_HELPER_PKG.writeTmp('Completed UpdateFlags'||get_time, FND_LOG.LEVEL_PROCEDURE, true);
6666: EXCEPTION WHEN OTHERS THEN
6667: writeTmp('Exception in UpdateFlags:'||sqlerrm, FND_LOG.LEVEL_UNEXPECTED, true);

Line 6674: FUNCTION getOneKeyField(table_name IN VARCHAR2, key_name IN VARCHAR2) RETURN BSC_METADATA_OPTIMIZER_PKG.clsKeyField IS

6670: END;
6671:
6672:
6673: /*
6674: FUNCTION getOneKeyField(table_name IN VARCHAR2, key_name IN VARCHAR2) RETURN BSC_METADATA_OPTIMIZER_PKG.clsKeyField IS
6675:
6676: CURSOR cKey IS
6677: SELECT key_name, Origin, Need_zero_code, Calc_zero_code,
6678: Filter_View_Name, dim_index

Line 6684: keyfield BSC_METADATA_OPTIMIZER_PKG.clsKeyField;

6680: WHERE
6681: table_name = table_name
6682: and key_name = key_name;
6683:
6684: keyfield BSC_METADATA_OPTIMIZER_PKG.clsKeyField;
6685: cv CurTyp;
6686: l_start_time date := sysdate;
6687: l_needsCode0 NUMBER := 0;
6688: l_calcCode0 NUMBER := 0;

Line 6691: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN

6687: l_needsCode0 NUMBER := 0;
6688: l_calcCode0 NUMBER := 0;
6689:
6690: BEGIN
6691: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
6692: writeTmp('Inside getOneKeyField');
6693: END IF;
6694:
6695:

Line 6696: BSC_METADATA_OPTIMIZER_PKG.ggetOneKeyField := BSC_METADATA_OPTIMIZER_PKG.ggetOneKeyField +1;

6692: writeTmp('Inside getOneKeyField');
6693: END IF;
6694:
6695:
6696: BSC_METADATA_OPTIMIZER_PKG.ggetOneKeyField := BSC_METADATA_OPTIMIZER_PKG.ggetOneKeyField +1;
6697:
6698: IF (mod(BSC_METADATA_OPTIMIZER_PKG.ggetOneKeyField, 500) = 0) THEN
6699: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
6700: writeTmp('Call # '||BSC_METADATA_OPTIMIZER_PKG.ggetOneKeyField||' to API getOneKeyField');

Line 6698: IF (mod(BSC_METADATA_OPTIMIZER_PKG.ggetOneKeyField, 500) = 0) THEN

6694:
6695:
6696: BSC_METADATA_OPTIMIZER_PKG.ggetOneKeyField := BSC_METADATA_OPTIMIZER_PKG.ggetOneKeyField +1;
6697:
6698: IF (mod(BSC_METADATA_OPTIMIZER_PKG.ggetOneKeyField, 500) = 0) THEN
6699: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
6700: writeTmp('Call # '||BSC_METADATA_OPTIMIZER_PKG.ggetOneKeyField||' to API getOneKeyField');
6701: END IF;
6702:

Line 6699: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN

6695:
6696: BSC_METADATA_OPTIMIZER_PKG.ggetOneKeyField := BSC_METADATA_OPTIMIZER_PKG.ggetOneKeyField +1;
6697:
6698: IF (mod(BSC_METADATA_OPTIMIZER_PKG.ggetOneKeyField, 500) = 0) THEN
6699: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
6700: writeTmp('Call # '||BSC_METADATA_OPTIMIZER_PKG.ggetOneKeyField||' to API getOneKeyField');
6701: END IF;
6702:
6703: END IF;

Line 6700: writeTmp('Call # '||BSC_METADATA_OPTIMIZER_PKG.ggetOneKeyField||' to API getOneKeyField');

6696: BSC_METADATA_OPTIMIZER_PKG.ggetOneKeyField := BSC_METADATA_OPTIMIZER_PKG.ggetOneKeyField +1;
6697:
6698: IF (mod(BSC_METADATA_OPTIMIZER_PKG.ggetOneKeyField, 500) = 0) THEN
6699: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
6700: writeTmp('Call # '||BSC_METADATA_OPTIMIZER_PKG.ggetOneKeyField||' to API getOneKeyField');
6701: END IF;
6702:
6703: END IF;
6704:

Line 6723: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN

6719: ELSE
6720: keyField.calculateCode0 := false;
6721: END IF;
6722:
6723: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
6724: writeTmp('Completed getOneKeyField');
6725: END IF;
6726:
6727: BSC_METADATA_OPTIMIZER_PKG.g_time_getOneKeyField := BSC_METADATA_OPTIMIZER_PKG.g_time_getOneKeyField + (sysdate-l_start_time) * 86400;

Line 6727: BSC_METADATA_OPTIMIZER_PKG.g_time_getOneKeyField := BSC_METADATA_OPTIMIZER_PKG.g_time_getOneKeyField + (sysdate-l_start_time) * 86400;

6723: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
6724: writeTmp('Completed getOneKeyField');
6725: END IF;
6726:
6727: BSC_METADATA_OPTIMIZER_PKG.g_time_getOneKeyField := BSC_METADATA_OPTIMIZER_PKG.g_time_getOneKeyField + (sysdate-l_start_time) * 86400;
6728: return keyfield;
6729: END;
6730:
6731: FUNCTION getAllKeyFields(pTableName IN VARCHAR2) RETURN BSC_METADATA_OPTIMIZER_PKG.tab_clsKeyField IS

Line 6731: FUNCTION getAllKeyFields(pTableName IN VARCHAR2) RETURN BSC_METADATA_OPTIMIZER_PKG.tab_clsKeyField IS

6727: BSC_METADATA_OPTIMIZER_PKG.g_time_getOneKeyField := BSC_METADATA_OPTIMIZER_PKG.g_time_getOneKeyField + (sysdate-l_start_time) * 86400;
6728: return keyfield;
6729: END;
6730:
6731: FUNCTION getAllKeyFields(pTableName IN VARCHAR2) RETURN BSC_METADATA_OPTIMIZER_PKG.tab_clsKeyField IS
6732:
6733: keyfield BSC_METADATA_OPTIMIZER_PKG.clsKeyField;
6734: keyFields BSC_METADATA_OPTIMIZER_PKG.tab_clsKeyField;
6735: cv CurTyp;

Line 6733: keyfield BSC_METADATA_OPTIMIZER_PKG.clsKeyField;

6729: END;
6730:
6731: FUNCTION getAllKeyFields(pTableName IN VARCHAR2) RETURN BSC_METADATA_OPTIMIZER_PKG.tab_clsKeyField IS
6732:
6733: keyfield BSC_METADATA_OPTIMIZER_PKG.clsKeyField;
6734: keyFields BSC_METADATA_OPTIMIZER_PKG.tab_clsKeyField;
6735: cv CurTyp;
6736: l_needsCode0 NUMBER;
6737: l_calcCode0 NUMBER;

Line 6734: keyFields BSC_METADATA_OPTIMIZER_PKG.tab_clsKeyField;

6730:
6731: FUNCTION getAllKeyFields(pTableName IN VARCHAR2) RETURN BSC_METADATA_OPTIMIZER_PKG.tab_clsKeyField IS
6732:
6733: keyfield BSC_METADATA_OPTIMIZER_PKG.clsKeyField;
6734: keyFields BSC_METADATA_OPTIMIZER_PKG.tab_clsKeyField;
6735: cv CurTyp;
6736: l_needsCode0 NUMBER;
6737: l_calcCode0 NUMBER;
6738:

Line 6749: BSC_METADATA_OPTIMIZER_PKG.ggetAllKeyFields := BSC_METADATA_OPTIMIZER_PKG.ggetAllKeyFields +1;

6745: l_start_time date := sysdate;
6746: BEGIN
6747:
6748:
6749: BSC_METADATA_OPTIMIZER_PKG.ggetAllKeyFields := BSC_METADATA_OPTIMIZER_PKG.ggetAllKeyFields +1;
6750:
6751: IF (mod(BSC_METADATA_OPTIMIZER_PKG.ggetAllKeyFields, 1000) = 0) THEN
6752: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
6753: writeTmp('Call # '||BSC_METADATA_OPTIMIZER_PKG.ggetAllKeyFields||' to API getAllKeyFields');

Line 6751: IF (mod(BSC_METADATA_OPTIMIZER_PKG.ggetAllKeyFields, 1000) = 0) THEN

6747:
6748:
6749: BSC_METADATA_OPTIMIZER_PKG.ggetAllKeyFields := BSC_METADATA_OPTIMIZER_PKG.ggetAllKeyFields +1;
6750:
6751: IF (mod(BSC_METADATA_OPTIMIZER_PKG.ggetAllKeyFields, 1000) = 0) THEN
6752: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
6753: writeTmp('Call # '||BSC_METADATA_OPTIMIZER_PKG.ggetAllKeyFields||' to API getAllKeyFields');
6754: END IF;
6755:

Line 6752: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN

6748:
6749: BSC_METADATA_OPTIMIZER_PKG.ggetAllKeyFields := BSC_METADATA_OPTIMIZER_PKG.ggetAllKeyFields +1;
6750:
6751: IF (mod(BSC_METADATA_OPTIMIZER_PKG.ggetAllKeyFields, 1000) = 0) THEN
6752: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
6753: writeTmp('Call # '||BSC_METADATA_OPTIMIZER_PKG.ggetAllKeyFields||' to API getAllKeyFields');
6754: END IF;
6755:
6756: END IF;

Line 6753: writeTmp('Call # '||BSC_METADATA_OPTIMIZER_PKG.ggetAllKeyFields||' to API getAllKeyFields');

6749: BSC_METADATA_OPTIMIZER_PKG.ggetAllKeyFields := BSC_METADATA_OPTIMIZER_PKG.ggetAllKeyFields +1;
6750:
6751: IF (mod(BSC_METADATA_OPTIMIZER_PKG.ggetAllKeyFields, 1000) = 0) THEN
6752: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
6753: writeTmp('Call # '||BSC_METADATA_OPTIMIZER_PKG.ggetAllKeyFields||' to API getAllKeyFields');
6754: END IF;
6755:
6756: END IF;
6757:

Line 6781: BSC_METADATA_OPTIMIZER_PKG.g_time_getAllKeyFields := BSC_METADATA_OPTIMIZER_PKG.g_time_getAllKeyFields + (sysdate - l_start_time) * 86400;

6777: END IF;
6778: keyFields(keyFields.count) := keyField;
6779: END LOOP;
6780: CLOSE cKeys;
6781: BSC_METADATA_OPTIMIZER_PKG.g_time_getAllKeyFields := BSC_METADATA_OPTIMIZER_PKG.g_time_getAllKeyFields + (sysdate - l_start_time) * 86400;
6782: return keyFields;
6783: EXCEPTION WHEN OTHERS THEN
6784: l_error := sqlerrm;
6785: writeTmp('Exception in getAllKeyFields for table='||pTableName||' : '||l_error, FND_LOG.LEVEL_UNEXPECTED, true);

Line 6791: FUNCTION getOneDataField(table_name IN VARCHAR2, field_name IN VARCHAR2) RETURN BSC_METADATA_OPTIMIZER_PKG.clsDataField IS

6787:
6788: END;
6789:
6790:
6791: FUNCTION getOneDataField(table_name IN VARCHAR2, field_name IN VARCHAR2) RETURN BSC_METADATA_OPTIMIZER_PKG.clsDataField IS
6792: CURSOR cData IS
6793: SELECT
6794: field_name, aggfunction, origin, avglflag, avgltotalcolumn, avglcountercolumn,
6795: Internal_Column_Type, Internal_Column_Source

Line 6801: dataField BSC_METADATA_OPTIMIZER_PKG.clsDataField;

6797: WHERE
6798: table_name = table_name
6799: and upper(field_name) = upper(field_name);
6800:
6801: dataField BSC_METADATA_OPTIMIZER_PKG.clsDataField;
6802: cv CurTyp;
6803: l_error VARCHAR2(1000);
6804: l_start_time date := sysdate;
6805: BEGIN

Line 6806: BSC_METADATA_OPTIMIZER_PKG.ggetOneDataField := BSC_METADATA_OPTIMIZER_PKG.ggetOneDataField +1;

6802: cv CurTyp;
6803: l_error VARCHAR2(1000);
6804: l_start_time date := sysdate;
6805: BEGIN
6806: BSC_METADATA_OPTIMIZER_PKG.ggetOneDataField := BSC_METADATA_OPTIMIZER_PKG.ggetOneDataField +1;
6807:
6808: IF (mod(BSC_METADATA_OPTIMIZER_PKG.ggetOneDataField, 500) = 0) THEN
6809: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
6810: writeTmp('Call # '||BSC_METADATA_OPTIMIZER_PKG.ggetOneDataField||' to API ggetOneDataField');

Line 6808: IF (mod(BSC_METADATA_OPTIMIZER_PKG.ggetOneDataField, 500) = 0) THEN

6804: l_start_time date := sysdate;
6805: BEGIN
6806: BSC_METADATA_OPTIMIZER_PKG.ggetOneDataField := BSC_METADATA_OPTIMIZER_PKG.ggetOneDataField +1;
6807:
6808: IF (mod(BSC_METADATA_OPTIMIZER_PKG.ggetOneDataField, 500) = 0) THEN
6809: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
6810: writeTmp('Call # '||BSC_METADATA_OPTIMIZER_PKG.ggetOneDataField||' to API ggetOneDataField');
6811: END IF;
6812:

Line 6809: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN

6805: BEGIN
6806: BSC_METADATA_OPTIMIZER_PKG.ggetOneDataField := BSC_METADATA_OPTIMIZER_PKG.ggetOneDataField +1;
6807:
6808: IF (mod(BSC_METADATA_OPTIMIZER_PKG.ggetOneDataField, 500) = 0) THEN
6809: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
6810: writeTmp('Call # '||BSC_METADATA_OPTIMIZER_PKG.ggetOneDataField||' to API ggetOneDataField');
6811: END IF;
6812:
6813: END IF;

Line 6810: writeTmp('Call # '||BSC_METADATA_OPTIMIZER_PKG.ggetOneDataField||' to API ggetOneDataField');

6806: BSC_METADATA_OPTIMIZER_PKG.ggetOneDataField := BSC_METADATA_OPTIMIZER_PKG.ggetOneDataField +1;
6807:
6808: IF (mod(BSC_METADATA_OPTIMIZER_PKG.ggetOneDataField, 500) = 0) THEN
6809: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
6810: writeTmp('Call # '||BSC_METADATA_OPTIMIZER_PKG.ggetOneDataField||' to API ggetOneDataField');
6811: END IF;
6812:
6813: END IF;
6814:

Line 6817: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN

6813: END IF;
6814:
6815:
6816:
6817: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
6818: writeTmp('Inside getOneDataField');
6819: END IF;
6820:
6821: OPEN cData;

Line 6825: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN

6821: OPEN cData;
6822: FETCH cData INTO dataField.fieldName, dataField.aggFunction, dataField.origin, dataField.avglFlag,
6823: dataField.avglTotalColumn, dataField.avglCounterColumn, dataField.internalColumnType, dataField.internalColumnSource;
6824: CLOSE cData;
6825: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
6826: writeTmp('Completed getOneDataField');
6827: END IF;
6828:
6829:

Line 6831: BSC_METADATA_OPTIMIZER_PKG.g_time_updateOneDisagg := BSC_METADATA_OPTIMIZER_PKG.g_time_updateOneDisagg + (sysdate - l_start_time) * 86400;

6827: END IF;
6828:
6829:
6830:
6831: BSC_METADATA_OPTIMIZER_PKG.g_time_updateOneDisagg := BSC_METADATA_OPTIMIZER_PKG.g_time_updateOneDisagg + (sysdate - l_start_time) * 86400;
6832: return dataField;
6833:
6834: EXCEPTION WHEN OTHERS THEN
6835: l_error := sqlerrm;

Line 6840: FUNCTION getAllDataFields(pTableName IN VARCHAR2) RETURN BSC_METADATA_OPTIMIZER_PKG.tab_clsDataField IS

6836: writeTmp('Exception in getOneDataField for table='||table_name||', field = '||field_name||' : '||l_error, FND_LOG.LEVEL_UNEXPECTED, true);
6837: raise;
6838: END;
6839:
6840: FUNCTION getAllDataFields(pTableName IN VARCHAR2) RETURN BSC_METADATA_OPTIMIZER_PKG.tab_clsDataField IS
6841:
6842: dataFields BSC_METADATA_OPTIMIZER_PKG.tab_clsDataField;
6843: dataField BSC_METADATA_OPTIMIZER_PKG.clsDataField;
6844: cv CurTyp;

Line 6842: dataFields BSC_METADATA_OPTIMIZER_PKG.tab_clsDataField;

6838: END;
6839:
6840: FUNCTION getAllDataFields(pTableName IN VARCHAR2) RETURN BSC_METADATA_OPTIMIZER_PKG.tab_clsDataField IS
6841:
6842: dataFields BSC_METADATA_OPTIMIZER_PKG.tab_clsDataField;
6843: dataField BSC_METADATA_OPTIMIZER_PKG.clsDataField;
6844: cv CurTyp;
6845:
6846: cursor cData is

Line 6843: dataField BSC_METADATA_OPTIMIZER_PKG.clsDataField;

6839:
6840: FUNCTION getAllDataFields(pTableName IN VARCHAR2) RETURN BSC_METADATA_OPTIMIZER_PKG.tab_clsDataField IS
6841:
6842: dataFields BSC_METADATA_OPTIMIZER_PKG.tab_clsDataField;
6843: dataField BSC_METADATA_OPTIMIZER_PKG.clsDataField;
6844: cv CurTyp;
6845:
6846: cursor cData is
6847: SELECT field_name, aggfunction, origin, avglflag, avgltotalcolumn, avglcountercolumn,

Line 6857: BSC_METADATA_OPTIMIZER_PKG.ggetAllDataFields := BSC_METADATA_OPTIMIZER_PKG.ggetAllDataFields +1;

6853: l_error varchar2(1000);
6854:
6855: l_start_time date := sysdate;
6856: BEGIN
6857: BSC_METADATA_OPTIMIZER_PKG.ggetAllDataFields := BSC_METADATA_OPTIMIZER_PKG.ggetAllDataFields +1;
6858:
6859: IF (mod(BSC_METADATA_OPTIMIZER_PKG.ggetAllDataFields, 1000) = 0) THEN
6860: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
6861: writeTmp('Call # '||BSC_METADATA_OPTIMIZER_PKG.ggetAllDataFields||' to API getAllDataFields');

Line 6859: IF (mod(BSC_METADATA_OPTIMIZER_PKG.ggetAllDataFields, 1000) = 0) THEN

6855: l_start_time date := sysdate;
6856: BEGIN
6857: BSC_METADATA_OPTIMIZER_PKG.ggetAllDataFields := BSC_METADATA_OPTIMIZER_PKG.ggetAllDataFields +1;
6858:
6859: IF (mod(BSC_METADATA_OPTIMIZER_PKG.ggetAllDataFields, 1000) = 0) THEN
6860: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
6861: writeTmp('Call # '||BSC_METADATA_OPTIMIZER_PKG.ggetAllDataFields||' to API getAllDataFields');
6862: END IF;
6863:

Line 6860: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN

6856: BEGIN
6857: BSC_METADATA_OPTIMIZER_PKG.ggetAllDataFields := BSC_METADATA_OPTIMIZER_PKG.ggetAllDataFields +1;
6858:
6859: IF (mod(BSC_METADATA_OPTIMIZER_PKG.ggetAllDataFields, 1000) = 0) THEN
6860: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
6861: writeTmp('Call # '||BSC_METADATA_OPTIMIZER_PKG.ggetAllDataFields||' to API getAllDataFields');
6862: END IF;
6863:
6864: END IF;

Line 6861: writeTmp('Call # '||BSC_METADATA_OPTIMIZER_PKG.ggetAllDataFields||' to API getAllDataFields');

6857: BSC_METADATA_OPTIMIZER_PKG.ggetAllDataFields := BSC_METADATA_OPTIMIZER_PKG.ggetAllDataFields +1;
6858:
6859: IF (mod(BSC_METADATA_OPTIMIZER_PKG.ggetAllDataFields, 1000) = 0) THEN
6860: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
6861: writeTmp('Call # '||BSC_METADATA_OPTIMIZER_PKG.ggetAllDataFields||' to API getAllDataFields');
6862: END IF;
6863:
6864: END IF;
6865:

Line 6882: BSC_METADATA_OPTIMIZER_PKG.g_time_getAllDataFields := BSC_METADATA_OPTIMIZER_PKG.g_time_getAllDataFields + (sysdate - l_start_time) * 86400;

6878: dataFields(dataFields.count) := dataField;
6879: END LOOP;
6880: CLOSE cData;
6881:
6882: BSC_METADATA_OPTIMIZER_PKG.g_time_getAllDataFields := BSC_METADATA_OPTIMIZER_PKG.g_time_getAllDataFields + (sysdate - l_start_time) * 86400;
6883: return dataFields;
6884:
6885: EXCEPTION WHEN OTHERS THEN
6886: l_error := sqlerrm;

Line 6892: FUNCTION getGroupIds (levels IN BSC_METADATA_OPTIMIZER_PKG.tab_tab_clsLevels) RETURN DBMS_SQL.NUMBER_TABLE IS

6888: raise;
6889: END;
6890: */
6891:
6892: FUNCTION getGroupIds (levels IN BSC_METADATA_OPTIMIZER_PKG.tab_tab_clsLevels) RETURN DBMS_SQL.NUMBER_TABLE IS
6893: l_groups DBMS_SQL.NUMBER_TABLE;
6894: l_count NUMBER := 0;
6895: i NUMBER;
6896: BEGIN

Line 6910: FUNCTION getGroupIds (levels IN BSC_METADATA_OPTIMIZER_PKG.tab_tab_clsLevelCombinations) RETURN DBMS_SQL.NUMBER_TABLE IS

6906: END LOOP;
6907: return l_groups;
6908: END;
6909:
6910: FUNCTION getGroupIds (levels IN BSC_METADATA_OPTIMIZER_PKG.tab_tab_clsLevelCombinations) RETURN DBMS_SQL.NUMBER_TABLE IS
6911: l_groups DBMS_SQL.NUMBER_TABLE;
6912: l_count NUMBER := 0;
6913: i NUMBER;
6914: BEGIN

Line 6928: FUNCTION get_tab_clsLevels (Coll IN BSC_METADATA_OPTIMIZER_PKG.tab_tab_clsLevels, group_id IN NUMBER)

6924: END LOOP;
6925: return l_groups;
6926: END;
6927:
6928: FUNCTION get_tab_clsLevels (Coll IN BSC_METADATA_OPTIMIZER_PKG.tab_tab_clsLevels, group_id IN NUMBER)
6929: RETURN BSC_METADATA_OPTIMIZER_PKG.tab_clsLevels IS
6930: l_levels BSC_METADATA_OPTIMIZER_PKG.tab_clsLevels ;
6931: l_lvl BSC_METADATA_OPTIMIZER_PKG.clsLevels;
6932: l_counter NUMBER;

Line 6929: RETURN BSC_METADATA_OPTIMIZER_PKG.tab_clsLevels IS

6925: return l_groups;
6926: END;
6927:
6928: FUNCTION get_tab_clsLevels (Coll IN BSC_METADATA_OPTIMIZER_PKG.tab_tab_clsLevels, group_id IN NUMBER)
6929: RETURN BSC_METADATA_OPTIMIZER_PKG.tab_clsLevels IS
6930: l_levels BSC_METADATA_OPTIMIZER_PKG.tab_clsLevels ;
6931: l_lvl BSC_METADATA_OPTIMIZER_PKG.clsLevels;
6932: l_counter NUMBER;
6933: BEGIN

Line 6930: l_levels BSC_METADATA_OPTIMIZER_PKG.tab_clsLevels ;

6926: END;
6927:
6928: FUNCTION get_tab_clsLevels (Coll IN BSC_METADATA_OPTIMIZER_PKG.tab_tab_clsLevels, group_id IN NUMBER)
6929: RETURN BSC_METADATA_OPTIMIZER_PKG.tab_clsLevels IS
6930: l_levels BSC_METADATA_OPTIMIZER_PKG.tab_clsLevels ;
6931: l_lvl BSC_METADATA_OPTIMIZER_PKG.clsLevels;
6932: l_counter NUMBER;
6933: BEGIN
6934: IF (Coll.count=0) THEN

Line 6931: l_lvl BSC_METADATA_OPTIMIZER_PKG.clsLevels;

6927:
6928: FUNCTION get_tab_clsLevels (Coll IN BSC_METADATA_OPTIMIZER_PKG.tab_tab_clsLevels, group_id IN NUMBER)
6929: RETURN BSC_METADATA_OPTIMIZER_PKG.tab_clsLevels IS
6930: l_levels BSC_METADATA_OPTIMIZER_PKG.tab_clsLevels ;
6931: l_lvl BSC_METADATA_OPTIMIZER_PKG.clsLevels;
6932: l_counter NUMBER;
6933: BEGIN
6934: IF (Coll.count=0) THEN
6935: return l_levels;

Line 6958: FUNCTION get_tab_clsLevelCombinations (Coll IN BSC_METADATA_OPTIMIZER_PKG.tab_tab_clsLevelCombinations, group_id IN NUMBER)

6954: return l_levels;
6955: END;
6956:
6957:
6958: FUNCTION get_tab_clsLevelCombinations (Coll IN BSC_METADATA_OPTIMIZER_PKG.tab_tab_clsLevelCombinations, group_id IN NUMBER)
6959: RETURN BSC_METADATA_OPTIMIZER_PKG.tab_clsLevelCombinations IS
6960: l_levelCombinations BSC_METADATA_OPTIMIZER_PKG.tab_clsLevelCombinations ;
6961: l_lvl BSC_METADATA_OPTIMIZER_PKG.clsLevelCombinations;
6962: l_counter NUMBER;

Line 6959: RETURN BSC_METADATA_OPTIMIZER_PKG.tab_clsLevelCombinations IS

6955: END;
6956:
6957:
6958: FUNCTION get_tab_clsLevelCombinations (Coll IN BSC_METADATA_OPTIMIZER_PKG.tab_tab_clsLevelCombinations, group_id IN NUMBER)
6959: RETURN BSC_METADATA_OPTIMIZER_PKG.tab_clsLevelCombinations IS
6960: l_levelCombinations BSC_METADATA_OPTIMIZER_PKG.tab_clsLevelCombinations ;
6961: l_lvl BSC_METADATA_OPTIMIZER_PKG.clsLevelCombinations;
6962: l_counter NUMBER;
6963: BEGIN

Line 6960: l_levelCombinations BSC_METADATA_OPTIMIZER_PKG.tab_clsLevelCombinations ;

6956:
6957:
6958: FUNCTION get_tab_clsLevelCombinations (Coll IN BSC_METADATA_OPTIMIZER_PKG.tab_tab_clsLevelCombinations, group_id IN NUMBER)
6959: RETURN BSC_METADATA_OPTIMIZER_PKG.tab_clsLevelCombinations IS
6960: l_levelCombinations BSC_METADATA_OPTIMIZER_PKG.tab_clsLevelCombinations ;
6961: l_lvl BSC_METADATA_OPTIMIZER_PKG.clsLevelCombinations;
6962: l_counter NUMBER;
6963: BEGIN
6964: IF (Coll.count=0) THEN

Line 6961: l_lvl BSC_METADATA_OPTIMIZER_PKG.clsLevelCombinations;

6957:
6958: FUNCTION get_tab_clsLevelCombinations (Coll IN BSC_METADATA_OPTIMIZER_PKG.tab_tab_clsLevelCombinations, group_id IN NUMBER)
6959: RETURN BSC_METADATA_OPTIMIZER_PKG.tab_clsLevelCombinations IS
6960: l_levelCombinations BSC_METADATA_OPTIMIZER_PKG.tab_clsLevelCombinations ;
6961: l_lvl BSC_METADATA_OPTIMIZER_PKG.clsLevelCombinations;
6962: l_counter NUMBER;
6963: BEGIN
6964: IF (Coll.count=0) THEN
6965: return l_levelCombinations;

Line 6984: pInput IN OUT NOCOPY BSC_METADATA_OPTIMIZER_PKG.tab_tab_clsLevelCombinations,

6980:
6981:
6982:
6983: PROCEDURE add_tabrec_clsLevelComb(
6984: pInput IN OUT NOCOPY BSC_METADATA_OPTIMIZER_PKG.tab_tab_clsLevelCombinations,
6985: pTable IN BSC_METADATA_OPTIMIZER_PKG.tab_clsLevelCombinations,
6986: l_group_id IN NUMBER) IS
6987: l_tabrec BSC_METADATA_OPTIMIZER_PKG.tabrec_clsLevelCombinations;
6988: i NUMBER;

Line 6985: pTable IN BSC_METADATA_OPTIMIZER_PKG.tab_clsLevelCombinations,

6981:
6982:
6983: PROCEDURE add_tabrec_clsLevelComb(
6984: pInput IN OUT NOCOPY BSC_METADATA_OPTIMIZER_PKG.tab_tab_clsLevelCombinations,
6985: pTable IN BSC_METADATA_OPTIMIZER_PKG.tab_clsLevelCombinations,
6986: l_group_id IN NUMBER) IS
6987: l_tabrec BSC_METADATA_OPTIMIZER_PKG.tabrec_clsLevelCombinations;
6988: i NUMBER;
6989: BEGIN

Line 6987: l_tabrec BSC_METADATA_OPTIMIZER_PKG.tabrec_clsLevelCombinations;

6983: PROCEDURE add_tabrec_clsLevelComb(
6984: pInput IN OUT NOCOPY BSC_METADATA_OPTIMIZER_PKG.tab_tab_clsLevelCombinations,
6985: pTable IN BSC_METADATA_OPTIMIZER_PKG.tab_clsLevelCombinations,
6986: l_group_id IN NUMBER) IS
6987: l_tabrec BSC_METADATA_OPTIMIZER_PKG.tabrec_clsLevelCombinations;
6988: i NUMBER;
6989: BEGIN
6990: IF (pTable.count = 0) THEN
6991: return;

Line 7011: pInput IN OUT NOCOPY BSC_METADATA_OPTIMIZER_PKG.tab_tab_clsLevels,

7007: END LOOP;
7008: END;
7009:
7010: PROCEDURE add_tabrec_clsLevels(
7011: pInput IN OUT NOCOPY BSC_METADATA_OPTIMIZER_PKG.tab_tab_clsLevels,
7012: pTable IN BSC_METADATA_OPTIMIZER_PKG.tab_clsLevels,
7013: l_group_id IN NUMBER) IS
7014: l_tabrec BSC_METADATA_OPTIMIZER_PKG.tabrec_clsLevels;
7015: i NUMBER;

Line 7012: pTable IN BSC_METADATA_OPTIMIZER_PKG.tab_clsLevels,

7008: END;
7009:
7010: PROCEDURE add_tabrec_clsLevels(
7011: pInput IN OUT NOCOPY BSC_METADATA_OPTIMIZER_PKG.tab_tab_clsLevels,
7012: pTable IN BSC_METADATA_OPTIMIZER_PKG.tab_clsLevels,
7013: l_group_id IN NUMBER) IS
7014: l_tabrec BSC_METADATA_OPTIMIZER_PKG.tabrec_clsLevels;
7015: i NUMBER;
7016: BEGIN

Line 7014: l_tabrec BSC_METADATA_OPTIMIZER_PKG.tabrec_clsLevels;

7010: PROCEDURE add_tabrec_clsLevels(
7011: pInput IN OUT NOCOPY BSC_METADATA_OPTIMIZER_PKG.tab_tab_clsLevels,
7012: pTable IN BSC_METADATA_OPTIMIZER_PKG.tab_clsLevels,
7013: l_group_id IN NUMBER) IS
7014: l_tabrec BSC_METADATA_OPTIMIZER_PKG.tabrec_clsLevels;
7015: i NUMBER;
7016: BEGIN
7017: IF (pTable.count = 0) THEN
7018: return;

Line 7050: BSC_METADATA_OPTIMIZER_PKG.gconsolidateString := BSC_METADATA_OPTIMIZER_PKG.gconsolidateString +1;

7046: l_return VARCHAR2(32000) := null;
7047: l_count NUMBER;
7048: BEGIN
7049:
7050: BSC_METADATA_OPTIMIZER_PKG.gconsolidateString := BSC_METADATA_OPTIMIZER_PKG.gconsolidateString +1;
7051:
7052: IF (mod(BSC_METADATA_OPTIMIZER_PKG.gconsolidateString, 500) = 0) THEN
7053: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
7054: writeTmp('Call # '||BSC_METADATA_OPTIMIZER_PKG.gconsolidateString||' to API consolidateString');

Line 7052: IF (mod(BSC_METADATA_OPTIMIZER_PKG.gconsolidateString, 500) = 0) THEN

7048: BEGIN
7049:
7050: BSC_METADATA_OPTIMIZER_PKG.gconsolidateString := BSC_METADATA_OPTIMIZER_PKG.gconsolidateString +1;
7051:
7052: IF (mod(BSC_METADATA_OPTIMIZER_PKG.gconsolidateString, 500) = 0) THEN
7053: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
7054: writeTmp('Call # '||BSC_METADATA_OPTIMIZER_PKG.gconsolidateString||' to API consolidateString');
7055: END IF;
7056:

Line 7053: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN

7049:
7050: BSC_METADATA_OPTIMIZER_PKG.gconsolidateString := BSC_METADATA_OPTIMIZER_PKG.gconsolidateString +1;
7051:
7052: IF (mod(BSC_METADATA_OPTIMIZER_PKG.gconsolidateString, 500) = 0) THEN
7053: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
7054: writeTmp('Call # '||BSC_METADATA_OPTIMIZER_PKG.gconsolidateString||' to API consolidateString');
7055: END IF;
7056:
7057: END IF;

Line 7054: writeTmp('Call # '||BSC_METADATA_OPTIMIZER_PKG.gconsolidateString||' to API consolidateString');

7050: BSC_METADATA_OPTIMIZER_PKG.gconsolidateString := BSC_METADATA_OPTIMIZER_PKG.gconsolidateString +1;
7051:
7052: IF (mod(BSC_METADATA_OPTIMIZER_PKG.gconsolidateString, 500) = 0) THEN
7053: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
7054: writeTmp('Call # '||BSC_METADATA_OPTIMIZER_PKG.gconsolidateString||' to API consolidateString');
7055: END IF;
7056:
7057: END IF;
7058:

Line 7083: BSC_METADATA_OPTIMIZER_PKG.logProgress('ERROR', pAPI||' '||l_error);

7079:
7080:
7081: fnd_message.set_name('BSC', pErrorShortName);
7082: l_error := fnd_message.get;
7083: BSC_METADATA_OPTIMIZER_PKG.logProgress('ERROR', pAPI||' '||l_error);
7084: FND_FILE.put_line(FND_FILE.log, 'Exception '||pAPI||' : '||l_error);
7085: --fnd_file.release_names(bsc_metadata_optimizer_pkg.g_filename||'.log', bsc_metadata_optimizer_pkg.g_filename||'.out');
7086: fnd_message.set_name('BSC', pErrorShortName);
7087: BSC_METADATA_OPTIMIZER_PKG.g_retcode := 2;

Line 7085: --fnd_file.release_names(bsc_metadata_optimizer_pkg.g_filename||'.log', bsc_metadata_optimizer_pkg.g_filename||'.out');

7081: fnd_message.set_name('BSC', pErrorShortName);
7082: l_error := fnd_message.get;
7083: BSC_METADATA_OPTIMIZER_PKG.logProgress('ERROR', pAPI||' '||l_error);
7084: FND_FILE.put_line(FND_FILE.log, 'Exception '||pAPI||' : '||l_error);
7085: --fnd_file.release_names(bsc_metadata_optimizer_pkg.g_filename||'.log', bsc_metadata_optimizer_pkg.g_filename||'.out');
7086: fnd_message.set_name('BSC', pErrorShortName);
7087: BSC_METADATA_OPTIMIZER_PKG.g_retcode := 2;
7088: BSC_METADATA_OPTIMIZER_PKG.g_errbuf := l_error;
7089:

Line 7087: BSC_METADATA_OPTIMIZER_PKG.g_retcode := 2;

7083: BSC_METADATA_OPTIMIZER_PKG.logProgress('ERROR', pAPI||' '||l_error);
7084: FND_FILE.put_line(FND_FILE.log, 'Exception '||pAPI||' : '||l_error);
7085: --fnd_file.release_names(bsc_metadata_optimizer_pkg.g_filename||'.log', bsc_metadata_optimizer_pkg.g_filename||'.out');
7086: fnd_message.set_name('BSC', pErrorShortName);
7087: BSC_METADATA_OPTIMIZER_PKG.g_retcode := 2;
7088: BSC_METADATA_OPTIMIZER_PKG.g_errbuf := l_error;
7089:
7090: END;
7091:

Line 7088: BSC_METADATA_OPTIMIZER_PKG.g_errbuf := l_error;

7084: FND_FILE.put_line(FND_FILE.log, 'Exception '||pAPI||' : '||l_error);
7085: --fnd_file.release_names(bsc_metadata_optimizer_pkg.g_filename||'.log', bsc_metadata_optimizer_pkg.g_filename||'.out');
7086: fnd_message.set_name('BSC', pErrorShortName);
7087: BSC_METADATA_OPTIMIZER_PKG.g_retcode := 2;
7088: BSC_METADATA_OPTIMIZER_PKG.g_errbuf := l_error;
7089:
7090: END;
7091:
7092: PROCEDURE terminateWithMsg(pMessage IN VARCHAR2, pAPI in varchar2 default null)

Line 7096: BSC_METADATA_OPTIMIZER_PKG.logProgress('ERROR', pAPI||' '||pMessage);

7092: PROCEDURE terminateWithMsg(pMessage IN VARCHAR2, pAPI in varchar2 default null)
7093: IS
7094: BEGIN
7095:
7096: BSC_METADATA_OPTIMIZER_PKG.logProgress('ERROR', pAPI||' '||pMessage);
7097: FND_FILE.put_line(FND_FILE.log, ' -------------------');
7098: FND_FILE.put_line(FND_FILE.log, ' ERROR ');
7099: FND_FILE.put_line(FND_FILE.log, ' -------------------');
7100: FND_FILE.put_line(FND_FILE.log, pMessage);

Line 7101: BSC_METADATA_OPTIMIZER_PKG.g_retcode := 2;

7097: FND_FILE.put_line(FND_FILE.log, ' -------------------');
7098: FND_FILE.put_line(FND_FILE.log, ' ERROR ');
7099: FND_FILE.put_line(FND_FILE.log, ' -------------------');
7100: FND_FILE.put_line(FND_FILE.log, pMessage);
7101: BSC_METADATA_OPTIMIZER_PKG.g_retcode := 2;
7102: BSC_METADATA_OPTIMIZER_PKG.g_errbuf := pMessage;
7103: END;
7104:
7105: PROCEDURE writeKeysTest IS

Line 7102: BSC_METADATA_OPTIMIZER_PKG.g_errbuf := pMessage;

7098: FND_FILE.put_line(FND_FILE.log, ' ERROR ');
7099: FND_FILE.put_line(FND_FILE.log, ' -------------------');
7100: FND_FILE.put_line(FND_FILE.log, pMessage);
7101: BSC_METADATA_OPTIMIZER_PKG.g_retcode := 2;
7102: BSC_METADATA_OPTIMIZER_PKG.g_errbuf := pMessage;
7103: END;
7104:
7105: PROCEDURE writeKeysTest IS
7106: BEGIN

Line 7123: masterTable BSC_METADATA_OPTIMIZER_PKG.clsMasterTable;

7119: ORDER BY LEVEL_TABLE_NAME;
7120: cRow1 c1%ROWTYPE;
7121:
7122: l_count_master NUMBER := 0;
7123: masterTable BSC_METADATA_OPTIMIZER_PKG.clsMasterTable;
7124: parents_rel_col VARCHAR2(32000);--tab_clsParent;
7125: parents_name VARCHAR2(32000);--tab_clsParent;
7126: l_count_parents NUMBER := 0;
7127: auxillaryField VARCHAR2(32000);--tab_clsAuxillaryField;

Line 7140: RelMN BSC_METADATA_OPTIMIZER_PKG.clsRelationMN;

7136: AND R.RELATION_TYPE = p_relation_type;
7137:
7138: cRow2 c2%ROWTYPE;
7139:
7140: RelMN BSC_METADATA_OPTIMIZER_PKG.clsRelationMN;
7141:
7142: cursor C3 (p_dim_level_id IN NUMBER) IS
7143: SELECT COLUMN_NAME
7144: FROM BSC_SYS_DIM_LEVEL_COLS

Line 7220: bsc_metadata_optimizer_pkg.gMasterTable(bsc_metadata_optimizer_pkg.gMasterTable.count) := masterTable;

7216: END LOOP;
7217: CLOSE c3;
7218: END IF;
7219: masterTable.auxillaryFields := auxillaryField;
7220: bsc_metadata_optimizer_pkg.gMasterTable(bsc_metadata_optimizer_pkg.gMasterTable.count) := masterTable;
7221: l_count_master := l_count_master + 1;
7222: END LOOP;
7223: CLOSE c1;
7224: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN

Line 7224: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN

7220: bsc_metadata_optimizer_pkg.gMasterTable(bsc_metadata_optimizer_pkg.gMasterTable.count) := masterTable;
7221: l_count_master := l_count_master + 1;
7222: END LOOP;
7223: CLOSE c1;
7224: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN
7225: bsc_mo_helper_pkg.writeTmp('Starting MN ');--commit;
7226: END IF;
7227: --gRelacionesMN
7228: --EDW Note: There are no M-N Relations in EDW

Line 7246: BSC_METADATA_OPTIMIZER_PKG.gRelationsMN(bsc_metadata_optimizer_pkg.gRelationsMN.count):= RelMN;

7242: RelMN.TableA := cRow5.TABLE_A;
7243: RelMN.keyNameA := cRow5.PK_COL_A;
7244: RelMN.TableB := cRow5.TABLE_B;
7245: RelMN.keyNameB := cRow5.PK_COL_B;
7246: BSC_METADATA_OPTIMIZER_PKG.gRelationsMN(bsc_metadata_optimizer_pkg.gRelationsMN.count):= RelMN;
7247: CLOSE C5;
7248: END Loop;
7249: CLOSE c4;
7250: bsc_mo_helper_pkg.writeTmp('Completed InitializeMasterTables', FND_LOG.LEVEL_PROCEDURE, false);

Line 7254: bsc_mo_helper_pkg.write_this(bsc_metadata_optimizer_pkg.gMasterTable, FND_LOG.LEVEL_EXCEPTION, true);

7250: bsc_mo_helper_pkg.writeTmp('Completed InitializeMasterTables', FND_LOG.LEVEL_PROCEDURE, false);
7251: Exception when others then
7252: bsc_mo_helper_pkg.writeTmp('exception in InitializeMasterTables', FND_LOG.LEVEL_UNEXPECTED, true);
7253: bsc_mo_helper_pkg.writeTmp('gMasterTables are ', FND_LOG.LEVEL_EXCEPTION, true);
7254: bsc_mo_helper_pkg.write_this(bsc_metadata_optimizer_pkg.gMasterTable, FND_LOG.LEVEL_EXCEPTION, true);
7255: raise;
7256:
7257: END;
7258:

Line 7268: and p.property_code=bsc_metadata_optimizer_pkg.impl_type

7264: select count(1) into l_count
7265: from bsc_kpi_properties p
7266: , bsc_kpis_vl k
7267: where p.indicator=k.indicator
7268: and p.property_code=bsc_metadata_optimizer_pkg.impl_type
7269: and p.property_value = 2
7270: -- only production objectives
7271: and k.prototype_flag not in (1,2,3,4)
7272: ;

Line 7300: IF BSC_METADATA_OPTIMIZER_PKG.g_bsc_mv THEN

7296: cv CurTyp;
7297:
7298: BEGIN
7299: writeTmp('In bsc_mo_helper_pkg.load_reporting_calendars '||get_time);
7300: IF BSC_METADATA_OPTIMIZER_PKG.g_bsc_mv THEN
7301: writeTmp('going to loop for calendars');
7302: FOR i IN cCalendars LOOP
7303: open cv for l_lud_stmt using i.calendar_id;
7304: fetch cv into l_rpt_lud;

Line 7318: raise BSC_METADATA_OPTIMIZER_PKG.optimizer_exception;

7314: ' changed, calling load reporting calendar for this:'||get_time);
7315: IF NOT BSC_BIA_WRAPPER.Load_Reporting_Calendar(i.calendar_id, l_error_message) THEN
7316: writeTmp('Error Loading reporting calendar :'||l_error_message, FND_LOG.LEVEL_UNEXPECTED, true);
7317: BSC_MO_HELPER_PKG.TerminateWithMsg(l_error_message);
7318: raise BSC_METADATA_OPTIMIZER_PKG.optimizer_exception;
7319: END IF;
7320: writeTmp('Done refreshing Calendar id '||i.calendar_id ||' '||get_time);
7321: -- AW_INTEGRATION: Call aw api to import calendar into aw world
7322: -- Fix bug#4360037: load calendar into aw only if there are aw indicators

Line 7324: if (bsc_metadata_optimizer_pkg.g_log) then

7320: writeTmp('Done refreshing Calendar id '||i.calendar_id ||' '||get_time);
7321: -- AW_INTEGRATION: Call aw api to import calendar into aw world
7322: -- Fix bug#4360037: load calendar into aw only if there are aw indicators
7323: IF aw_objective_exists THEN
7324: if (bsc_metadata_optimizer_pkg.g_log) then
7325: l_option_string := 'DEBUG LOG';
7326: end if;
7327: bsc_aw_calendar.create_calendar
7328: ( i.calendar_id