QUESTION 11
You administer a SQL Server 2008 infrastructure.
You plan to design a maintenance strategy for a mission-critical database that includes a large table named Orders. The design plan includes index maintenance operations.
You must design the strategy after considering the following facts:
* The Orders table in the database is constantly accessed.
* New rows are frequently added to the Orders table.
* The average fragmentation for the clustered index of the Orders table is less than 2 percent.
* The Orders table includes a column of the xml data type.
You need to implement the strategy so that the performance of the queries on the table is optimized.
What should you do?
A. Drop the clustered index of the Orders table.
B. Rebuild the clustered index of the Orders table offline once a month.
C. Reorganize the clustered index of the Orders table by decreasing the fill factor.
D. Exclude the clustered index of the Orders table from scheduled reorganizing or rebuilding operations.
Answer: D
QUESTION 12
You administer a SQL Server 2008 infrastructure.
An instance contains a database that includes a large table named OrderDetails. The application queries only execute DML statements on the last three months data. Administrative audits are conducted monthly on data older than three months.
You discover the following performance problems in the database. The performance of the application queries against the OrderDetail table is poor. The maintenance tasks against the database, including index defragmentation, take a long time.
You need to resolve the performance problems without affecting the server performance.
What should you do?
A. Create a database snapshot for the OrderDetails table every three months. Modify the queries to use
the current snapshot.
B. Create an additional table named OrderDetailsHistory for data older than three months. Partition the
OrderDetails and OrderDetailsHistory tables in two parts by using the OrderDatecolumn. Create a
SQL Server Agent job that runs every month and uses the ALTER TABLE…SWITCH Transact-SQL
statement to move data that is older than three months to the OrderDetailsHistory table.
C. Create an additional table named OrderDetailsHistory for data older than three months. Create a SQL
Server Agent job that runs the following Transact-SQL statement every month.
INSERT INTO OrderDetailsHistory SELECT * FROM OrderDetails WHERE DATEDIFF( m,OrderDate,
GETDATE ()) > 3
D. Create an additional table named OrderDetailsHistory for data older than three months. Use the following Transact-SQL statement. CREATE TRIGGER trgMoveData ON OrderDetails AFTER INSERT AS INSERT
INTO OrderDetailsHistory SELECT * FROM OrderDetails WHERE DATEDIFF( m,OrderDate,GETDATE
()) > 3
Answer: B
QUESTION 13
You administer a SQL Server 2008 infrastructure.
Humongous Insurance has 20 branch offices that store customer data in SQL Server 2008 databases. Customer data that is stored across multiple database instances has to be security compliant.
You plan to design a strategy for custom policies by using the Policy-Based Management feature. Custom policies are in XML format.
The strategy must meet the following requirements:
* Custom policies are distributed to all instances.
* The policies are enforced on all instances.
You need to implement the strategy by using the least amount of administrative effort.
What should you do?
A. Use a configuration server.
B. Use the Distributed File System Replication service.
C. Distribute the policies by using Group Policy Objects.
D. Distribute the policies by using the Active Directory directory service
Answer: A
QUESTION 14
You administer a SQL Server 2008 infrastructure.
Developers in your company have rights to author policies. A test server is used to develop and test the policies. The Policy-Based Management feature generates SQL Server Agent alerts when a policy is violated.
The developers are able to create and modify policies, but are unable to test policy violation alerts.
You need to grant the necessary permission to the developers to test the policies. You also need to comply with the least privilege principle when you grant the permission.
What should you do?
A. Add the developers to the sysadmin server role.
B. Grant the ALTER TRACE permission to the developers.
C. Add the developers to the PolicyAdministratorRole role in the MSDB database.
D. Grant the EXECUTE permission on the sys.sp_syspolicy_execute_policy stored procedure to the developers.
Answer: B
QUESTION 15
You administer a SQL Server 2008 infrastructure. You plan to design a solution to obtain hardware configurations, such as the number of processors on a computer and the processor type of all SQL Server 2008 computers. The solution must meet the following requirements:
* It is hosted on the central computer.
* It can verify hardware configurations for multiple servers.
You need to select a technology that meets the requirements by using the minimum amount of development effort. What should you do?
A. Use the Invoke-Sqlcmd cmdlet in SQL Server PowerShell cmdlet.
B. Define policies based on conditions by using the ExecuteSql function.
C. Define policies based on conditions by using the ExecuteWQL function.
D. Use the Windows Management Instrumentation (WMI) provider for the server events.
Answer: C
QUESTION 16
You administer a SQL Server 2008 instance for your company. Your company has a team of database administrators.
A team of application developers create SQL Server 2008 Integration Services (SSIS) packages on the test server in a shared project. One of the packages requires a fixed cache file. On completion of development, the packages will be deployed to the production server.
Only the database administrators can access the production server.
You need to ensure that the application developers can deploy the project successfully to the production server.
What should you do?
A. Use the Import and Export Wizard to save packages.
B. Create a deployment utility for the SSIS project.
C. Create a direct package configuration for each package.
D. Create an indirect package configuration for all packages.
Answer: B
QUESTION 17
You administer a SQL Server 2008 infrastructure. You plan to design an infrastructure for a new application. The application has the following requirements:
* Users can connect to an instance named SQLSERVER1.
* SQLSERVER1 is linked to a server named SQLSERVER2.
* SQLSERVER1 and SQLSERVER2 run on different computers.
* The SQL Server instances use only Windows authentication.
You need to configure the infrastructure to ensure that the distributed queries are executed in the Windows security context of the login.
Which two actions should you perform? (Each correct answer presents part of the solution. Choose two.)
A. Configure all servers to use the Shared Memory network protocol.
B. Register a server principal name (SPN) for SQLSERVER1 and SQLSERVER2.
C. Use the local computer account as a service account for SQLSERVER1 and SQLSERVER2.
D. Create a map for each SQL login from SQLSERVER1 to SQLSERVER2 and use the impersonate option.
E. Ensure that the two instances use the same Windows account for the Microsoft SQL Service.
Create the link so that each account uses the current security context.
Answer: BD
QUESTION 18
You administer two SQL Server 2008 instances named Instance1 and Instance2. Instance1 contains the Sales database, and Instance2 contains the Accounts database.
A procedure in the Sales database starts a transaction. The procedure then updates the Sales.dbo. Order table and the Accounts.dbo.OrderHistory table through a linked server.
You need to ensure that the transaction uses a two-phase commit.
What should you do?
A. Configure the linked server to use distributed transactions.
B. Configure a Service Broker to enable the appropriate transaction control.
C. Ensure that the linked server is appropriately configured for delegation.
D. Ensure that the linked server is appropriately configured for impersonation.
Answer: A
QUESTION 19
You administer a SQL Server 2008 instance named Instance1 at the New York central site. Your company has a sales team to fulfill purchase orders for customer requests.
The sales team uses portable computers to update data frequently in a local database. When the portable computers connect to the central site, the local database must be synchronized with a database named Sales.
You plan to create a replication model to replicate the local database to the Sales database.
The replication model must meet the following requirements:
* Data conflicts are handled when multiple users update the same data independently.
* The sales team cannot update sensitive data such as product price.
* The sales team can synchronize data at scheduled times and on demand also.
You need to identify the best model to replicate data by using minimum development efforts.
What should you do?
A. Use merge replication along with each portable computer that is set up as a subscriber.
B. Use snapshot replication along with each portable computer that is set up as a subscriber.
C. Use transactional replication along with each portable computer that is set up as a publisher.
D. Use SQL Server Integration Services (SSIS) to push data changes and pull updates to the Sales
database along with the SSIS packages, on demand.
Answer: A
QUESTION 20
You are planning to upgrade a database application that uses merge replication.
The table currently has a column type of UNIQUEIDENTIFIER and has a DEFAULT constratin that uses the NEWID() function. A new version of the application requires that the FILESTREAM datatype be added to a table in the database. The data type will be used to store binary files. Some of the files will be larger than 2 GB in size.
While testing the upgrade, you discover that replication fails on the articles that contain the FILESTREAM data. You find out that the failure occurs when a file object is larger than 2 GB.
You need to ensure that merge replication will continue to function after the upgrade. You also need to ensure that replication occurs without errors and has the best performance.
What should you do? (More than one answer choice may achieve the goal. Select the BEST answer.)
A. Drop and recreate the table that will use the FILESTREAM data type.
B. Change the DEFAULT constraint to use the NEWSEQUENTIALID() function.
C. Place the table that will contain the FILESTREAM data type on a separate filegroup.
D. Use the sp_changemergearticle stored procedure and set the @stream_blob_columns option to true
for the table that will use the FILESTREAM data type.
Answer: D
If you want to pass Microsoft 70-450 successfully, donot missing to read latest lead2pass Microsoft 70-450 exam questions.
If you can master all lead2pass questions you will able to pass 100% guaranteed.