This error message means that no access control list
has been assigned to the host you (your application) are trying to access, or
no required privileges have been granted to the user by adding user to the ACL.
Following is an example executed on 12c (12.1.0.2) to show how we create ACL and how to test it.
Oracle Installation guides, Linux Administration tips for DBAs, Performance Tuning tips, Disaster Recovery, RMAN, Dataguard and ORA errors solutions.
No contents from my website can be published anywhere else without my permission. Test every solution before implementing in the production environment.
Tuesday, August 25, 2015
Monday, August 17, 2015
Using PGA_AGGREGATE_LIMIT to Limit PGA Memory
Before 12c, there was no hard limit to restrict PGA
memory usage by an Oracle session. It means that if a session keeps growing in
memory, it would eventually allocate all available memory which would lead to a
system slowness/hang and eventually system crash, I have discussed this
scenario here.
Monday, August 10, 2015
Generating Bulk of Data for Testing Purpose
Sometimes we need to generate a huge amount of data
to perform some testing. Type of data to be generated depends on the scenario
you want to test. I will show here a very simple example to create a very huge
table. I usually use it if I need to have a huge tablespace or table to perform
some test. For example, to test backup
Tuesday, August 4, 2015
Changing AWR Snapshot Retention and Interval
By default AWR snapshot interval is set to 60
minutes and retention of snapshots is set to 8 days. For better and precise investigation
of problems, I recommend to use an interval of 15 minutes and retention of 35
days. If database is huge in size and operations, also RAC, your SYSAUX
tablspace would certainly grow in size with these settings. I have observed
size of SYSAUX tablespace for a 3 nodes RAC database, around 14G with
aforementioned settings.
Monday, August 3, 2015
Oracle Deferred Segment Creation
Starting 11g Release 2, we can create a table/index/LOB
without space allocated to it (no segment creation) until first row is inserted
into the table. Init parameter DEFERRED_SEGMENT_CREATION is used to setup the
default behavior. By default value of this parameter is set to TRUE, which
means that whenever a table will be created,
Subscribe to:
Posts (Atom)
Popular Posts - All Times
-
This error means that you are trying to perform some operation in the database which requires encryption wallet to be open, but wallet is ...
-
Finding space usage of tablespaces and database is what many DBAs want to find. In this article I will explain how to find out space usage ...
-
ORA-01653: unable to extend table <SCHEMA_NAME>.<SEGMENT_NAME> by 8192 in tablespace <TABLESPACE_NAME> This error is q...
-
You may also want to see this article about the ORA-12899 which is returned if a value larger than column’s width is inserted in the col...
-
This document explains how to start and stop an Oracle cluster. To start and stop Grid Infrastructure services for a standalone installatio...
-
If database server CPU usage is showing 100%, or high 90%, DBA needs to find out which session is hogging the CPU(s) and take appropriate ...
-
If you want to know how we upgrade an 11g database to 12c using DBUA, click here . For upgrading 12.1.0.1 to 12.1.0.2 using DBUA, ...
-
By default AWR snapshot interval is set to 60 minutes and retention of snapshots is set to 8 days. For better and precise investigation of...
-
SWAP space recommendation from Oracle corp. for Oracle 11g Release 2 If RAM is between 1 GB and 2 GB, SAWP should be 1.5 times the s...
-
This article explains how to install a 2 nodes Oracle 12cR1 Real Application Cluster (RAC) on Oracle Linux 7. I did this installation on O...