Solutions & Engineering: of Defense and Security Information Systems
Solutions & Engineering: of Defense and Security Information Systems
Oracle
Administration
enter password
click the OK
button
View Parameter
double-click the
Instance node
click the
Configration
node
click All
Initialization
Parameter
Solutions & Engineering of Defense and Security Information Systems
View Parameter
click the
Cancel button
View Session
click the
Session
button
View User
click a use
name node
view a users
tablespaces,role
privileges and
object
privileges
View Chema
double-click the
Schema node
View Data
right-click the
table names
node and then
click the
View/Edit
contents menu
View Tablespace
click the
Tablespace
node
View Datafile
click the
Datafile node
Create User
right-click the
User node and
then click the
Create
enter the
name,password
select tablespace
Create User
double-click the
role privilege
which you want
to grant to the
user
Create User
double-click the
system privilege
which you want
to grant to the
user
Create Table:General
right-click the
Table node
under the
schema node
enter table
name
define columns
Create Table:Constraints
right-click the
Table node
under the
schema node
enter table
name
define columns
SELECT
INSERT
UPDATE
DELETE
CREATE
ALTER
DROP
RENAME
TRUNCATE
GRANT
REVOKE
Transaction Control:
COMMIT
ROLLBACK
SAVEPOINT
EMP Table
DEPT Table
Arithmetic Expressions
Operator Precedence
Operator Precedence
Using Parentheses
Duplicate Rows
Comparison Operators
Logical Operators
Rules of Precedence
Rules of Precedence
Rules of Precedence
ORDER BY Clause
Joining Tables
INSERT
INSERT INTO table_name
VALUES(value1,value2,...)
INSERT INTO dept VALUES
(50,'DEVELOPMENT','GUAYAQUIL')
COMMIT
UPDATE
UPDATE table_name
SET column_name = 'value'
[WHERE condition]
UPDATE dept
SET dname='SEGURIDAD'
WHERE dname='DEVELOPMENT'
COMMIT
DELETE
DELETE FROM table_name
[WHERE condition]
DELETE FROM dept
WHERE dname='SEGURIDAD'
COMMIT
PL/SQL
Benefits of PL/SQL
Gracias