SóProvas


ID
201496
Banca
FCC
Órgão
BAHIAGÁS
Ano
2010
Provas
Disciplina
Banco de Dados
Assuntos

Em um SGBD relacional, são pertinentes à linguagem de definição de dados e à linguagem de manipulação de dados, respectivamente:

Alternativas
Comentários
  • A) Drop Index (DDL) e Alter table (DDL)
    B) Create Index (DDL) e Insert Into (DML)
    C) Delete (DML) e Select (DML)
    D) Update (DML) e Drop Table (DDL)
    E) Insert into (DML) e Create Table (DDL)
  • Em Oracle:
    Data Definition Language
     (DDL) são comandos utilizados para estruturar(definir) um banco de dados ou esquema: 

    • CREATE - to create objects in the database
    • ALTER - alters the structure of the database
    • DROP - delete objects from the database
    • TRUNCATE - remove all records from a table, including all spaces allocated for the records are removed
    • COMMENT - add comments to the data dictionary
    • RENAME - rename an object

    Data Manipulation Language (DML) são comandos utilizados para manipular os dados do banco de dados:

    • SELECT - retrieve data from the a database
    • INSERT - insert data into a table
    • UPDATE - updates existing data within a table
    • DELETE - deletes all 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