You are on page 1of 1

Rowid Data Types

Every row stored in the database has an address. Oracle Database uses a ROWID data type to
store the address (rowid) of every row in the database. Rowids fall into the following categories:

Physical rowids store the addresses of rows in heap-organized tables, table clusters, and table and
index partitions.
Logical rowids store the addresses of rows in index-organized tables.
Foreign rowids are identifiers in foreign tables, such as DB2 tables accessed through a gateway.
They are not standard Oracle Database rowids.

Oracle SQL/PLSQL Questions &


Answers:

Federal Poverty Level (FPL)


A measure of income issued every year by the Department of Health and Human Services
(HHS). Federal poverty levels are used to determine your eligibility for certain programs and
benefits, including savings on Marketplace health insurance, and Medicaid and CHIP
coverage.

What is SQL statement?


SQL stands for Structured Query Language that is use for updating, deleting and inserting the information
from databases. SQL is an ANSI and ISO standard and is the de-facto standard database query language.
Oracle database also support this language.
What are database triggers and how many types of triggers?
Database triggers are a set of code that run or fire automatically when the specific operation will performed
like Insert, Update and Delete. They are store procedures that are auto configure and fire when certain
events take place in database.
There are two types of triggers
1- Tables level trigger
2- Row level trigger
Table level trigger are fire at one time but row level trigger fire on every row or on any transaction in the
table.
Question: What is oracle sql and pl.

You might also like