The database you specified is running in NOARCHIVELOG mode and not in ARCHIVELOG mode. Please contact your Oracle DBA to perform "ALTER DATABASE ARCHIVELOG".
Resolution Tips: To resolve the error, it is best to work with a seasoned Oracle database administrator. These tips may be helpful: 1. Add the Archive Log destination location: edit your init.ora / spfile with the following information log_archive_dest='/<username>/oradata/archlog' (for example) log_archive_format='%t_%s.dbf' (for example) log_archive_start=true
2. On the local Oracle computer, connect using SQL Plus or another tool. Switch the user context to sysdba. Then shutdown the datatabase, and startup without opening the database (mount only), to change the Archivelog setting.
System@servername
CONNECT
/
as
sysdba
SHUTDOWN IMMEDIATE
STARTUP MOUNT
ALTER
DATABASE
ARCHIVELOG;
OPEN
;
The database you specified is not setup for supplemental logging as required. Please contact your Oracle DBA to perform "ALTER DATABASE ADD SUPPLEMENTAL LOG DATA".
Connect to the database using SQL Plus or another tool and run the command to add the supplemental log data.
ADD
SUPPLEMENTAL LOG DATA;
<< Back to Microsoft SQL Server 2012 Change Data Capture for Oracle by Attunity Topics