Activating the MySQL Enterprise thread pool plugin
Relocating your data and log files to separate storage devices
Disconnecting idle localhost client sessions
Implementing storage engine data compression options
第1题:
The validate_password plugin is loaded and displays the following settings in global variables: Mysql> SHOW VARIABLES LIKE ‘validate_password%’;When attempting to set your password, you get the following error: Mysql> SET PASSWORD = PASSWORD (‘Hoverl@%’);ERROR 1819 (HY000): Your password does not satisfy the current policy requirements What is the cause of the error?()
A.The password is eight characters long, but needs to exceed validate_password_length to be valid
B.All of the MEDIUM password policy requirements have not been honored
C.The password matches a substring Hover as a dictionary word
D.The password does not match the validate_passoword_number_count requirement
E.There is no dictionary file defined, so password validation cannot work as expected
第2题:
Consider the Mysql Enterprise Audit plugin. A CSV file called data.csv has 100 rows of data. The stored procedure prepare_db ( ) has 10 auditable statements.You run the following statements in the mydb database: Mysql> CALL prepare_db ( );Mysql> LOAD DATA INFILE ‘/tmp/data.cav‘ INTO TABLE mytable; Mysql> SHOW TABLES;How many events are added to the audit log as a result of the preceding statements?()
A.12; only top-level statements and stored procedure events are logged
B.111; top-level statements and all lower-level statements are logged
C.3; only the top-level statements are logged
D.102; top-level statements are logged, but LOAD DATA INFILE is logged as a separate event
第3题:
Which statement is true regarding the Archiver (ARCn) process,archived log files,and recovery? ()
第4题:
You execute the following statement in a Microsoft Windows environment. There are no conflicts in the path name definitions. C: /> mysqld – install Mysql56 – defaults – file = C :/my –opts.cnf What is the expected outcome?()
第5题:
While reviewing the MySQL error log, you see occasions where MySQL has exceeded the number of file handles allowed to it by the operating system. Which method will reduce the number of file handles in use?()
第6题:
The RPM installation script sets a default password of password for new installations
The local root user must log in with a blank password initially: mysql –u root –p
New security measures mean that the mysql_secure_installation script must be run first on all new installations
The mysql_install_bd post-installation script used – random-password
第7题:
12; only top-level statements and stored procedure events are logged
111; top-level statements and all lower-level statements are logged
3; only the top-level statements are logged
102; top-level statements are logged, but LOAD DATA INFILE is logged as a separate event
第8题:
Activating the MySQL Enterprise thread pool plugin
Relocating your data and log files to separate storage devices
Disconnecting idle localhost client sessions
Implementing storage engine data compression options
第9题:
Re-install the audit plugin
Execute the command FLUSH LOGS
Execute the command SET GLOBAL audit_log_fiush= ON
Move or rename the existing audit.log file
第10题:
It deletes all binary log files, except 'mysql-in.010'
It deletes all binary log files up to and including 'mysql-bin.010'
It deletes all binary log files before 'mysql-bin.010'
It deletes all binary log files after 'mysql-bin.010'
第11题:
Mysqlaccess
Mysqldump
Mysqlshow
Mysqlslow
Mysqldumpslow
第12题:
A database backup, combined with archived redo log files, guarantees that all committed data can be recovered to the point of failure.
During recovery the ARCn background process copies its redo entries identified for recovery by the control file to the data files.
After each write to an archived log, the mandatory background process ARCn writes its log sequence number and the first and last SCN number within the log sequence to the control file.
At database recover time, and archived redo log is uniquely identified for recovery use by its redo thread number and destination ID number retrieved from the control file.
第13题:
You execute the following statement in a Microsoft Windows environment. There are no conflicts in the path name definitions.C: \> mysqld – install Mysql56 – defaults – file = C :\my –opts.cnf What is the expected outcome?()
A.Mysql is installed as the Windows service name Mysql56, and uses c: \my-opts.cnf as the configuration file
B.An error message is issued because – install is not a valid option for mysqld
C.A running Mysql 5.6 installation has its runtime configuration updated with the server variables set in c: \my-opts.cnf
D.Mysqld acts as an MSI installer and installs the Mysql 5.6 version, with the c: \my-opts.cnf configuration file
第14题:
Consider the Mysql Enterprise Audit plugin. A CSV file called data.csv has 100 rows of data. The stored procedure prepare_db ( ) has 10 auditable statements. You run the following statements in the mydb database: Mysql> CALL prepare_db ( ); Mysql> LOAD DATA INFILE '/tmp/data.cav' INTO TABLE mytable; Mysql> SHOW TABLES; How many events are added to the audit log as a result of the preceding statements?()
第15题:
Consider the MySQL Enterprise Audit plugin, You add the following lines to the my.cnf configuration tile: [mysqld] Plugin-load=audit_log.so Audit-log=FORCE_PLUS_PERMANENT You attempt to start up the MySQL service and notice that it fails to start. Which two statements would explain why the service did not start?()
第16题:
When performing incomplete recovery using UNTIL SEQUENCE with RMAN, which two pieces of information are required?()
第17题:
You install a copy of Mysql 5.6.13 on a brand new Linux server by using RPM packages. The server starts successfully as verified by the following commands: $ pidof mysqld 3132 $tail – n2 /var/lib.mysql/hostname.err 2013-08-18 08:18:38 3132 [Note] /usr/sbin/mysqld:ready for connections. Version: '5.6.13-enterprise-commercial-advaced' socket:'/tmp/mysql.sock' port; 3306 Mysql Enterprise Server – Advanced Edition (Commercial) You attempt to log in as the root user with the following command: $mysql – u root ERROR 1045 (28000): Access denied for user 'root'@'localhost' (using password: NO) Which statement is true about this scenario?()
第18题:
–skip-networking, to prohibit access from remote locations
–reset-grant-tables, to start the server with only the mysql database accessible
–read-only,to set all data to read-only except for super users
–old-passwords, to start Mysql to use the old password format while running without the grant tables
第19题:
MySQL requires correct file ownership while remaining secure
MySQL needs to be run as the root user, but file cannot be owned by it
MySQL cannot be run as the root user
第20题:
Mysql is installed as the Windows service name Mysql56, and uses c: /my-opts.cnf as the configuration file
An error message is issued because – install is not a valid option for mysqld
A running Mysql 5.6 installation has its runtime configuration updated with the server variables set in c: /my-opts.cnf
Mysqld acts as an MSI installer and installs the Mysql 5.6 version, with the c: /my-opts.cnf configuration file
第21题:
All system users have access to the MySQL server via—login path local
login-path can be used only for MySQL servers running on a local machine
login-path allows you to provide login credentials without passing clear text passwords on the command line
When using – login-path to connect to a remote MySQL server, the remote server version must be 5.6 or later
第22题:
The password is eight characters long, but needs to exceed validate_password_length to be valid
All of the MEDIUM password policy requirements have not been honored
The password matches a substring Hover as a dictionary word
The password does not match the validate_passoword_number_count requirement
There is no dictionary file defined, so password validation cannot work as expected
第23题:
Shell> mysqladmin –u root –p shutdown
Shell> nmc mysql shutdown
Mysql> STOP PROCESS mysqld
Shell> /etc/init.d/mysql stop
Shell> service mysql safe_exit
Shell> pkill –u mysql mysqld_safe
Shell> net stop mysql