Mysql> USE sakila; LOAD DATA INFILE 'sakila2013.sql';
Shell> mysql –u root –p sakila sakila2013.sql
Shell> mysql import –u root –p sakila sakila2013.sql
Shell> mysql –u root -p –e 'use sakila; source sakila2013.sql'
Shell> mysql –u root –p –silent < sakila2013.sql
第1题:
SQ L*Loader is a utility that can perform which two tasks?()
第2题:
You have table 'apps','userdata' on server that uses MyISAM storage engine. You want to transfer this data to server but use InnoDB engine instead. You execute the following commands: ServerB commands: Shell> mysqldump –u root –h server –no-data apps userdata | mysql –u root –p apps Shell> mysql –u root –p –h server –e 'ALTER TABLE 'apps','userdata' ENGINE=InnoDB;' Shell> mysqldump –u root –p –h server –no-create-info –order-by-primary apps userdata | mysql –u root –p apps What effect does the – order-by-primary argument have on the mysqldump command?()
第3题:
Examine the following command used to perform incremental level 0 backup: RMAN> BACKUP INCREMENTAL LEVEL 0 DATABASE; To enable the block change tracking, after the incremental level 0 backup you issued the following command: SQL> ALTER DATABASE ENABLE BLOCK CHANGE TRACKING USING FILE ’/mydir/ rman_change_track.f’;To perform incremental level 1 cumulative backup, you issued the following command: RMAN> BACKUP INCREMENTAL LEVEL 1 CUMULATIVE DATABASE; Which two statements are true in the above situation?()
第4题:
You lost a data file that belongs to an index tablespace in your database, which operates in ARCHIVELOG mode. Loss of the data file resulted in increased response time on your queries. Which two options would you use to solve this problem? ()
第5题:
You want to migrate your existing non/x7fASM files to ASM files for the database PROD. Which method or command would you use to accomplish this task?()
第6题:
Two data files have been deleted at the operating system level by accident. Your database is running in ARCHIVELOG mode and online backups are taken nightly. One of the data files that has been deleted belongs to the USERS tablespace on the other belongs to the SYSTEM tablespace. How can you recover from this situation?()
第7题:
You work in a company which is named Wiikigo Corp. The company uses SQL Server 2008. You are the administrator of the company database. Now you are in charge of a SQL Server 2008 instance. You are going to use the data collector to gather performance data periodically on all instances. You must store all collected data in the same database. This database is hosted on a single instance. Every five hours, you have to collect and load performance data in the management data warehouse. Which data collection process should you implement? ()
第8题:
Mysql> USE sakila; LOAD DATA INFILE 'sakila2013.sql';
Shell> mysql –u root –p sakila sakila2013.sql
Shell> mysql import –u root –p sakila sakila2013.sql
Shell> mysql –u root -p –e 'use sakila; source sakila2013.sql'
Shell> mysql –u root –p –silent < sakila2013.sql
第9题:
the CONVERT command of RMAN
Data Pump Export and Import into the same database
conventional export and import into the same database
the BACKUP DATABASE and RESTORE DATABASE commands of RMAN
the BACKUP AS COPY DATABASE and SWITCH DATABASE TO COPY command of RMAN
第10题:
Mysql> USE sakila; LOAD DATA INFILE 'sakila2013.sql';
Shell> mysql –u root –p sakila sakila2013.sql
Shell> mysql import –u root –p sakila sakila2013.sql
Shell> mysql –u root -p –e 'use sakila; source sakila2013.sql'
Shell> mysql –u root –p –silent < sakila2013.sql
第11题:
list database backup
report database backup
list backup of database
list summary backup
report backup of database
第12题:
the CONVERT command of RMAN
Data Pump Export and Import into the same database
conventional export and import into the same database
the BACKUP DATABASE and RESTORE DATABASE commands of RMAN
the BACKUP AS COPY DATABASE and SWITCH DATABASE TO COPY command of RMAN
第13题:
Which statement is true about a whole consistent database backup on a database running in ARCHIVELOG mode()
第14题:
In which two scenarios do you use SQL* Loader to load data?()
第15题:
The database is running in NOARCHIVELOG mode. A data file is lost. Which two are valid options for recover?()
第16题:
You want to migrate your existing non-ASM files to ASM files for the database PROD. Which method or command would you use to accomplish this task?()
第17题:
What are three facts about backups with mysqldump?()
第18题:
You work in a company which is named Wiikigo Corp. The company uses SQL Server 2008. You are the administrator of the company database. Now you are in charge of a SQL Server 2008 instance. There is a database named DB1 in the instance. In the database, a small percentage of data is modified everyday. Ever day in the morning, you have to create a read-only copy of the database for reporting purposes and make sure that you use as little disk space as possible. In the options below, which strategy should you use? ()
第19题:
The block change tracking data will be used only from the next incremental 0 backup.
The incremental backup will use change tracking data for accomplishing the backup.
The incremental backup will not use change tracking data for accomplishing the backup.
The block track file will scan all the blocks and create bitmap for all the blocks backed up in the level 0 backup.
第20题:
$ mysqladmin – u root – p – h localhost test – restore /tmp/t1.sql
Mysql> INSERT INTO t1 VALUES FROM '/tmp/t1.sql'
$ mysql – u root – p – h localhost test < /tmp/t1.sql
Mysql> LOAD DATA INFILE '/tmp/t1.sql' INTO TABLE t1
$ mysqlinport – u root – p – h localhost test /tmp/t1.sql
第21题:
Transform the data while it is being loaded into the database.
Use transparent parallel processing without having to split the external data first.
Load data into multiple tables during the same load statement.
Generate unique sequential key values in specified columns.
第22题:
It exports tables with the most indexes first to assist with import speeds
It ensures that unique indexes have no conflicts when the data is dumped
It orders by primary key to assist in speeding up importing to InnoDB tables
It must be specified so index data is dumped correctly when –on-create-info is used
第23题:
The backup will consist of used data blocks only.
The database must be shut down to accomplish the backup.
The backup can be accomplished without shutting down the database.
The backup will contain all database files that have never been backed up.
第24题:
Can back up a remote database server
Allow a consistent backup to be taken
Are always faster to restore than binary backups
Are able to back up specific items within a database
Create automatically compressed backups
Will lock all storage engines for duration of backup