DBMS_STATS package was introduced in Oracle 8i and used to gather Database,table,Schema,dictionary and fixed object statistic in Oracle database. Statistic of objects should be up…
View More Gather Schema Stats using DBMS_STATS.GATHER_SCHEMA_STATSTag: oracle
convert seconds into mins hours in Oracle
Oracle Standby Redo Logs vs Online Redo Logs:
Redo Logs Conceptually, Oracle Redo Logs are a collection of Redo records. Redo records are a group of change vectors. Each change vector denotes a…
View More Oracle Standby Redo Logs vs Online Redo Logs:DBA Interview Questions
1-Explain the security practices such as LDAP SSL SSO and certificate management LDAP: Lightweight Directory Access Protocol–LDAP is a tool for extracting and editing data…
View More DBA Interview QuestionsDrop Objects in Oracle
The best and most efficient way is to catch the “table not found” exception: this avoids the overhead of checking if the table exists twice;…
View More Drop Objects in OracleSQL Developer autocommit on/off
Click the checkbox to turn it on. Hereβs what the setting does: Value Impact Checked Autocommit is on. SQL statements that change data will have…
View More SQL Developer autocommit on/offResource limit of sessions and processes in Oracle
Check the resource limit of session and processes in Oracle With help of V$RESOURCE_LIMIT view, we can see the current utilization and MAX utilization of…
View More Resource limit of sessions and processes in OracleOracle GoldenGate vs Oracle Data Guard
The configuration of Oracle GoldenGate / Data Guard has the purpose of synchronizing data between two or more systems . The basic features of the…
View More Oracle GoldenGate vs Oracle Data GuardThroughput, latency, concurrency
The difference between making a good and a bad decisions often comes down to the quality of the pre-defined metrics. If the metric is poor…
View More Throughput, latency, concurrencyCURSOR_SHARING(EXACT/FORCE/SIMILAR) In ORACLE
How CURSOR_SHARING works in ORACLE?CURSOR_SHARING determines what kind of SQL statements can share the same cursors. The possible values are EXACT which is the default value and…
View More CURSOR_SHARING(EXACT/FORCE/SIMILAR) In ORACLE