Home » Oracle

HOW TO REMOVE STREAMS

HOW TO REMOVE STREAM 01. remove streams EXEC DBMS_STREAMS_ADM.REMOVE_STREAMS_CONFIGURATION(); 02. drop queue tables select OWNER,NAME,QUEUE_TABLE from dba_queues where owner=”; then exec DBMS_STREAMS_ADM.REMOVE_QUEUE(”); 03 drop supplemental logging select ‘alter table ‘||owner||’.’||table_name||’ drop supplemental log data (all) columns;’ from DBA_LOG_GROUPS where owner=”;

INSTALLATION OF ORACLE DATABASE

INSTALLATION OF ORACLE DATABASE Oracle Installation and Database Development On UNIX and Windows Platforms – A comparison UNIX Windows NT/2000/XP On UNIX, several files and scripts in different directories are used to start an instance automatically. Other scripts are run

LOADING DATA INTO ORACLE TABLES

LOADING DATA INTO ORACLE TABLES ( sp_get_set_and_load ) This doc details the procedure evolved to automate the process of loading the data into Oracle database using SQL*Loader. The functionality of the procedure: (1) Go to the destination directory and get

Scroll to Top