多选题You run a script that completes successfully using SQL*Plus that performs these actions: 1. Creates a multitenant container database (CDB) 2. Plugs in three pluggable databases (PDBs) 3. Shuts down the CDB instance 4. Starts up the CDB instance using STARTUP OPEN READ WRITE Which two statements are true about the outcome after running the script?()AThe seed will be in mount state.BThe seed will be opened read-only.CThe seed will be opened read/write.DThe other PDBs will be in mount state.EThe other PDBs will be opened read-only.FThe PDBs will be opened read/write.

多选题
You run a script that completes successfully using SQL*Plus that performs these actions: 1. Creates a multitenant container database (CDB) 2. Plugs in three pluggable databases (PDBs) 3. Shuts down the CDB instance 4. Starts up the CDB instance using STARTUP OPEN READ WRITE Which two statements are true about the outcome after running the script?()
A

The seed will be in mount state.

B

The seed will be opened read-only.

C

The seed will be opened read/write.

D

The other PDBs will be in mount state.

E

The other PDBs will be opened read-only.

F

The PDBs will be opened read/write.


参考解析

解析: 暂无解析

相关考题:

You run a script that completes successfully using SQL*Plus that performs these actions:1. Creates a multitenant container database (CDB)2. Plugs in three pluggable databases (PDBs)3. Shuts down the CDB instance4. Starts up the CDB instance using STARTUP OPEN READ WRITEWhich two statements are true about the outcome after running the script?()A. The seed will be in mount state.B. The seed will be opened read-only.C. The seed will be opened read/write.D. The other PDBs will be in mount state.E. The other PDBs will be opened read-only.F. The PDBs will be opened read/write.

You are the network administrator for Ezonexam.com.You need to install Windows 2000 Professional on 75 new computers in your network. You use Setup Manager wizard to configure a fully automated installation script. file. You test the unattended installation using the fully automated installation script. file. When the installation completes you realize that the Windows 2000 Professional CD does not contain the driver for the Plug and Play video adapter used by the new computers.You want to include the correct driver for the video adapter when installing Windows 2000 Professional.What should you do? (Each correct presents part of the solution. Select three.)A.Run sysprep.exe with the -pnp parameter.B.In the UserData section of the fully automated installation script. file, specify the ProductID variable.C.In the Unattended section of the fully automated installation script. file, set the Oem PnP Drivers Path property to the location of the video driver files.D.In the Unattended section of the fully automated installation script. file, set the Oem Preinstall property to Yes.E.Copy the video driver to the i386\$OEM$\$1\VidDriver.F.Copy the video driver to the i386\$$\System32.

You have a computer that runs Windows Vista. You create a dial-up connection.You need to run a custom script each time you connect by using the dial-up connection.What should you do?() A.AB.BC.CD.D

You install Windows Vista on a new computer by using the retail installation media.You install a new hardware device. You are not prompted for any drivers and the installation completes successfully.You discover that an updated driver is available for the hardware device.You need to install the updated driver.What should you do?()A.AB.BC.CD.D

What can be done to enable the debug information for functions to be displayed when using‘ksh -x’to debug a script?()A、Run the script using ‘ksh -fx’.B、Run the script using ‘ksh -a function -x’.C、Edit the script and add ‘set -x’ at the beginning.D、Edit the script and add ‘set -x’ at the beginning of each function.

You have created a script in the recovery catalog called backup_database. Which of the following commands would successfully execute that script?()  A、 run { open script backup_database; run script backup_database }B、 run { engage script backup_database; }C、 run { run script backup_database; }D、 Run { execute script backup_database; }E、 The name backup_database is an invalid name for an RMAN script. Trying to run it from RMAN would result in an error.

You scheduled a backup by using the Schedule Backup option in Oracle Enterprise Manager. Which statement about the script created by Oracle Enterprise Manager is true? ()A、It is a SQL script.B、It is a PL/SQL file.C、It is an operating system (OS) file.D、It is a Recovery Manager (RMAN) script

Given the script   create script db_backup_datafile_script  {backup datafile and 1, and2 plus archivelog delete input;} Run {execute script db_backup_datafile_script using 2;}   What is the result of running this command?()   A、 The script will fail since you instructed RMAN to back up only one datafile rather than twoB、 The script will successfully back up datafile 3 without errorC、 The script will fail since it uses a substitution variable which is not supportedD、 The execute script command will prompt for the value of and2 since it’s not included in the commandE、 The script will fail because you cannot use the plus archivelog command when backing up

You are using the backup scheduler in Enterprise Manager (EM) to schedule a backup of your database. Which type of script does the backup scheduler generate?()A、SQL scriptB、PL/SQL scriptC、Operating System (OS) scriptD、Enterprise Manager (EM) scriptE、Recovery Manager (RMAN) script

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 an internal application which uses Analysis Services and Reporting Services. You use the application on the basis of SQL Server 2008. According to the requirement of company security policy, the surface area for all the deployed components of SQL Server 2008 should be configured. You have to implement the security policy and devise a method to evaluate the security policy against other database servers. What should you do?()  A、You should create policies based on the appropriate facets. Apply the policies against a server group. The server group includes the database servers that need to be configured B、You should create a Transact-SQL script based on the sp_configure stored procedure. Use a configuration server to run the script against a server group that includes the database servers that need to be configured C、You should edit the RSReportServer.config configuration file. Distribute the file to all database servers that need to be configured D、You should analyze your database servers by using the SQL Server Best Practices Analyzer (BPA). Implement the recommendations of the BPA

You administer 80 computers that run Windows 7. The computers have static IP addresses. You need tochange the static IP addresses on all the computers by using a startup script.  Which command should youinclude in the startup script ?()A、Ipconfig.exeB、Nbtstat.exeC、Netstat.exeD、Netsh.exe

You have a DNS server named Server1 that runs Windows Server 2003 Service Pack 2 (SP2). You create a primary zone on Server1 for contoso.com.You run the DNS simple query test and recursive query test. The simple query test completes successfully, but the recursive query test fails.You need to ensure that the recursive query test can complete successfully.  What should you do on Server1?()A、Clear the cache.B、Disable recursion.C、Enable access to the Internet.D、Configure a reverse lookup zone.

You have a Windows PowerShell script that contains the following code:   import-csv Accounts.csv | Foreach {New-ADUser -Name $_.Name -Enabled $true  -AccountPassword $_.password}     When you run the script, you receive an error message indicating that the format of the password  is incorrect. The script fails.     You need to run a script that successfully creates the user accounts by using the password  contained in accounts.csv.     Which script should you run()A、import-csv Accounts.csv Foreach {New-ADUser -Name $_.Name -Enabled $true - AccountPassword (ConvertHost-B、import-csv Accounts.csv Foreach {New-ADUser -Name $_.Name -Enabled $true - AccountPassword (ConvertTo-C、import-csv Accounts.csv Foreach {New-ADUser -Name $_.Name -Enabled $true - AccountPassword (Read-ToD、import-csv Accounts.csv Foreach {New-ADUser -Name $_.Name -Enabled $true - AccountPassword (Read-Host

Your network contains an Active Directory domain. The domain contains two domain controllers  named DC1 and DC2.   You perform a full backup of the domain controllers every night by using Windows Server Backup. You update a script in the SYSVOL folder.   You discover that the new script fails to run properly.   You need to restore the previous version of the script in the SYSVOL folder. The solution must minimize  the amount of time required to restore the script.  What should you do first()A、Run the Restore-ADObject cmdlet.B、Restore the system state to its original location.C、Restore the system state to an alternate location.D、Attach the VHD file created by Windows Server Backup.

You need to copy the configuration of an Edge Transport Server.You run the Export-edgeconfig.ps1 script.What other action should you perform?()A、Export-exchange certificateB、Export-transport rule connectionC、Backup system stateD、You must log on by using an account that is a member of the local Administrators group on that computer

You need to make structural changes to the cube. You also need to ensure that appropriate aggregations are created after the changes are made. What should you do?()A、Record a weeks user activity by using SQL Profiler. Apply structural changes. Replay the activity and then run the Usage Based Optimization Wizard.B、Apply structural changes. Run the Database Engine Tuning Advisor.C、Apply structural changes. Run the Usage Based Optimization Wizard.D、Record a weeks user activity by using SQL Profiler. Apply structural changes. Run the Database Engine Tuning Advisor.

You deploy two Windows Server 2008 R2 Hyper-V servers. You manage the servers by using Microsoft System Center Virtual Machine Manager (VMM) 2008 R2. You need to ensure that you can restore virtual machines (VMs) in the event of a hardware failure. What should you do?()A、Use a PowerShell script to create a snapshot of each VM. Run the script every 60 minutes on each Hyper-V serverB、Use a PowerShell script to create a checkpoint of each VM. Run the script every 60 minutes on each Hyper-V serverC、Use a PowerShell script to pause, export, and start each VM, and then to copy the export to the opposite Hyper-V server. Run the script once per day on each Hyper-V serverD、Use a PowerShell script to shut down, export, and start each VM, and then to copy the export to the opposite Hyper-V server. Run the script once per day on each Hyper-V server

单选题You are using the backup scheduler in Enterprise Manager (EM) to schedule a backup of your database. Which type of script does the backup scheduler generate?()ASQL scriptBPL/SQL scriptCOperating System (OS) scriptDEnterprise Manager (EM) scriptERecovery Manager (RMAN) script

单选题You use a Windows 2000 Professional computer to run a weekly report. When the report is running on the computer, another task stops responding and eventually times out. When you run only the other task, the task completes successfully. You use Task Manager to view your system resources. In the weekly report, the processor time counter reads a high value. You want to resolve the problem by using Task Manager. What should you do?()AUpgrade the RAM of this computer.BAdd another hard disk to the computer and execute the report application from that hard drive.CSplit the paging file across two physical disks.DDecrease the base priority of the weekly report task.

单选题You are using Enterprise Manager to schedule backups for your database.  Which type of script wouldbe generated by the backup scheduler()AXML scriptBPL/SQL scriptCOperating system scriptDRecovery Manager (RMAN) script

多选题You run a script that completes successfully using SQL*Plus that performs these actions: 1. Creates a multitenant container database (CDB) 2. Plugs in three pluggable databases (PDBs) 3. Shuts down the CDB instance 4. Starts up the CDB instance using STARTUP OPEN READ WRITE Which two statements are true about the outcome after running the script?()AThe seed will be in mount state.BThe seed will be opened read-only.CThe seed will be opened read/write.DThe other PDBs will be in mount state.EThe other PDBs will be opened read-only.FThe PDBs will be opened read/write.

单选题You are using Enterprise Manager to schedule backups for your database.  Which type of script would begenerated by the backup scheduler()AXML scriptBPL/SQL scriptCOperating system scriptThis document was downloaded from = http://www.amaderforum.comDRecovery Manager (RMAN) script

多选题You issue this RMAN command:   RMAN create script Level0Backup {   backup   incremental level 0   format ‘/u01/db01/backup/%d_%_Sp’   fileperset 5   (database include current controlfile);   sql ‘alter database archive log current’;   }  Which three statements are true about the Level0Backup script you just created?()AThe script is stored only in the control file.BThe script is stored only in the recover catalog.CThe script can be executed only by using the RMAN RUN command.DThe commands of the script can be displayed with the LIST command.EThe commands of the script can be displayed with the PRINT command.FThe commands of the script can be displayed with the REPORT command.

单选题You scheduled a backup by using the Schedule Backup option in Oracle Enterprise Manager. Which statement about the script created by Oracle Enterprise Manager is true? ()AIt is a SQL script.BIt is a PL/SQL file.CIt is an operating system (OS) file.DIt is a Recovery Manager (RMAN) script

单选题You have a Windows PowerShell script that contains the following code:   import-csv Accounts.csv | Foreach {New-ADUser -Name $_.Name -Enabled $true -AccountPassword  $_.password}   When you run the script, you receive an error message indicating that the format of the password is  incorrect. The script fails.   You need to run a script that successfully creates the user accounts by using the password contained in  accounts.csv.   Which script should you run()Aimport-csv Accounts.csv Foreach {New-ADUser -Name $_.Name -Enabled $true -AccountPassword convertTo-SecureString Password -AsPlainText -force)}Bimport-csv Accounts.csv Foreach {New-ADUser -Name $_.Name -Enabled $true -AccountPassword convertTo-SecureString $_.Password -AsPlainText -force)}Cimport-csv Accounts.csv foreach {New-ADUser -Name $_.Name -Enabled $true -AccountPassword Read-Host -AsSecureString Password)}Dimport-csv Accounts.csv Foreach {New-ADUser -Name $_.Name -Enabled $true -AccountPassword (Read-Host -AsSecureString $_.Password)}

单选题Given the script   create script db_backup_datafile_script  {backup datafile and 1, and2 plus archivelog delete input;} Run {execute script db_backup_datafile_script using 2;}   What is the result of running this command?()A The script will fail since you instructed RMAN to back up only one datafile rather than twoB The script will successfully back up datafile 3 without errorC The script will fail since it uses a substitution variable which is not supportedD The execute script command will prompt for the value of and2 since it’s not included in the commandE The script will fail because you cannot use the plus archivelog command when backing up

单选题You have created a script in the recovery catalog called backup_database. Which of the following commands would successfully execute that script?()A run { open script backup_database; run script backup_database }B run { engage script backup_database; }C run { run script backup_database; }D Run { execute script backup_database; }E The name backup_database is an invalid name for an RMAN script. Trying to run it from RMAN would result in an error.

单选题You administer 80 computers that run Windows 7. The computers have static IP addresses. You need tochange the static IP addresses on all the computers by using a startup script.  Which command should youinclude in the startup script ?()AIpconfig.exeBNbtstat.exeCNetstat.exeDNetsh.exe