Written by students who passed Immediately available after payment Read online or as PDF Wrong document? Swap it for free 4.6 TrustPilot
logo-home
Summary

Summary ORACLE

Rating
-
Sold
-
Pages
37
Uploaded on
02-01-2024
Written in
2022/2023

ORACLE Oracle: - Oracle is a RDBMS Package. RDBMS=Relational Database Management System. Oracle is used for entering data and developing new business packages. Oracle can be divided into three parts. 1. SQL * PLUS 2. PLSQL 3. PL/SQL a. Developer 2000 (Forms) SQL: - SQL Stands for Structure Query Language. sql is a set of commands to used to access the data from database. The SQL commands are three types. 1. Data Definition Language Commands (D.D.L) 2. Data Manipulation Language Commands (D.M.L) 3. Data Control Language Commands (D.C.L.) Data Definition Language Commands (DDL): - These commands are used for prepare the Databases (Tables), define the Structure, Modify already defined structure, and deleting Table. DDL is used for structuring the database. These commands are: 1. Create 2. Alter 3. Drop Data Manipulation Language Commands (DML): - These Commands are used for structure records from a database working with database files appending records, deleting records and updating records. These commands are: 1. Select 2. Insert 3. Update 4. Delete Data Control Language Commands (D.C.L): - These commands are controls how have access to what table that can log on the oracle system. Saves the Data in Oracle Server when your interchange to one user to another user. These Commands are: 1. Commit 2. Rollback 3. Arrant 4. Revoke Starting Oracle Package: - First Activate the Oracle Database Server: Start Button --- Programs ---- Personal Oracle for Windows 95 --- Start Database After Running Oracle Package: Start Button --- Programs ---- Oracle for Windows 95 --- SQL Plus 3.3 OR Start Button --- Programs ---- Oracle --- SQL Plus 3.1 After Enter Oracle User Name and Password: USER NAME : SCOTT PASSWORD : TIGER ---- Ok When you given on user name and password it can returns the oracle SQL prompt. SQL prompt indicates that oracle database server is ready to entering of data. Note: Each Oracle Query end with Semicolon (;). SQL * PLUS: - CL SCR;: - This command is used to Clear the Oracle Screen. Syntax: SQL CL SCR; Enter If you want Exit the Oracle Database Server: - Syntax: - SQLQuit Enter Click the Right mouse button over the Database Server Icon on Taskbar here select the --- Shutdown If you want see the All Databases or Table in Your Oracle Server: - Syntax: - SQLSelect * from Tab; SQL * Plus Data Types: - Data Type Oracle Data Type Character Type Char ,, Varchar ,, Varchar2 ,, long Char(): - This Keyword is used to accessing the character type of data into a specified Database file. This Data type capacity is 255 letters. Varchar(): - This Keyword is used to accessing the character type of data into a specified Database file. This Data type capacity is 2000 letters. But it cannot remove the empty places when fill the data in variable. Varchar2(): - This Keyword is used to accessing the character type of data into a specified Database file. This Data type capacity is 2000 letters. But it can remove the empty places when fill the data in variable. Long: - It is used for accessing the character type of data into a specified Database file. This Data type capacity is 65535 letters. Note: The above Data types are must be mentioning the Size of the Variable but this long variable not accept the size of the Variable. Number: - The Data type is used to store the number type of Data. Data: - The Data type is used to store the Date type of data.

Show more Read less
Institution
Course

Content preview

ORACLE

Oracle: - Oracle is a RDBMS Package.
RDBMS=Relational Database Management System.
Oracle is used for entering data and developing new
business packages.
Oracle can be divided into three parts.
1. SQL * PLUS
2. PLSQL
3. PL/SQL
a. Developer 2000 (Forms)

SQL: - SQL Stands for Structure Query Language. sql is
a set of commands to used to access the data from
database. The SQL commands are three types.
1. Data Definition Language Commands (D.D.L)
2. Data Manipulation Language Commands (D.M.L)
3. Data Control Language Commands (D.C.L.)

Data Definition Language Commands (DDL): - These
commands are used for prepare the Databases (Tables),
define the Structure, Modify already defined structure,
and deleting Table. DDL is used for structuring the
database.
These commands are:
1. Create
2. Alter
3. Drop

Data Manipulation Language Commands (DML): -
These Commands are used for structure records from a
database working with database files appending records,
deleting records and updating records.

, 4. Delete

Data Control Language Commands (D.C.L): - These
commands are controls how have access to what table that
can log on the oracle system. Saves the Data in Oracle
Server when your interchange to one user to another user.
These Commands are:
1. Commit
2. Rollback
3. Arrant
4. Revoke
Starting Oracle Package: -
First Activate the Oracle Database Server:
Start Button --- Programs ---- Personal Oracle for
Windows 95 --- Start Database
After Running Oracle Package:
Start Button --- Programs ---- Oracle for Windows
95 --- SQL Plus 3.3
OR
Start Button --- Programs ---- Oracle --- SQL Plus
3.1
After Enter Oracle User Name and Password:
USER NAME : SCOTT
PASSWORD : TIGER
---- Ok
When you given on user name and password it can returns
the oracle SQL prompt.
SQL prompt indicates that oracle database server is ready
to entering of data.
Note: Each Oracle Query end with Semicolon (;).
SQL * PLUS: -
CL SCR;: - This command is used to Clear the Oracle
Screen.

,If you want Exit the Oracle Database Server: -
Syntax: -
SQL>Quit <Enter>
Click the Right mouse button over the Database Server
Icon on Taskbar here select the
--- Shutdown
If you want see the All Databases or Table in Your Oracle
Server: -
Syntax: -
SQL>Select * from Tab;
SQL * Plus Data Types: -
Data Type Oracle Data Type
Character Type Char
,, Varchar
,, Varchar2
,, long

Char(): - This Keyword is used to accessing the character
type of data into a specified Database file. This Data type
capacity is 255 letters.

Varchar(): - This Keyword is used to accessing the
character type of data into a specified Database file. This
Data type capacity is 2000 letters. But it cannot remove
the empty places when fill the data in variable.

Varchar2(): - This Keyword is used to accessing the
character type of data into a specified Database file. This
Data type capacity is 2000 letters. But it can remove the
empty places when fill the data in variable.

Long: - It is used for accessing the character type of data
into a specified Database file. This Data type capacity is

, Number: - The Data type is used to store the number type
of Data.

Data: - The Data type is used to store the Date type of
data.

Creating New Table in Oracle: -
Syntax: -
SQL> Create Table <Table_Name> (C_Data1
Char(10), C_Data2 Varchar(10), C_Data3
Varchar2(10), C_Data4 Long, N_Data Number,
D_Data Date);
Ex: -
SQL>
If you want see the Table Structure: -
Syntax: -
SQL>Describe <Table_Name>;
OR
SQL>Desc <Table_Name>;
Ex: -
SQL>Desc emp;

INSERT: - Inserts the New Records or Append the
Records into specified Table.
Syntax: -
INSERT INTO <Table_Name> (CF_Data, NF_Data,
DF_Data) Values (‘C_Value’,N_Value, ‘DD-MMM-
YY’);
Ex: -
Insert into course (sname, fname, course, fee) values
(‘Raja’,’Kiran’,’COA’,’12-APR-91’,1200);


Inserting Records with Second Method: -

Written for

Course

Document information

Uploaded on
January 2, 2024
Number of pages
37
Written in
2022/2023
Type
SUMMARY

Subjects

$13.99
Get access to the full document:

Wrong document? Swap it for free Within 14 days of purchase and before downloading, you can choose a different document. You can simply spend the amount again.
Written by students who passed
Immediately available after payment
Read online or as PDF


Also available in package deal

Get to know the seller

Seller avatar
Reputation scores are based on the amount of documents a seller has sold for a fee and the reviews they have received for those documents. There are three levels: Bronze, Silver and Gold. The better the reputation, the more your can rely on the quality of the sellers work.
THEEXCELLENCELIBRARY Harvard University
Follow You need to be logged in order to follow users or courses
Sold
18
Member since
2 year
Number of followers
6
Documents
2641
Last sold
3 months ago
THE EXCELLENCE LIBRARY

The Excellence Library Where Academic Success Begins. Welcome to The Excellence Library — your trusted marketplace for past and upcoming exam papers with verified answers, spanning all academic fields. Whether you're a med student, a future lawyer, a high schooler prepping for finals, or a researcher looking for model dissertations — we've got you covered. What We Offer Accurate &amp; Complete Exam Papers From Medicine, Nursing, Law (Bar Exams), High School subjects, and more. Model Dissertations &amp; Novels Top-tier academic references and full-text materials to guide your writing and study. Affordable &amp; Fair Pricing Quality resources at a price that respects students' budgets. Why Choose Us? Thoroughly Reviewed Answers – Every paper includes clear, correct solutions. Massive Library – Thousands of documents, constantly updated. Academic Excellence, Delivered – We help you prepare smarter, not harder. Fast Delivery – Get what you need, when you need it. Our Goal To empower students and professionals by offering reliable, affordable academic materials — helping you succeed one paper at a time.

Read more Read less
2.5

2 reviews

5
0
4
0
3
1
2
1
1
0

Recently viewed by you

Why students choose Stuvia

Created by fellow students, verified by reviews

Quality you can trust: written by students who passed their tests and reviewed by others who've used these notes.

Didn't get what you expected? Choose another document

No worries! You can instantly pick a different document that better fits what you're looking for.

Pay as you like, start learning right away

No subscription, no commitments. Pay the way you're used to via credit card and download your PDF document instantly.

Student with book image

“Bought, downloaded, and aced it. It really can be that simple.”

Alisha Student

Working on your references?

Create accurate citations in APA, MLA and Harvard with our free citation generator.

Working on your references?

Frequently asked questions