In today’s article, we will talk about how to use the SET UNUSED command in cases where dropping the column will take time. We use …
Read More »ORACLE
Table Move And Shrink
In this article, we will discuss in detail the table Move processes and how Shrink operations are performed. Sometimes we may need to move a …
Read More »PostgreSQL DELETE TRIGGER
In this tutorial, you will learn how to use the PostgreSQL DELETE TRIGGER statement to delete a trigger from a table. First of all, we …
Read More »Delete Data From The Table
In today’s article, we will learn how to delete data from a table and the differences between DELETE and TRUNCATE commands. Data from a table …
Read More »DROP TABLE
In today’s article, we will learn how to drop an existing table in a database with the DROP TABLE command. [crayon-6742642837392157111334/] Tables that are connected …
Read More »Table Change (ALTER) Operations
In today’s article, we will examine how to change tables in a table using the ALTER command. 1. Change Table Name. [crayon-6742642837555841857526/] 2. Add Columns …
Read More »Add Data To The Table
In today’s article, we will be learning how to add data to our table using EXTERNAL TABLE and SQL LOADER. When adding our data to …
Read More »Creating An Oracle External Table
In this tutorial, you will learn about Oracle external tables that allow you to access data in flat files as if it were in tables. …
Read More »Creation Of Index Organized Tables
In today’s article, we will be learning how to creation of Index Organized Tables (IOT). It stores all data in the B*Tree index structure. Therefore, …
Read More »How To Create A Temporary Table In Oracle
In today’s article, we will be explaining on the topic of Create a Temporary tables, which provide a space to store and process data without …
Read More »