IAM (Infrastructure Identity and Access Management), as the name suggests it is used to control an access to cloud resources. Which real user should have access to which compartment , network or tenancy and which type of access they should have is decided by configuring IAM. There are different components which helps you configure IAM […]
All posts by Jagruti Jasleniya
Session in killed state
Sometimes you see sessions does not wipe out immediately or you see “marked for kill” message and they stays in killed state. You can kill them using below query.
Storage options in Oracle Cloud Infrastructure
Storage is an integral part of any cloud project life cycle. Oracle provides distinct storage options according to the need of data being accessed . You can either use option from “hot” storage class if you want to access it frequently or you can use option from “cold” storage class if you use it less […]
Exchange Subpartition in Oracle
We can exchange subpartition in oracle the same way we exchange partition.Let’s see few examples. 1.Exchange subpartition of *-Hash partitioned table : Here I took example of List-Hash Partitioning method. 2.Exchange subpartition of *-Range Partitioned table : Here I took example of List-Range partitioning method. 3.Exchange subpartition of *-List partitioned table : Here I took […]
Exchange Partition of *-List and *-Range Partition
1.Exchange Partition of *-List Partition Here I took example of Range-List partitioning method. 2.Exchange Partition of *-Range Partitioned table : Here I took example of Range-Range partitioning method. Thank you for giving your valuable time to read the above information. If you want to be updated with all our articles send us the Invitation or […]
Exchanging a Partition of an Interval Partitioned Table
Let’s create Interval-Partitioned table and exchange partitions. Step 1 : Create Interval Partitioned Table Let’s insert some records in TRAN_ALL table. I have staging table which has some records . Let’s create one table using structure of above table with which we can exchange partition of TRAN_ALL table. Let’s exchange partition : Thank you for […]
Virtual Column Partitioning in Oracle
Oracle 11g came up with concept of Virtual Column which is created with expression. Which does not stores data physically rather it calculates at run time and give us output when we fetch using query. We saw different types of partitioning in previous posts, today we will see how we can partition the table using […]
Read-Only Partitions in Oracle
Read-Only partitions are of benefits 1.When you are working in Data-Warehouse environment there must be many partitions which are not updated frequently you can add those partitions to read-only state and then add those partitions to read-only tablespace. These read-only tablespace can help you take your RMAN backup faster as read-only tablespace can be avoided […]
Interval-* Composite Partitioned Tables
In my previous composite partitioning in oracle article I saw example of various types of composite partitioning methods. In addition to that post today we will see composite partitioning with INTERVAL partitioning type. To read about previous composite partitioning : In Interval-* composite partitioning method we will see Interval-Range , Interval-List , Interval-Hash. 1.Create a […]
Modify Partitioned Table to Non-partitioned Table
In previous post we saw modifying non-partitioned table into partitioned one.Today we will see how we can convert partitioned table into non-partitioned table. To read non-partitioned table to partitioned table: Step 1 : Lets check first table is partitioned one. Step 2 : To convert partitioned table to non-partitioned one we need to take backup […]