SóProvas


ID
828115
Banca
CESPE / CEBRASPE
Órgão
TJ-RO
Ano
2012
Provas
Disciplina
Banco de Dados
Assuntos

Assinale a opção correta acerca das ferramentas, dos recursos e das características do SGBD Oracle 10.

Alternativas
Comentários
  • Podemos defini-la como sendo uma tabela cuja organização de armazenamento seja uma variante da organização de uma chave-primária do tipo B-Tree (Nota 1). Inversamente a uma tabela regular (HOT - Heap Organized Table) a qual armazena dados de uma forma não ordenada, a IOT ordena os dados numa estrutura de índices B-Tree, classificando-os da mesma forma que uma chave primária.

    Leia mais em: Artigo da SQL Magazine 33 - IOT - Index Organized Table no Oracle http://www.devmedia.com.br/artigo-da-sql-magazine-33-iot-index-organized-table-no-oracle/6681#ixzz2eUpNlLYd
  • O flashback database não é usado para gerenciar e agendar a criação de backups. Veja na documentação da Oracle que esse comando é usado para retornar uma base de dados para um ponto específico no tempo ou para uma posição específica do log (redo logs);

    Propose:

    Use the FLASHBACK DATABASE command to rewind the database to a target time, SCN, or log sequence number.

    This command works by undoing changes made by Oracle Database to the datafiles that exist when you run the command. Flashback can fix logical failures, but not physical failures. Thus, you cannot use the command to recover from disk failures or the accidental deletion of datafiles.

    FLASHBACK DATABASE is usually much faster than a RESTORE operation followed by point-in-time recovery, because the time needed to perform FLASHBACK DATABASE depends on the number of changes made to the database since the desired flashback time. On the other hand, the time needed to do a traditional point-in-time recovery from restored backups depends on the size of the database.

    Flashback Database also has a number of uses in a Data Guard environment

    Prerequisites

    You can run this command from the RMAN prompt or from within a RUN command.

    RMAN must be connected as TARGET to a database, which must be Oracle Database 10g or later. The target database must be mounted with a current control file, that is, the control file cannot be a backup or re-created. The database must run in ARCHIVELOG mode.

    You cannot use FLASHBACK DATABASE to return to a point in time before the restore or re-creation of a control file. If the database control file is restored from backup or re-created, then all existing flashback log information is discarded.

    The flash recovery area must be configured to enable flashback logging. Flashback logs are stored as Oracle-managed files in the flash recovery area and cannot be created if no flash recovery area is configured. You must have enabled the flashback logging before the target time for flashback by means of the SQL statement ALTER DATABASE ... FLASHBACK ON. Query V$DATABASE.FLASHBACK_ON to see whether flashback logging has been enabled.

    The database must contain no online tablespaces for which flashback functionality was disabled with the SQL statement ALTER TABLESPACE ... FLASHBACK OFF.

    Ref: http://docs.oracle.com/cd/B28359_01/backup.111/b28273/rcmsynta023.htm.

    Bons estudos!


  • ·  Index Organized table(IOT): é um tipo de tabela que armazena dados em uma estrutura index B*tree.

    Na criação de uma tabela relacional faz com que os registros dessa tabela: sejam armazenados na própria estrutura física do índice da chave primária

  • cespe sendo cespe