Use of soft links for database directories on the same physical disk
Use of delay_key_write=ON for batch index update
Allocation of RAM to the buffer pool such that more of the data can fit in RAM
Placement of InnoDB log files and datadir on separate physical disks
Use of separate directories on the same physical disk for log files and data files
第1题:
第2题:
事务的性质:()(Atomicity)、()(Consistency)、()(Isolation)、()(Durability)。
第3题:
A HDD is almost full and constantly reads and writes data. Which of the following tools may repair files on the HDD?()
第4题:
Sometimes performance is more important than availability (e.g., in cases where the data can be easily re-created). Which of the following is the appropriate disk configuration for an application that requires faster writes over availability?()
第5题:
Full Atomicity, Consistency, Isolation, Durability (ACID) compliance is a necessity for a new application, which heavily reads and writes data. This requires the following config file options: Sync_binlog=1 Innodb_flush_log_at_trx_commit=1 Innodb_doublewrite=1 However, this configuration is expected to introduce disk I/O overhead. What three changes will reduce disk I/O overheads?()
第6题:
You develop a Web application that writes data to a file on a server. You restrict access to the file to specific Windows users. The Web application runs as CONTOSO/ASPNET. You deny anonymous access to the application in IIS. You add the following XML segment in the Web.config file.You need to ensure that the application meets the following requirements:It must impersonate the user when it writes data to the file.It must run as CONTOSO/ASPNET when a user does not access the file. Which two actions should you perform? ()
第7题:
事务的特性有()。
第8题:
Create a new application pool and add the new application to the pool.
Configure the IIS 6.0 to run the WWW service in the IIS 5.0 isolation mode.
Configure the new application to use the .NET Framework version 2.0 in the IIS 6.0 Manager.
Set autoConfig=false on the <processModel> property in the machine.config file.
Disable the Recycle worker processes option in the Application Pool Properties dialog box.
第9题:
Configure the SqlMembershipProvider in the web.config file.
Configure the SqlProfileProvider in the web.config file.
Create an ASP.NET page that contains a default CreateUserWizard control to create a new user account.
Create an ASP.NET page that contains a custom form that collects the user information and then uses the Membership.CreateUser method to create a new user account.
第10题:
ARCn
DBWn
CKPT
LGWR
PMON
SMON
第11题:
原子性(Atomicity)
一致性(Consistency)
隔离性(1solation)
可生存性(Survivability)
持续性(Durability)
第12题:
Use the following XML segment in the Web.config file. <identity impersonate=false/>
Use the following XML segment in the Web.config file. <identity impersonate=true/>
Use the following code segment to access the file. Dim wp As WindowsPrincipal = _CType(HttpContext.Current.User, WindowsPrincipal) Dim wi As WindowsIdentity = WindowsIdentity.GetCurrent() Dim wic As WindowsImpersonationContext = wi.Impersonate()' Access the file herewic.Undo()
Use the following code segment to access the file. Dim wi As WindowsIdentity = WindowsIdentity.GetCurrent()Dim wic As WindowsImpersonationContext = _WindowsIdentity.Impersonate(wi.Token)' Access the file herewic.Undo()
第13题:
第14题:
You develop a Web application that writes data to a file on a server. You restrict access to the file to specific Windows users. The Web application runs as CONTOSO/ASPNET. You deny anonymous access to the application in IIS. You add the following XML segment in the Web.config file. You need to ensure that the application meets the following requirements: 1. It must impersonate the user when it writes data to the file 2. It must run as CONTOSO/ASPNET when a user does not access the file. Which two actions should you perform?()
第15题:
Sometimes performance is more important than availability (e.g., in cases where the data can be easily re-created). Which of the following is the appropriate disk configuration for an application that requires faster writes over availability()
第16题:
Which background process reads the redo log buffer and writes it to a file?()
第17题:
You create a Microsoft ASP.NET Web application by using the Microsoft .NET Framework version 3.5. You deploy the application on a Microsoft IIS 6.0 Web server. The server runs on a worker process isolation mode, and it hosts the .NET Framework version 1.1 Web applications. When you attempt to browse the application, the following error message is received: "It is not possible to run different versions of ASP.NET in the same IIS process. Please use the IIS Administration Tool to reconfigure your server to run the application in a separate process." You need to ensure that the following requirements are met: all the applications run on the server all the applications remain in process isolation mode all the applications do not change their configuration. Which two actions should you perform?()
第18题:
You are implementing an ASP.NET Web application. Users will authenticate to the application with an ID. The application will allow new users to register for an account. The application will generate an ID for the user based on the users full name. You need to implement this registration functionality. Which two actions should you perform?()
第19题:
Use of soft links for database directories on the same physical disk
Use of delay_key_write=ON for batch index update
Allocation of RAM to the buffer pool such that more of the data can fit in RAM
Placement of InnoDB log files and datadir on separate physical disks
Use of separate directories on the same physical disk for log files and data files
第20题:
Create a new application pool and add the new application to the pool.
Configure the IIS 6.0 to run the WWW service in the IIS 5.0 isolation mode.
Configure the new application to use the .NET Framework version 2.0 in the IIS 6.0 Manager.
Set autoConfig=false on the
Disable the Recycle worker processes option in the Application Pool Properties dialog box.
第21题:
第22题:
RAID-1
RAID-5
RAID-0+1
RAID-0
第23题:
Use the following XML segment in the Web.config file.<identity impersonate=false/>
Use the following code segment to access the file. WindowsPrincipal wp =(WindowsPrincipal)HttpContext,Current.User;WindowsIdentity wt = (WindowsIdentity)wp.Idetity;WindowsImpersonationContext wic = wi.Impersonate();// Access The file herewic.Undo();
Use the following code segment to access the file. WindowsIdentity wi = WindowsIdetity.GetCurrent();WindowsImpersonationContext wic = WindowsIdentity.Impersonate(wi.Token);// Access the file herewic.Undo();