0% found this document useful (0 votes)
64 views

Oracle SQL/PLSQL Questions & Answers:: Federal Poverty Level (FPL)

Oracle SQL and PL/SQL stand for: - SQL (Structured Query Language): SQL is a standard language for storing, manipulating and retrieving data in databases. It is used in Oracle database to communicate with the database, manipulate the data and retrieve the data from Oracle database tables, views etc. - PL/SQL (Procedural Language/SQL): PL/SQL is a procedural language developed by Oracle Corporation for use with its Oracle Database. PL/SQL is Oracle's procedural extension to SQL and most PL/SQL code is executed by the Oracle Database server with special built-in packages. PL/SQL allows developers to group SQL statements, and other programming constructs like variables, conditions, loops etc into reusable blocks of code

Uploaded by

Sumit K
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
64 views

Oracle SQL/PLSQL Questions & Answers:: Federal Poverty Level (FPL)

Oracle SQL and PL/SQL stand for: - SQL (Structured Query Language): SQL is a standard language for storing, manipulating and retrieving data in databases. It is used in Oracle database to communicate with the database, manipulate the data and retrieve the data from Oracle database tables, views etc. - PL/SQL (Procedural Language/SQL): PL/SQL is a procedural language developed by Oracle Corporation for use with its Oracle Database. PL/SQL is Oracle's procedural extension to SQL and most PL/SQL code is executed by the Oracle Database server with special built-in packages. PL/SQL allows developers to group SQL statements, and other programming constructs like variables, conditions, loops etc into reusable blocks of code

Uploaded by

Sumit K
Copyright
© © All Rights Reserved
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 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