Oracle
 sql >> Database >  >> RDS >> Oracle

oracolo - quali affermazioni devono essere commesse?

È necessario eseguire il commit/rollback dei comandi DML (Data Manipulation Language). Ecco un elenco di questi comandi.

Le istruzioni DML (Data Manipulation Language) vengono utilizzate per la gestione dei dati all'interno degli oggetti dello schema. Alcuni esempi:

INSERT - insert data into a table
UPDATE - updates existing data within a table
DELETE - deletes records from a table, the space for the records remain
MERGE - UPSERT operation (insert or update)
CALL - call a PL/SQL or Java subprogram
EXPLAIN PLAN - explain access path to data
LOCK TABLE - control concurrency