Oracle auditing based on user - oracle

In oracle 11g version , AUDIT ALL command does not audit dml statements based on user , Anyone please help me come out of this problem

Not sure why we have not received any inputs for the query? Its tough to reach Oracle technical support as well.

Related

Reverse Engineer an Oracle Database with Flyway

Is it possible to reverse engineer an oracle database using flyway?
I need to dump all the schema's from a database, including all objects, but don't need the data.
I found this, but it's from 4 years ago
Reverse engineering an existing database with flywaydb?
Could someone confirm if that's still the case and you can't reverse engineer an oracle database with flyway?
Thanks
Oracle SQL Developer can achieve this. You can find the feature in Tools/Database Export menu. Here is the docs page.

SQL Developer - default open specific tables after connection

does anyone know how to set up default "seeing" of specific tables after connecting to the DB? E.g. we have tables A,B,C,D and after connecting to the DB I want to see TAB with table A and TAB with table B.
Thank you
Sorry, this isn't possible today in Oracle SQL Developer.
You could submit an enhancement request to My Oracle Support or put in an idea to sqldeveloper.oracle.com

Check if feature is enabled Oracle 12g 12.2

All,
New to Oracle and am tasked with seeing why a query will not complete in 12c but runs totally fine in 11g. The query will complete in 3-4 minutes on 11g, but will sit and process until you cancel it on 12c.
I'd like to view the features that are enabled, primarily anything dealing with query optimization. How can I do this?
youn can take a look at:
v$ses_optimizer_env
v$sys_optimizer_env
That said: I would start to take a look at the execution plan: Maybe the difference is not a question of Features, but a result of different statistics in the given Systems.
Oracle has an option to emulate optimizer behavior from older versions on the new one. Try to add hint OPTIMIZER_FEATURES_ENABLE('your version of 11g') on 12c, or run this statement within the same session before execution of the query on 12c (assume the version of 11g where query is running fine is 11.2.0.4):
ALTER SESSION SET OPTIMIZER_FEATURES_ENABLE='11.2.0.4';

Oracle Audit - DDL/DML not on. System Events on. How to turn all on?

Afternoon everyone,
I currently have a Oracle DB issue. I have Oracle Auditing on (AUDIT_TRAIL set to db). However the only information being captured is the System Events (log on, off).
From the Oracle 10g2 documenation (http://www.oracle-base.com/articles/10g/Auditing_10gR2.php) I notice that there are 3 audit options, however I cannot figure out how to turn the other 2 on.
Does anyone know how?
I don't know the answer to your question, but I know that the link you describe as "the Oracle documentation" is a third-party advice site. This is the Oracle 10g documentation. Specifically, here is the documentation on auditing. There you will find the answers you seek (at least I assume you will).

Data Guard Oracle 11g

I want to do the disaster recovery in oracle 11g using data guard. But I don't the procedure or the way how to do it. I want all of someone that show me the document or the way to do it.
Can anyone help me to do that?
Thanks,
Ung Sopolin
You could start with the Data Guard Concepts and Administration guide which covers the overall mechanism of Data Guard and the way to implement it.
This is a link to a data guard installation in oracle 9i. Besides some new feautures on 10g and 11g is should in essence be the same.
http://www.oracle-base.com/articles/9i/DataGuard.php
Please refer below links for Step by Step Guide
Step by Step Guide on Creating Physical Standby Using RMAN DUPLICATE…FROM ACTIVE DATABASE [ID 1075908.1]
https://oracle-base.com/articles/11g/data-guard-setup-11gr2
https://docs.oracle.com/database/121/SBYDB/create_ps.htm#SBYDB4722

Resources