Logo Passei Direto
Buscar

Química

Outros
Which three statements are true about indexes and their administration in an Oracle database?
A. An INVISIBLE index is not maintained when Data Manipulation Language (DML) is performed on its underlying table.
B. An index can be created as part of a CREATE TABLE statement.
C. A DROP INDEX statement always prevents updates to the table during the drop operation.
D. A UNIQUE and non-unique index can be created on the same table column.
E. A descending index is a type of function-based index.
F. If a query filters on an indexed column then it will always be used during execution of the query.
User badge image
Estudo Através de Questões

há 3 meses

Respostas

User badge image

Ed Verified user icon

há 3 meses

Vamos analisar cada uma das afirmações sobre índices e sua administração em um banco de dados Oracle: A. An INVISIBLE index is not maintained when Data Manipulation Language (DML) is performed on its underlying table. - Verdadeira. Um índice INVISIBLE não é utilizado durante operações DML, portanto, não é mantido. B. An index can be created as part of a CREATE TABLE statement. - Verdadeira. É possível criar um índice ao mesmo tempo em que se cria uma tabela usando a instrução CREATE TABLE. C. A DROP INDEX statement always prevents updates to the table during the drop operation. - Falsa. A operação de DROP INDEX não impede atualizações na tabela; ela apenas remove o índice. D. A UNIQUE and non-unique index can be created on the same table column. - Verdadeira. É possível ter um índice UNIQUE e um índice não único na mesma coluna de uma tabela. E. A descending index is a type of function-based index. - Falsa. Um índice em ordem decrescente não é considerado um índice baseado em função; é apenas um tipo de índice que organiza os dados em ordem decrescente. F. If a query filters on an indexed column then it will always be used during execution of the query. - Falsa. Embora um índice possa ser usado para otimizar a consulta, não é garantido que ele será sempre utilizado, pois o otimizador de consultas pode decidir não usá-lo com base em várias condições. Portanto, as três afirmações verdadeiras são: A, B e D. A alternativa correta é: A, B e D.

Essa resposta te ajudou?

0
Dislike0

Ainda com dúvidas?

Envie uma pergunta e tenha sua dúvida de estudo respondida!

Essa pergunta também está no material:

Mais perguntas desse material

Mais conteúdos dessa disciplina