DBA Data[Home] [Help]

APPS.BSC_MO_HELPER_PKG dependencies on BSC_DBGEN_STD_METADATA

Line 5741: BSC_DBGEN_STD_METADATA.BSC_B_PRJ_TABLE) ;

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;
5745: END IF;

Line 5750: BSC_DBGEN_STD_METADATA.BSC_I_ROWID_TABLE) ;

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);
5754: end if;