DBA Data[Home] [Help]

APPS.BSC_MO_DB_PKG dependencies on BSC_DB_TABLES

Line 1457: bsc_mo_helper_pkg.writeTmp('updating properties in bsc_db_tables, count='||g_update_tables.count);

1453: IF (g_parallelize) THEN -- tables need to be created by child processes
1454: spawn_child_processes;
1455: END IF;
1456:
1457: bsc_mo_helper_pkg.writeTmp('updating properties in bsc_db_tables, count='||g_update_tables.count);
1458: FOR i IN 1..g_update_tables.count LOOP
1459: l_varchar_table1(i) := g_update_tables(i).table_name;
1460: l_varchar_table2(i) := g_update_tables(i).property;
1461: bsc_mo_helper_pkg.writeTmp('table_name='||l_varchar_table1(i)||', property='||l_varchar_table2(i));

Line 1465: UPDATE BSC_DB_TABLES

1461: bsc_mo_helper_pkg.writeTmp('table_name='||l_varchar_table1(i)||', property='||l_varchar_table2(i));
1462: END LOOP;
1463: -- Update Table Properties
1464: FORALL i IN 1..g_update_tables.count
1465: UPDATE BSC_DB_TABLES
1466: SET PROPERTIES=PROPERTIES||l_varchar_table2(i)||BSC_DBGEN_STD_METADATA.BSC_PROPERTY_SEPARATOR
1467: WHERE table_name = l_varchar_table1(i);
1468:
1469: IF BSC_METADATA_OPTIMIZER_PKG.g_log THEN