Oracle Database DDL Statements – DROP Object Commands

Oracle Database Data Definition Language (DDL Statements) – DROP Object Commands:

In this section, we will try to explain about important database DROP commands that are used by a data modeler by relating it with our example data.

Drop Index:

DROP INDEX IND_SSN; 

Drop Synonym:

DROP SYNONYM SYN_EMPLOYEE_DTL; 

Drop View:

DROP VIEW VIEW_EMPLOYEE_DTL; 

Drop Sequence:

DROP SEQUENCE SEQ_EMPLOYEE_DTL; 

Drop Trigger:

DROP TRIGGER TRG_SEQ_EMPLOYEE_DTL; 

Drop Table:

DROP TABLE EMPLOYEE_DTL; 

Drop Table with Cascading Option:

In our example tables, try to drop tables GENDER_LKP, and DEPARTMENT_LKP after the data is loaded into GENDER_LKP, DEPARTMENT_LKP, and EMPLOYEE_DTL. You will get an error message.

If you want to drop parent tables that are connected with child tables, then you can use the following command.

DROP TABLE GENDER_LKP CASCADE CONSTRAINTS;

DROP TABLE DEPARTMENT_LKP CASCADE CONSTRAINTS; 

 

Oracle Database DML Commands

Oracle Database Data Manipulation Language (DML) Commands:

In this section, we will try to explain about important database DML commands that are used by a data modeler.

Insert statements:

  • Insert Values into GENDER_LKP:

Insert statements are used to insert data into the table. In our example, we have used SYSDATE, an Oracle’s function, which is used to insert the date and time into the column “DTTM_STMP”.

INSERT INTO GENDER_LKP VALUES ( ‘M’, ‘MALE’, SYSDATE);

INSERT INTO GENDER_LKP VALUES (‘F’, ‘FEMALE’, SYSDATE); 

  • Insert Values into DEPARTMENT_LKP:
INSERT INTO DEPARTMENT_LKP VALUES (10, ‘IT’, SYSDATE);

INSERT INTO DEPARTMENT_LKP VALUES (20, ‘HR’, SYSDATE); 

  • Insert Values into EMPLOYEE_DTL:
INSERT INTO EMPLOYEE_DTL(GNDR_CD, DPTMT_NUM, FRST_NM, LST_NM, MDLE_NM, BRTH_DT, SSN, SLRY_AMT, DTTM_STMP) VALUES (‘M’, 10,’Kevin’,’A’,’Schulte’, TO_DATE(’13-OCT-1969′,’DD-MON-YYYY’),’123-45-67′, 5000,SYSDATE);

 

INSERT INTO EMPLOYEE_DTL(GNDR_CD, DPTMT_NUM, FRST_NM, LST_NM, MDLE_NM, BRTH_DT, SSN, SLRY_AMT, DTTM_STMP) VALUES (‘F’, NULL,’Valencia’,’D’,’Schipper’, TO_DATE(’20-APR-1973′,’DD-MON-YYYY’),’765-43-21′, 5000,SYSDATE);

 

INSERT INTO EMPLOYEE_DTL(GNDR_CD, DPTMT_NUM, FRST_NM, LST_NM, MDLE_NM, BRTH_DT, SSN, SLRY_AMT, DTTM_STMP) VALUES (‘M’, 10,’Chris’,’A’,’HERIER’, TO_DATE(’10-JUN-1963′,’DD-MON-YYYY’),’795-82-63′, 6000,SYSDATE); 

  • Insert Values into EMPLOYEE_DTL_COPY:

This statement will copy all records from table “EMPLOYEE_DTL” to “EMPLOYEE_DTL_COPY”.

INSERT INTO EMPLOYEE_DTL_COPY SELECT * FROM EMPLOYEE_DTL; 

Update Statements:

Update statements are used to update records with/without conditions. The following example uses a condition in where clause. Update statements can be committed to the database by using explicit “commit” command or it can be rolled back by using “rollback” command.

UPDATE EMPLOYEE_DTL SET DPTMT_NUM=20 WHERE EMP_DTL_ID=2; 

Delete Statements:

Delete statements are used to delete records with/without conditions. The following example uses some condition in where clause. Delete statements can be committed to the database by using explicit “commit” command or it can be rolled back by using “rollback” command.

DELETE FROM EMPLOYEE_DTL WHERE EMP_DTL_ID=2; 

Select all rows:

Select statements are used to retrieve records from the database with/without conditions. Select statements are the most powerful commands, which you have to learn since you can avoid unnecessary “PLSQL” in many cases.

SELECT * FROM EMPLOYEE_DTL; 

Select rows by using a WHERE clause:

SELECT * FROM EMPLOYEE_DTL WHERE EMP_DTL_ID=1; 

Select few columns:

SELECT EMP_DTL_ID, FRST_NM, SLRY_AMT FROM EMPLOYEE_DTL WHERE

SSN=’123-45-67′; 

Select records by Sorting (ASC = ascending and DESC = descending):

SELECT * FROM EMPLOYEE_DTL ORDER BY EMP_DTL_ID ASC;

SELECT * FROM EMPLOYEE_DTL ORDER BY EMP_DTL_ID DESC; 

Select records by Grouping and Having clause:

SELECT DPTMT_NUM, COUNT(DPTMT_NUM) FROM EMPLOYEE_DTL GROUP BY DPTMT_NUM;

 

SELECT DPTMT_NUM, COUNT(DPTMT_NUM) FROM EMPLOYEE_DTL GROUP BY DPTMT_NUM HAVING COUNT(DPTMT_NUM) > 1;

 

SELECT DPTMT_NUM, COUNT(DPTMT_NUM) FROM EMPLOYEE_DTL GROUP BY DPTMT_NUM HAVING COUNT(DPTMT_NUM) < 2; 

Select records by using a Sub Query:

SELECT * from EMPLOYEE_DTL WHERE DPTMT_NUM IN(SELECT DPTMT_NUM FROM DEPARTMENT_LKP WHERE DPTMT_DESC=’IT’); 

Select Distinct records:

SELECT DISTINCT(DPTMT_NUM) FROM EMPLOYEE_DTL; 

Select Count of records:

SELECT COUNT(*) FROM EMPLOYEE_DTL; 

 

Oracle Database DDL Statements – ALTER Commands

Oracle Database Data Definition Language (DDL Statements) – ALTER Commands:

In this section, we will try to explain about important database ALTER commands that are used by a data modeler by relating it with our example data.

ALTER TABLE – Add Column:

 ALTER TABLE EMPLOYEE_DTL ADD JOIN_DATE DATE; 

ALTER TABLE – Rename Column:

 ALTER TABLE EMPLOYEE_DTL RENAME column JOIN_DATE TO EMP_JOIN_DT; 

ALTER TABLE – Modify column’s Data Type:

 ALTER TABLE EMPLOYEE_DTL MODIFY EMP_JOIN_DT VARCHAR2(10); 

ALTER TABLE – Drop Column:

 ALTER TABLE EMPLOYEE_DTL DROP COLUMN EMP_JOIN_DT; 

ALTER TABLE – Add Check Constraint:

ALTER TABLE EMPLOYEE_DTL ADD CONSTRAINT CH_SAL CHECK(SLRY_AMT BETWEEN 4000 AND 7000); 

ALTER TABLE – Add Unique Constraint:

ALTER TABLE EMPLOYEE_DTL ADD CONSTRAINT UN_SSN UNIQUE(SSN); 

ALTER TABLE – Disable/Enable/Drop Constraint:

ALTER TABLE EMPLOYEE_DTL DISABLE CONSTRAINT UN_SSN; 

ALTER TABLE EMPLOYEE_DTL ENABLE CONSTRAINT UN_SSN;

ALTER TABLE EMPLOYEE_DTL DROP CONSTRAINT UN_SSN; 

ALTER TABLE – Modify Constraint:

 ALTER TABLE EMPLOYEE_DTL MODIFY SLRY_AMT NUMBER(7,2) NULL;

 ALTER TABLE EMPLOYEE_DTL MODIFY SLRY_AMT NUMBER(7,2) NOT NULL; 

Oracle DDL Commands – Create Commands

Oracle Database Data Definition Language (DDL Statements) – Create Commands

To execute Oracle database commands, you need Oracle’s username, password and oracle instance name to connect to oracle database. If you haven’t got the username, contact database administrator (DBA) and get the relevant privileges. When you are working with a client, you may be provided a development schema to execute all of your database commands or privileges granted to work on all schemas depending upon your data modelling activity. All commands should be executed from sql> prompt and “;” indicates the end of an oracle command.

An Oracle database consists of DDL commands, which are useful to create, modify and drop the database objects. In this section, we will try to explain about important database CREATE commands that are used by a data modeler by relating it with our example data.

Create Table “GENDER_LKP”:

Create table statements are used for creating tables by which data is stored permanently in the database.

CREATE TABLE GENDER_LKP (

GNDR_CD VARCHAR2 (10) NOT NULL,

GNDR_DESC VARCHAR2 (50) NOT NULL,

DTTM_STMP DATE NOT NULL,

CONSTRAINT GENDER_LKP_PK PRIMARY KEY (GNDR_CD)

);

Create Table “DEPARTMENT_LKP”:

CREATE TABLE DEPARTMENT_LKP (

DPTMT_NUM NUMBER(2) NOT NULL,

DPTMT_DESC VARCHAR2(50) NOT NULL,

DTTM_STMP DATE NOT NULL,

CONSTRAINT DEPARTMENT_LKP_PK

PRIMARY KEY (DPTMT_NUM)

);

Create Table “EMPLOYEE_DTL”:

CREATE TABLE EMPLOYEE_DTL (

EMP_DTL_ID NUMBER NOT NULL,

GNDR_CD VARCHAR2(10) NOT NULL,

DPTMT_NUM NUMBER(2) NULL,

FRST_NM VARCHAR2(30) NOT NULL,

LST_NM VARCHAR2(30) NOT NULL,

MDLE_NM VARCHAR2(30) NULL,

BRTH_DT DATE NOT NULL,

SSN VARCHAR2(11) NOT NULL,

SLRY_AMT NUMBER(7,2) NOT NULL,

DTTM_STMP DATE NOT NULL,

CONSTRAINT EMPLOYEE_DTL_PK PRIMARY KEY (EMP_DTL_ID),

CONSTRAINT EMPLOYEE_DTL_FK01 FOREIGN KEY (DPTMT_NUM) REFERENCES DEPARTMENT_LKP,

CONSTRAINT EMPLOYEE_DTL_FK02 FOREIGN KEY (GNDR_CD) REFERENCES GENDER_LKP

); 

 How to copy a table with data?

As of now, table EMPLOYEE_DTL contains no data. As soon as you load the data into EMPLOYEE_DTL, try the following command.

CREATE TABLE EMPLOYEE_DTL_COPY AS SELECT * FROM EMPLOYEE_DTL;

How to copy a table with no data?

CREATE TABLE EMPLOYEE_DTL_COPY AS SELECT * FROM EMPLOYEE_DTL WHERE 1=2; 

How to create a Sequence?

This sequence is used to generate unique numbers for the column ‘EMP_DTL_ID’.

CREATE SEQUENCE SEQ_EMPLOYEE_DTL

INCREMENT BY 1

START WITH 1

NOMAXVALUE

NOMINVALUE

NOCACHE

NOCYCLE

NOORDER

;

How to create a Trigger?

Whenever a record is inserted into “EMPLOYEE_DTL” table, this trigger selects the next unique number from the sequence “SEQ_EMPLOYEE_DTL” and inserts into the column “EMP_DTL_ID”.

In our INSERT STATEMENTS example, we have not provided values for the column “EMP_DTL_ID” and inserting values into “EMP_DTL_ID is taken care by sequence and trigger.

CREATE OR REPLACE TRIGGER TRG_SEQ_EMPLOYEE_DTL

BEFORE INSERT ON EMPLOYEE_DTL

FOR EACH ROW

BEGIN

SELECT SEQ_EMPLOYEE_DTL.NEXTVAL INTO :NEW.EMP_DTL_ID FROM DUAL;

END;

How to create an Index?

CREATE INDEX IND_SSN ON EMPLOYEE_DTL(SSN); 

How to create a View?

CREATE VIEW VIEW_EMPLOYEE_DTL AS SELECT * FROM EMPLOYEE_DTL; 

How to create a Synonym?

CREATE SYNONYM SYN_EMPLOYEE_DTL FOR EMPLOYEE_DTL; 

Database: Sample Data Analysis

Database: Sample Data

With a simple example of designing a data model with ‘Employee related information’, most of the data structures can be easily understood. So we will try to design a data model using the sample data given below and will explain the data modeler’s involvement in the database environment.

Sample Source Data:

First Name Middle Name Last Name SSN Gender Birth Date Salary Dept. No Dept. Desc
Melinda J Schipper 765-43-21 Female 20-APR-1973 5000
Kevin A Schulte 123-45-67 Male 13-OCT-1969 5000 10 IT

Note: If you go through our topics provided under the Data Modelling Section, you will have a brief idea about how to design a data model.

Database: Sample Data Analysis

For the sample data provided in the above table, as a Data Modeler you have to design logical data model, physical data model and generate DDL scripts. In order to do the above tasks, you need to create the following:

  • Create 3 tables GENDER_LKP, DEPARTMENT_LKP, EMPLOYEE_DTL.
  • Assign correct data types to the columns.
  • Create constraints like primary key, unique key, null, not null, check to the columns.
  • Assign correct PHYSICAL names for tables and columns.
  • Select GENDER_LKP, DEPARTMENT_LKP as parent tables and EMPLOYEE_DTL as the child table and connect them.
  • Even though column ‘DTTM_STMP’ has not been present in the sample data, you have to add ‘DTTM_STMP’ to all tables to know the date and time on which a record is inserted or updated.

GENDER_LKP Analysis:

  • Since ‘male’ and ‘female’ values will be repeated for several records in EMPLOYEE_DTL table, you have to design this lookup for saving disk space. Sometimes the detail table may not show the exact business requirements also.
  • E.g. Since the example data contains both genders; you know that there are two genders. What would have happened if all records were male? By seeing the sample data, you might have come to a conclusion that there are only ‘males’ allowed as employees. By discussing with Business Analyst, you would come to know that both genders are allowed. For this purpose, you design a lookup table, which identifies the business requirements also.
  • You have to assign NOT NULL constraint for all columns since lookup tables in general should not have null value.
  • You have to create a column Gender Code, which is not present in sample data and this column should be assigned Primary Key to validate the detailed data in EMPLOYEE_DTL table.

Sample Source Data:

 

Entity Name Table

Name

Att

Name

Col

Name

Data

type

Null Option P Key F Key
Gender Lookup GENDER_LKP Gender Code GNDR_CD VARCHAR2(10) NOT NULL Yes No
Gender Lookup GENDER_LKP Gender Description GNDR_DESC VARCHAR2(50) NOT NULL No No
Gender Lookup GENDER_LKP DateTime Stamp DTTM_STMP DATE NOT NULL No No

Analysis of DEPARTMENT_LKP:

  • Since ‘Dept No’ and ‘Dept Desc’ values will be repeated for several records in EMPLOYEE_DTL table, you have to design this lookup for saving the disk space.
  • You have to assign NOT NULL constraint for all columns. Generally lookups should not have null value.
  • You have to assign ‘Dept No’ as the primary key to validate the detailed data in EMPLOYEE_DTL table.

Sample Source Data:

Entity Name Table

Name

Att

Name

Col

Name

Data

type

Null Optn P Key F Key
Department Lookup DEPART

MENT_LKP

Depart

ment Number

DPTMT_NUM NUMBER(2) NOT NULL Yes No
Department Lookup DEPART

MENT_LKP

Depart

ment Description

DPTMT_DESC VARCHAR2(50) NOT NULL No No
Department Lookup DEPART

MENT_LKP

DateTime Stamp DTTM_STMP DATE NOT NULL No No

Analysis of EMPLOYEE_DTL:

  • As of now, this example entity contains only sample of 2 records. In real time, this entity would store millions of records. In order to retrieve the data in a faster way, you have to create an additional column EMP_DTL_ID in EMPLOYEE_DTL and assign it as primary key.
  • In our example, column EMP_DTL_ID will be populated through sequence initiated by a trigger and you can see the sequence code and trigger code in later sections.
  • Even though SSN can be added as a primary key in EMPLOYEE_DTL table, you have to add a new column EMP_DTL_ID as the primary key to ensure the fastest retrieval of data.
  • Tip: Wherever it is required, you have to create new columns.

Sample Source Data:

Entity Name Table

Name

Att

Name

Col

Name

Data

type

Null Option P Key F Key
Employee Detail EMPLOYEE

_DTL

Employee Detail Identifier EMP_DTL_ID NUMBER NOT NULL Yes No
Employee Detail EMPLOYEE

_DTL

Department Number DPTMT_NUM NUMBER(2) NULL No Yes
Employee Detail EMPLOYEE

_DTL

Gender Code GNDR_CD VARCHAR2(10) NOT NULL No Yes
Employee Detail EMPLOYEE

_DTL

First Name FRST_NM VARCHAR2(30) NOT NULL No No
Employee Detail EMPLOYEE

_DTL

Last Name LST_NM VARCHAR2(30) NOT NULL No No
Employee Detail EMPLOYEE

_DTL

Middle Name MDLE_NM VARCHAR2(30) NULL No No
Employee Detail EMPLOYEE

_DTL

SSN SSN VARCHAR2(11) NOT NULL No No
Employee Detail EMPLOYEE

_DTL

Birth Date BRTH_DT DATE NOT NULL No No
Employee Detail EMPLOYEE

_DTL

Salary Amount SLRY_AMT NUMBER(7,2) NOT NULL No No
Employee Detail EMPLOYEE

_DTL

DateTime Stamp DTTM_STMP DATE NOT NULL No No

 

Oracle Database Objects Overview

Oracle Database Objects Overview:

A database can have many schemas; one schema can contain multiple database objects like tables, views, Synonym etc. A brief explanation on each of these Oracle database objects is given below. For more detailed explanations, please refer the official website of Oracle at www.oracle.com.

Schema:

This is also known as USER and is a collection of database objects and as a data modeler one should know how to login into a particular schema and to manage these database objects.

Table:

A set of related data, arranged in the form of rows and columns.

Column:

This is also known as Field that provides the structure for organizing the rows and contains the related information.

Data type:

This is set of property associated with a column, which helps to store and identify the type of data and its length.

Null:

This is a value that indicates that the column contains no valid data.

Not Null:

This is a constraint that indicates that the column should contain data.

Primary Key Constraint:

This is a constraint imposed on the column so that all values in the column should be different from each other. This constraint can be imposed on one column or group of columns. The primary key will be always used as a parent key when adding a referential constraint by connecting it to a child table.

  • Unique Constraint: Unique + Null Values
  • Primary Key Constraint: Unique + Not Null Values

Foreign Key Constraint:

This is a constraint imposed on the child table. Whatever values are present in the child table, their corresponding values should be present in the parent table. This constraint can be imposed on one column or group of columns and NULL values are allowed in the child table.

Unique Constraint:

This is a constraint imposed on a column so that all NON-NULL values in the column should be different from each other. This constraint can be imposed on one column or group of columns.

Check Constraint:

This is a constraint that is imposed to validate the data within some value or range of values. This constraint can be imposed on one column or group of columns.

Index:

Index is a database object that enables faster retrieval of data. Unique Index, Bitmap Index etc., are the different types of Index.

Sequence:

This is a database object that generates unique numbers.

View:

This is a PSEUDO table that is not stored in the database and it is just a query.

Materialized Views:

Materialized Views are similar to a view but these are permanently stored in the database and often refreshed. This is used in optimization for the faster data retrieval and is useful in aggregation and summation of data.

Synonym:

This is an alias name for the object in the database created with CREATE SYNONYM command.

Procedure:

This is a program that contains set of code, which will carry out a specific action when called by other programs.

Function:

This is a program that contains set of code, which will do a specific action when called by other programs.

Package:

This is a collection of procedures, functions, PL/SQL tables, etc., that contains set of code, which will do a specific action when called by other programs.

Trigger:

This is a program that contains set of code for doing some useful action when a record is inserted or deleted or updated in a table.

 

Database Overview

Database Overview:

A database is a collection of organized and structured data, stored in the computer as files. Various data types like numeric, textual, image, multimedia etc., can be managed and maintained more efficiently in a database.

Database Types:

  • Database Management Systems (DBMS)
  • Relational Database Management Systems (RDBMS)
  • Object Oriented Databases
  • Multidimensional Databases

Often used databases (RDBMS) in most of the practical applications are Oracle, Sql Server, Informix, Teradata, DB2 etc., and in the following pages, Oracle’s data structures are used as examples to explain the relationship between data modelling and database. In order to design a data model in a proper manner, a data modeler has to know the different objects (data structures) present in a database. Also data modeler should have a sound knowledge of the data present/to be present in the database, should be able to design a data model using a data modelling tool like Erwin, and to generate DDL scripts from the Data Modelling tool.

Given below is the list of Oracle data objects and in the following pages, a brief overview is given for each of these objects.

Oracle Database Objects:

  • Instance
  • Schema
  • Table
  • Column
  • Data type
  • Primary Key Constraint
  • Unique Constraint
  • Check Constraint
  • Null
  • Not Null
  • Index
  • Sequence
  • View
  • Materialized View
  • Synonym
  • Procedure
  • Function
  • Package
  • Trigger