The Real MCTS SQL Server 2008 Exam 432

Size: px
Start display at page:

Download "The Real MCTS SQL Server 2008 Exam 432"

Transcription

1 Appendix The Real MCTS SQL Server 2008 Exam 432 Self Test Appendix 1

2 2 Appendix Self Test Appendix Chapter 1: New Features in SQL Server You are setting up security for your new SQL Server 2008 installation. Management is concerned about security. What approach should you take to ensure security settings are optimal? A. Use the Surface Area Configuration Tool to secure the installation B. Use the new Security Analysis tool to secure the installation C. Use SQL Server Configuration Manager to secure the installation D. Use Windows Service Manager to enable and disable the appropriate services The correct answer is C. On the Start menu, point to All Programs Microsoft SQL Server 2008 Configuration Tools SQL Server Configuration Manager. Answer A is incorrect because the Surface Area Configuration Tool is no longer used to secure SQL Server Answer B is incorrect because there is no Security Analysis tool in SQL Server While Answer D may work, it s not the best answer. Your answer should be the most correct using the new features, even though some of the other answers may technically work. 2. You have been tasked with setting up standards for your SQL Server 2008 installation. You need to enforce a table naming convention. What is the best way to accomplish this in your SQL Server 2008 environment? A. Use Windows Group Policy B. Create DDL Triggers C. Create DML Triggers D. Create a Declarative Management Framework policy The correct answer is D. This is the most efficient way to accomplish the task of enforcing a table naming convention. Answer A is incorrect Windows Group Policy does not provide a mechanism for enforcing table naming conventions. While Answer B could would, it s not the best solution. Answer C is incorrect as DML triggers provide no means to control DDL code.

3 Self Test Appendix Appendix 3 3. You have been asked to create a backup of your production database and restore it on a development server. Your production server is using the full recovery model. Full backups are taken Monday and Wednesday. Transaction log backups are taken every hour. Today is Friday. The backup needs to be created as quickly as possible. What s the fastest way to get the latest database copy while minimizing impact to production? A. Create a normal backup. Use that to restore to development. B. Create a Copy Only Backup. Use that to restore to development. C. Use the Wednesday backup. Restore the transaction log backups since Wednesday. D. Copy the.mdf and log files and use SP_attach. The ideal situation would be to use B, the Copy Only Backup. Copy Only doesn t affect the backup chain and will provide the quickest solution while minimizing interruptions. Answer A will affect the backup chain, so it s somewhat disruptive. Answer C is not the fastest method, and there would be quite a few transaction logs to restore. Answer D would require stopping the SQL service on the production server, rendering it unusable during the copy. 4. You have a SQL Server 7.0 database and would like to move it to a new SQL Server 2008 instance. The database is part of an FDA-validated system and cannot be changed at all? How can this be accomplished? A. Restore the 7.0 database on your new server and set the compatibility mode to 7. B. You must upgrade the database to SQL 2005 or greater. C. Restore the 7.0 database on your new server and set the compatibility mode to 6.5. D. Copy the.mdf and log files and use SP_attach. The correct answer is B. Answers A and C are incorrect as SQL Server 2008 does not support 7 or 6 compatibility. Answer D is incorrect as the database must be upgraded and cannot just be attached. 5. You have an application that is being upgraded from SQL Server 2005 to SQL Server You notice that some stored procedures are not working correctly. An excerpt is as follows:

4 4 Appendix Self Test Appendix SELECT * FROM Territories, Region WHERE territories.regionid *= region.regionid What should you do to resolve the issue? A. There is no issue. The problem lies elsewhere. B. The join syntax is incorrect. Replace with left join. C. The select is incorrect. You need to enumerate the fields. D. The where clause should be = not =. The answer is B. The join syntax is no longer supported. Answer A is incorrect, as the old join syntax ( = and = ) will no longer work. Answer C is not correct; although Select will work, it is not good practice. Answer D is incorrect as it will change the left join to an inner join, which would change the overall function of the select statement. 6. Your disk is almost full on the transaction log drive for a database server. How can you resolve this issue? A. Use BACKUP LOG WITH TRUNCATE_ONLY B. Change the mode to simple and shrink the log C. Reinstall SQL D. Drop the database and restore from the last backup The correct answer is B. Answer A would be the answer with SQL Server 2005; however, this command is no longer available. Answer C will not solve the problem, and Answer D would result in data loss and could take a while. 7. You want to enforce a standard naming convention for stored procedures. What s the best way to do this in SQL Server 2008? A. Create a DDL trigger B. Use the performance data warehouse C. Create DML triggers D. Use the SQL Server 2008 Declarative Management Framework The correct answer is D. The DMF will allow you to perform the task at hand. Answer B has nothing to do with enforcing naming conventions. While Answer A could work, it s not the best approach. Answer D will not allow you to perform the task of enforcing naming conventions.

5 Self Test Appendix Appendix 5 8. You want to enforce a standard naming convention for tables and stored procedures. Your company has two SQL Server 2008 servers and 60 SQL Server 2005 servers. You need to use the same solution on all servers. What s the best way to do this in SQL Server 2005 and SQL Server 2008? A. Create a DDL trigger for all servers B. Use the performance data warehouse C. Create DML triggers D. Use the SQL Server 2008 Declarative Management Framework The correct answer is A. This will work on SQL Server 2005 and SQL Server 2008 servers. While Answer D is correct, the DMF will allow you to perform the task at hand only on SQL Server 2008 servers. Answer B has nothing to do with enforcing naming conventions. D will not allow you to perform the task of enforcing naming conventions. 9. You have a database table with a varchar(600) field in it. Most of the records in the table have a null value for this field. How can you save space? A. Move the data into a second table B. Use sparse columns C. Install a third-party tool on the machine to compress the data D. Use the SQL Server 2008 Declarative Management Framework The correct answer is A. Sparse columns will take up less space for varchar columns. Sparse columns will take up less space for most columns, but cannot be used for text, ntext, image, timestamp, user-defined data type, geometry, or geography or varbinary (max) with the FileStream attribute can be sparse. Answer C is incorrect; this is not the best approach. Answer D is incorrect, as the Declarative Management Framework will not save you space. 10. You have a database table with a FileStream field in it. Most of the records in the table have a null value for this field. What s the best way to save space? A. Move the data into a second table B. Use sparse columns C. Use the SQL Server 2008 Declarative Management Framework D. None of the above

6 6 Appendix Self Test Appendix The correct answer is D. Answer A is incorrect; this will not save space. Answer B is incorrect, as sparse columns will take up less space for most columns, but cannot be used for text, ntext, image, timestamp, user-defined data type, geometry, or geography or varbinary (max) with the FileStream attribute can be sparse. 11. You need to store images in for a Web site using SQL Server How can you accomplish this? A. Use a FileStream data type, and the images will be stored on disk B. Use a varchar data type and store the images in that field C. Use an int data type and store the images in that field D. Use an nchar data type and store the images in that field The correct answer is A. The FileStream data type is meant for storing files on disk. You could also store the image in a varbinary field, but moving forward the recommended approach is to use the FileStream data type. Answers B, C, and D all reference data types that cannot be used to store binary data like image files. One approach is to use a varchar field as a pointer to the disk, but this is not recommended after the introduction of the FileStream data type. 12. You are responsible for a system that is used for both online transaction processing (OLTP) and reporting. When reports run on the server, the OLTP process slows way down. How can you allow reports to be run on the server and minimize impact to the OLTP processes? A. Use the Resource Governor B. Use a DDL trigger C. Use a DML trigger D. Use processor affinity masks A is the correct answer. The Resource Governor allows you to assign workloads to different groups, then assign a priority to those groups. Answers B and C are incorrect. Triggers cannot be used for this purpose. Answer C is incorrect. Processor affinity masks cannot be used for this purpose.

7 Self Test Appendix Appendix You are creating an application to track crime in different locations throughout a large city. What data type could prove useful for storing location data (longitude and latitude)? A. Varchar B. int C. Char D. Spatial The correct answer is D. Spatial data types are ideal for this type of data. Answer A could work, but is not ideal. Answers B and C are not ideal for storing this type of information. 14. You are running out of space on the drive used to store backups. All of the servers use the same network location. What can you do to save space with your backups while maintaining the same number of backups? A. Use data compression B. Use compressed backups C. Use full backups D. Use a third-party tool B is the correct answer. Compressed backups take up less space. Answer A is incorrect; this will save space in the data files. Answer C is incorrect; this will not save space. Answer D will work, but it s not the best solution. 15. You need to store sensitive data in your SQL Server database. The application has already been written and works fine. What s the easiest way to do this without having to change your application? A. Modify the stored procedures to use xp_encryptstring B. Use transparent data encryption C. Use a third-party tool D. Use a trigger The correct answer is B. Transparent data encryption enables data to be stored securely by encrypting the database files. Answer A is incorrect, as this is not the best approach. Answer C is incorrect; while there are third-party encryption tools, this is not the best approach. Answer D is incorrect; triggers by themselves are not a correct solution.

8 8 Appendix Self Test Appendix 16. Within your application, you need to log all changes to one table. DDL and DML changes must be logged. What s the best approach to solve this problem? A. Use the built-in auditing capability B. Create a DDL trigger C. Create a DML trigger D. This cannot be accomplished A is the correct answer. SQL Server 2008 has built-in auditing capability. Answers B and C are incorrect as they are not a complete solution. Answer D is incorrect, as this can be accomplished with Answer A. 17. You have a server that supports Hot Add CPU. The current CPU utilization is 95 to 100 percent most of the time. The server is mission-critical and cannot be shut down. SQL Server 2008 Standard Edition is installed. What should you do? A. Use the Hot Add CPU feature to add another CPU B. Use the Hot Add CPU feature to add two CPUs C. Add more memory to the server D. Schedule an outage and add another CPU to the server The correct answer is D. SQL Server 2008 Standard Edition does not support Hot Add CPU, which makes Answers A and B incorrect. Answer C is incorrect the issue is CPU, so adding more memory will in all likelihood not solve the problem. 18. You are contemplating using data compression on a table. You would like to know how much space this will save. How can you determine the savings? A. View the table properties B. Enable compression, then check the table size C. Use sp_estimate_data_compression_savings D. Use sp_check_compression The correct answer is C. sp_estimate_data_compression_savings will help you determine if the table is worth compressing. This procedure accepts five parameters.

9 Self Test Appendix Appendix 9 The two critical parameters Answer A is incorrect; compression information is not shown in the table properties. Answer B will not solve the problem before applying compression. Answer D is incorrect, as there is no stored procedure by that name. 19. You have a server that supports Hot Add Memory. Performance is sluggish, and you believe adding more memory will help. The server is mission-critical and cannot be shut down. SQL Server 2008 Standard Edition is installed. What should you do? A. Use the Hot Add CPU feature to add another CPU B. Use the Hot Add CPU feature to add two CPUs C. Add more memory to the server. D. Schedule an outage and add memory to the server. The correct answer is D. SQL Server 2008 Standard Edition does not support Hot Add Memory, which makes Answer C incorrect. Answers A and B are incorrect the issue is memory, so adding more CPU will in all likelihood not solve the problem. 20. You have a SQL Server 2008 installation, and you want to create a highavailability solution. What are the ideal approach(es) to solve this problem? A. Backup and restore B. Replication C. Mirroring D. Clustering The correct answers are C and D. C and D are automated high-availability solutions. Answer A is not necessarily a good solution as it is not automated. Answer B will create a copy of a database, but will require intervention in order for the replicated database to become the active database.

10 10 Appendix Self Test Appendix Chapter 2: Installing SQL Server Which SQL Server 2008 edition supports IA64? A. Web and Compact Editions B. Standard and Workgroup Editions C. Enterprise and Developer editions D. All of the above Correct Answer & Explanation: C. The Enterprise and Developer Editions support IA How many instances can be created in SQL Server 2008 Standard Edition? A. 1 B. 4 C. 16 D. Unlimited Correct Answer & Explanation: C. SQL Server 2008 Standard Edition supports 16 instances, as do the Workgroup, Web, and Express Editions. The Enterprise Edition can have up to How many SQL Server default instances can be installed on a single, nonclustered server? A. 1 B. 4 C. 16 D. Unlimited Correct Answer & Explanation: A. There can only be one default instance of SQL Server on any SQL Server installation. 4. Which of the following editions has all the features and functionality but is not licensed for production? A. Compact Edition B. Web Edition C. Developer Edition D. Workgroup Edition

11 Self Test Appendix Appendix 11 Correct Answer & Explanation: C. The Developer Edition has all the features and functionality of SQL Server 2008 Enterprise Edition, but it is not licensed for production use. 5. Which SQL Server 2008 edition is best suited for mobile applications? A. Compact Edition B. Web Edition C. Developer Edition D. Workgroup Edition Correct Answer & Explanation: A. The Compact 3.5 Edition is best used for desktop and mobile applications because of its smaller footprint than the other versions. This is critical in mobile devices where disk space is at a premium. 6. Which SQL Server 2008 edition provides the most Analysis Services features? A. Enterprise Edition B. Standard Edition C. Workgroup Edition D. Web Edition E. Express Edition Correct Answer & Explanation: A. Only the Enterprise and Developer Editions provide all the Analysis Services features. 7. Which tool should be on an existing SQL Server 2000 or 2005 database instance prior to upgrading to SQL Server 2008? A. Integration Services B. Reporting Services C. Analysis Services D. Upgrade Advisor Tool Correct Answer & Explanation: D. The Upgrade Advisor Tool should be used on an existing SQL Server 2000 and 2005 instance to provide guidance prior to an upgrade to SQL Server Which of the following is a command-line utility used to run PowerShell command and scripts?

12 12 Appendix Self Test Appendix A. sqlcmd B. SQLdiag C. Ssms D. sqlps Correct Answer & Explanation: D. sqlps is used to run PowerShell commands and scripts. Sqlcmd is used to execute T-SQL command and procedures. Ssms is used to start the SQL Server Management Studio, and SQLdiag is used to collect diagnostic information to supply to Microsoft Customer Service and Support. 9. Which of the following editions does not support any Reporting Services features? A. Enterprise Edition B. Standard Edition C. Workgroup Edition D. Web Edition E. Express Edition Correct Answer & Explanation: E. SQL Server 2008 Express Edition does not provide any Reporting Services features. Enterprise Edition provides all the features, while Standard, Workgroup, and Web have limited features of Reporting Services. 10. Which of the following accounts has the least privilege when used as a service account? A. Domain user account B. Local user account C. Local service account D. Administrator account E. Local system account Correct Answer & Explanation: B. Local user account has only local user privileges, which are not sufficient for a service account. 11. Which of the following accounts should be used to perform a SQL Server 2008 installation or upgrade?

13 Self Test Appendix Appendix 13 A. Domain user account B. Local user account C. Local service account D. Administrator account E. Local system account Correct Answer & Explanation: D, Administrator account. An account with Administrator privileges is required to install SQL Server In which of the following directories are the default instance database data and log files located? A. <drive>:\program Files\Microsoft SQL Server\\100\Setup Bootstrap\ LOG\Files\ B. <drive>:\program Files\Microsoft SQL Server\MSSQL10. MSSQLSERVER\Data C. <drive>:\program Files\Microsoft SQL Server\MSSQL9.DEFAULT\Data D. <drive>:\program Files\Microsoft SQL Server\MSAS10. MSSQLSERVER\Data E. <drive>:\program Files\Microsoft SQL Server\MSRS10. MSSQLSERVER\Data Correct Answer & Explanation: B. SQL Server 2008 s default directory is under the Program Files\Microsoft SQL Server. The name of the database directory is prefaced with the SQL Server Version ID of MSSQL10, plus a period and the name of the database. The default database name is always MSSQLSERVER. 13. What additional software is required for SQL Server s Business Intelligence Developer s Tool? A..NET Framework 2.0 B. Microsoft Installer 4.5 C. Microsoft Internet Explorer 6 SP1 or later D. Windows PowerShell 2.0 E. Windows Vista Enterprise SP1 or greater Correct Answer & Explanation: C, Microsoft Internet Explorer 6 SP1 or later. NET Framework 3.5, Microsoft Installer 4.5, and Windows PowerShell 1.0 are required as part of the installation of SQL Server 2008.

14 14 Appendix Self Test Appendix 14. Which of the following is the SQL Server component that provides the services for creating, processing, and managing OLAP and data mining? A. Business Intelligence Developer Studio B. SQL Server Management Studio C. Windows PowerShell 2.0 D. SQL Server Database Engine E. Analysis Services Correct Answer & Explanation: E, Analysis Services. The SQL Server Database Engine contains the services to manage and process relational and XML data. Business Intelligence Developer Studio is used for managing all SQL Server 2008 components, including relational database and business intelligence (BI). SQL Server Management Studio is used for administering and managing all SQL Server 2008 components. Windows PowerShell 2.0 is a command-line shell and Microsoft scripting language. 15. Which of the following is a scalability feature in SQL Server Enterprise Edition? A. Partitioning B. Data Mining Queries C. Binary and compressed XML transport Correct Answer & Explanation: A, Partitioning. 16. In which directory are the installation log files found? A. <drive>:\program Files\Microsoft SQL Server\\100\Setup Bootstrap\LOG\Files\ B. <drive>:\program Files\Microsoft SQL Server\\90/Data C. <drive>:\program Files\Microsoft SQL Server\\Binn D. <drive>:\program Files\Microsoft SQL Server\\logs Correct Answer & Explanation: A. The installation log files are located in the directory < drive>:\program Files\Microsoft SQL Server\\100\Setup Bootstrap\LOG\ Files\ 17. Which system database is hidden to SQL Server Management Studio and is used to persist a read-only version of system objects? A. Master B. Resource

15 Self Test Appendix Appendix 15 C. Tempdb D. System Correct Answer & Explanation: B, Resource. Master and resource are system databases but do not perform the function to persist read-only versions of system objects. There is no system database named system. 18. Which is the compatibility version associated with SQL Server 2008? A. 80 B. 90 C. 100 D. 200 Correct Answer & Explanation: C, is associated with SQL Server 2000, and 90 is associated with SQL Server is an invalid compatibility version. 19. Which SQL Server tool is used to check that SQL Server component services are running? A. SQL Server Management Studio (SSMS) B. Business Intelligence Development Studio (BIDS) C. SQL Server Configuration Manager D. SQL Server Profiler E. Database Engine Tuning Advisor Correct Answer & Explanation: C, SQL Server Configuration Manager. 20. Which type of file contains data and database objects such as tables and indexes? A. Data files B. Log files C. File groups D. Binary files E. Summary.txt Correct Answer & Explanation: A, data files.

16 16 Appendix Self Test Appendix Chapter 3: Configuring SQL Server You ve just started as a DBA at a company that has recently installed a dedicated server running both a SQL Server 2008 default instance and the database for the company s ERP system. You want to implement a process to test the database with new SQL Server patches and service packs before they are applied to the live database. There is no budget to buy any new servers, but the existing hardware is under-utilized and you re confident it will suffice for your short-term needs. Which of these options would meet your needs? A. Restore a copy of the live database as test on to its own disk array. Apply patches and service packs to the new database and test them before applying them to the live database. B. Install a named instance for testing. Create a database snapshot on the named instance pointing to the live database on the default instance. Apply patches and service packs to the named instance and test before applying them to the default instance. C. Install another default instance for testing and restore a copy of the live database. Apply patches and service packs to the second instance and test before applying them to the live instance. D. Install a named instance for testing and restore a copy of the live database. Apply patches and service packs to the named instance and test before applying them to the default instance. Correct Answer & Explanation: D. SQL Server patches and service packs are applied at the instance level. Having a separate instance with a copy of the live database is the only way to achieve the requirements. Incorrect Answers & Explanations: A, B, C. Answer A is incorrect because you cannot apply service packs and patches to individual databases. Answer B is incorrect because you cannot create a database snapshot between instances. You have to restore a copy of the database onto the instance. Answer C is incorrect because you can only have one default instance. 2. Last month your company went through an exercise to standardize service accounts while you were on holiday. You ve just restarted SQL Server after applying a service pack, and now the instance won t start. You check the Windows Event Log and see lots of errors about not being able to open the error log. What is the most likely cause?

17 Self Test Appendix Appendix 17 A. The SQL Server Service account was not changed using SQL Server Configuration Manager B. The service pack failed C. Data corruption D. You don t have the right permissions to the error log Correct Answer & Explanation: A. If you don t use the Configuration Manager tool to change the service account, it will not get explicit permissions to the SQL Server directory structure. SQL Server will not start without permissions to create an error log file. Incorrect Answers & Explanations: B, C, D. Answer B is incorrect, although technically feasible; the service pack should have generated errors if there was a problem, and given the scenario it is not the most likely cause. Answer C is incorrect, although technically feasible; given the lack of any other errors and the scenario it is not the most likely cause. Answer D is incorrect because the issue is with the Service Account permissions, not your account. To install the service pack you would have needed full Administrator rights on the server anyway. 3. You have a default instance and a named instance installed on your server. The developers are complaining that they can t connect to the named instance from their workstations using Management Studio anymore. You log on to the server through Terminal Services and can connect to each instance without issue. What could the cause of this behavior be? A. The developers haven t created a SQL Server Alias to the named instance using the Shared Memory protocol. B. The SQL Browser Service has been started. C. The SQL Browser Service has been stopped. D. The IP addresses of the developers workstations have been added to the Exclude list in the TCP/IP properties of the named instance in Configuration Manager. Correct Answer & Explanation: C. By default, named instances used dynamic TCP port allocation, and clients depend on the SQL Browser Service to find the current port. Incorrect Answers & Explanations: A, B, D. Answer A is incorrect because you can t create an alias that uses the Shared Memory protocol, and it can be used only by tools running on the server. Answer B is

18 18 Appendix Self Test Appendix incorrect because the SQL Browser Service being started helps remote connections to named instances. Answer D is incorrect because you cannot exclude IP addresses from connecting to SQL Server using Configuration Manager. 4. Your security administrator has determined that all the SQL Servers in your organization need to listen on nondefault TCP ports, and she doesn t want network users to see the SQL Servers in a browse list. Which two actions would achieve this goal? A. Stop and disable the browser service on each SQL Server B. Use Configuration Manager on each server to change each instance to listen on port C. Use Configuration Manager on each server to change each instance to listen different ports D. Configure the SQL Browser Service to hide each instance E. Enable Show Advanced Options using sp_configure and use the Default TCP port option to configure the port for each instance Correct Answer & Explanation: A and C. Stopping the browser service will stop all instances on that server being browsable. Configuration Manager is the only place you can change the TCP port for an instance. Each instance on a server must listen on a unique port. Answers & Incorrect Answers & Explanations: B, D, E. Answer B is incorrect because configuring each instance with the same port on the same server will prevent all but one instance from working. Answer D is incorrect because you cannot hide an instance using the SQL Browser Service. Answer E is incorrect because Configuration Manager is the only place you can change the TCP port for an instance. 5. The company you work for has just merged with another company that uses Novell NetWare as its network operating system. The new company s developers are struggling to connect to your SQL Server. What could be the problem? A. SQL Server 2008 doesn t support the Banyan Vines protocol. B. You haven t enabled the IPX/SPX protocol. C. You haven t enabled the Banyan Vines protocol. D. SQL Server 2008 doesn t support the IPX/SPX protocol.

19 Self Test Appendix Appendix 19 Correct Answer & Explanation: D. Older versions of Novell NetWare used IPX/SPX as a communication protocol. SQL Server 2008 does not support it. Incorrect Answers & Explanations: A, B, C. Answer A is incorrect. While the statement is true, Banyan Vines has nothing to do with the scenario. Answer B is incorrect because SQL Server 2008 doesn t support IPX/SPX. Answer C is incorrect because Banyan Vines has nothing to do with the scenario. 6. You have just upgraded your databases from a SQL Server 2005 default instance to a SQL Server 2008 named instance called Phobos on a server named MARS. The application that uses the SQL Server sits on its own server, and you ve just found out that you can t change the connection string in the application to point to the new instance. How can you fix it? A. Add a CNAME record on your DNS server for MARS that points to MARS\Phobos B. Install SQL Server Client Tools on the application server and create a SQL Server Alias called MARS that points to MARS\Phobos C. Install SQL Server Client Tools on the application server and create a SQL Server Alias called MARS\Default that points to MARS\Phobos D. Add a PTR record on your DNS server for MARS that points to MARS\ Phobos Correct Answer & Explanation: B. Connection requests from the application to MARS will be redirected to MARS\Phobos without you having to change the connection string. Incorrect Answers & Explanations: A, C, D. Answer A is incorrect because DNS resolves IP addresses, and you still need to connect to same server (MARS). DNS has no awareness of instances. Answer C is incorrect because you connect to a default instance using the servername, not servername\ Default. Answer D is incorrect because DNS resolves IP addresses, and you still need to connect to same server (MARS). DNS has no awareness of instances. 7. You install a default instance of SQL Server 2008 Developer Edition with default configuration options. The developers complain that they can t connect to the server using SQL Server Management Studio. Which of these options is the most likely cause?

20 20 Appendix Self Test Appendix A. A firewall is blocking port B. The SQL Browser Service isn t running. C. The SQL Server tools on the developer workstations haven t been service packed. D. TCP/IP is disabled by default in Developer Edition. Correct Answer & Explanation: D. TCP/IP is disabled by default in Developer Edition, which means that all remote connections will fail. Incorrect Answers & Explanations: A, B, C. Answer A is incorrect. Although this would cause the same issue, all remote protocols are disabled, and that is the most likely cause. Answer B is incorrect because the SQL Server Browser Service isn t required to connect to a default instance using default port Answer C is incorrect. Technically, it may be possible for this to cause an issue, but it is not the most likely cause of the problem. 8. A SQL Server recently suffered from all CPUs running at 100 percent, which you found to be caused by a missing index. You fixed the problem, but you want to stop any new occurrences from saturating all CPUs. Which of these options would achieve this? A. Use sp_configure to set max degree of parallelism B. Use Configuration Manager to configure the SQL Server Service to use fewer CPUs C. Run the Database Tuning Advisor and apply any recommendations D. Use sp_configure to set cost threshold for parallelism Correct Answer & Explanation: A. Setting max degree of parallelism to less than the number of CPUs will prevent SQL Server from running parallel executions across all CPUs. Incorrect Answers & Explanations: B, C, D. Answer B is incorrect; you cannot use Configuration Manager to configure SQL Server CPU usage. Answer C is incorrect because DTA recommendations will only reduce the amount of parallelism that occurs. Answer D is incorrect because cost threshold for parallelism controls how expensive queries must be before being considered for parallelism. 9. A developer has contacted you because he wants to enable AWE memory on his Developer Edition instance, but he says that he can t see the option with sp_configure. What is the most likely cause? A. AWE is not supported with Developer Edition.

21 Self Test Appendix Appendix 21 B. The developer is connecting with a low-privilege user and doesn t have enough permissions. C. He hasn t enabled show advanced options with sp_configure. D. He hasn t enabled /PAE in boot.ini. Correct Answer & Explanation: C. AWE is an advanced option and is only visible when show advanced options has been enabled. Incorrect Answers & Explanations: A, B, D. Answer A is incorrect because AWE is supported with Developer Edition. Answer B is incorrect because low privileges won t reduce what you see with sp_configure. Answer D is incorrect because /PAE won t affect whether or not you can see the AWE option. 10. You re running SQL Server 64-bit and want to make sure that SQL Server doesn t take too much memory. Which of these options would achieve that? A. Set Maximum Server Memory (MB) using sp_configure B. Assign the SQL Service account the Lock Pages in Memory privilege C. Set Maximum Server Memory (MB) using SQL Server Management Studio D. Start SQL Server with the -g switch passing the maximum memory as a parameter Correct Answer and Explanation: A and C. Maximum Server Memory controls how much memory SQL Server will use and can be configured using Management Studio or with sp_configure. B is incorrect because this would make a 64-bit SQL Server use AWE to lock memory pages; it wouldn t prevent it from taking too much memory. D is incorrect because the -g switch controls how much reserved memory SQL Server allocates; it won t prevent it from taking too much. 11. One of your DBAs is setting up SQLMail and has asked you for a license key for Outlook. You suggest that he enable Database Mail instead. Which two of these options are features of Database Mail? A. Received s are stored in msdb. B. It doesn t require a MAPI client. C. It is Windows failover-cluster aware. D. It is available in all SQL Server editions.

22 22 Appendix Self Test Appendix Correct Answer & Explanation: B and C. SQLMail requires a MAPI client like Outlook to run. Database Mail uses SMTP and is failover-cluster aware. Incorrect Answers & Explanations: A, D. Answer A is incorrect because you can t receive s with Database Mail. Answer D is incorrect because Database Mail is not available in SQL Server Express. 12. A business user has just phoned to say that his data wasn t updated overnight. You check SQL Server and see that a SQL Server Agent job that runs a data load failed last night. You want to be automatically notified via if it happens again. Which of these options will provide the most efficient, supported solution? A. Implement SQLMail B. Implement Database Mail C. Install a third-party SMTP mailer D. Implement Service Broker Correct Answer & Explanation: B. Database Mail is fast, efficient, reliable, and supported. It meets the criteria in the scenario. Incorrect Answers & Explanations: A, C, D. Answer A is incorrect because SQLMail is less efficient and reliable than the Database Mail that supersedes it. Answer C is incorrect because a third-party SMTP mailer would be unsupported, and Database Mail is an SMTP mailer. Answer D is incorrect because Service Broker is the messaging engine used by Database Mail. It does not provide facilities on its own. 13. You ve just upgraded to SQL Server 2008 from SQL Server 2000, and you ve dropped SQLMail in favor of Database Mail. The IT manager wants to know if Database Mail has redundancy if a mail server goes down. How would you reply? A. Yes, you can configure multiple SMTP servers in a Database Mail Profile. B. Yes, you can configure SQLMail as a backup. C. No, you would have to reconfigure it to use a different mail server. D. Yes, Database Mail is supported on a failover cluster. Correct Answer & Explanation: A. If the first SMTP server isn t contactable, Database Mail will try the next configured server.

23 Self Test Appendix Appendix 23 Incorrect Answers & Explanations: B, C, D. Answer B is incorrect because SQLMail and Database Mail don t work together. Answer C is incorrect because you can specify multiple SMTP servers. Answer D is incorrect because the question refers to a mail server going down, not Database Mail going down. 14. You ve been investigating deadlocks on your server using trace flag 1222, and you d like to enable it permanently to capture extra information if deadlocks occur again, even if SQL Server gets restarted. What is the easiest way to do this? A. Execute DBCC TRACEON (1222,-1) B. Create a start-up stored procedure containing DBCC TRACEON (1222,-1) and use sp_configure to enable scan for startup procs C. Use Configuration Manager to add T1222 as a start-up parameter for the SQL Server service D. Execute DBCC TRACEON (1222) Correct Answer & Explanation: C. T is a start-up switch that enables the specific trace flag for all connections. Incorrect Answers & Explanations: A, B, D. Answer A is incorrect; although this would enable the trace flag on all connections (-1), it will not persist a service restart. Answer B is incorrect because it is not the easiest method for achieving the goal. Answer D is incorrect because the trace flag will not persist a service restart and would only enable it on the current connection. 15. You ve been told that you need to make your SQL Server compliant with EAL4+. What is the first step you need to do in this process? A. Use sp_configure to enable c2 audit mode. B. Use sp_configure to enable common criteria compliance enabled. C. SQL Server 2008 is automatically EAL4+ compliant. D. SQL Server 2008 does not support EAL4+ compliance. Correct Answer & Explanation: B. EAL4+ is the most widely accepted level of Common Criteria Compliance. Incorrect Answers & Explanations: A, C, D. Answer A is incorrect; C2 compliance is not related to EAL4+. Answer C is incorrect because you need

24 24 Appendix Self Test Appendix to enable Common Criteria Compliance. Answer D is incorrect because SQL Server 2008 supports EAL4+ through Common Criteria Compliance. 16. Some of your full-text indexes are consuming a lot of server resources. You investigate and discover that the index causing the problem is on a text-based field that is updated frequently. You ve spoken to the business, and the updates don t affect their search results. What could you do to reduce the overall impact on the server while keeping the index fairly up-to-date? A. Set change tracking on the index to AUTO B. Move the index to a filegroup on its own drive C. Set change tracking on the index to MANUAL and schedule a nightly population update. D. Set change tracking on the index to OFF Correct Answer & Explanation: C. This will still track changes but switches off auto propagation to the index. A nightly update will process all the tracked changes. Incorrect Answers & Explanations: A, B, D. Answer A is incorrect; change tracking is already at the default setting of AUTO, and that is what is causing the problem. Answer B is incorrect because you want to reduce overall impact, and this option will only directly affect disk i/o. Answer D is incorrect because there is no method specified to keep the index updated. 17. You have installed a default and two named instances called Phobos and Deimos on a server called Mars. How would you connect to each instance? A. Mars, Mars\Phobos, Mars\Deimos B. Mars, Mars1\Phobos, Mars2\Deimos C. Default, Phobos, Deimos D. Default, mars\phobos, mars\deimos Correct Answer & Explanation: A. The default instance accessed by using the servername and each instance is accessed by adding \<instancename> to the servername. Incorrect Answers & Explanations: B, C, D. Answer B is incorrect; Mars1 and Mars2 refer to different servers. Answer C is incorrect because Default is invalid for the default instance and the server is missing from the instance names. Answer D is incorrect because Default is invalid for the default instance.

25 Self Test Appendix Appendix Your developers complain that they can t connect to the server using SQL Server Management Studio. You ve used Terminal Services to log on to the server, and you ve confirmed that TCP/IP is enabled. You now want to test it with a local connection. What should you do? A. Nothing, just connect B. Disable Shared Memory in Configuration Manager C. Move TCP/IP above Shared Memory in the connection protocol order D. Disable Shared Memory using sp_configure shared memory enabled Correct Answer & Explanation: B. Disabling Shared Memory will force SQL Server to use the next protocol to connect which is TCP/IP by default. Incorrect Answers & Explanations: A, C, D. Answer A is incorrect; local connections will use the Shared Memory protocol by default. Answer C is incorrect because Shared Memory cannot be moved in the connection protocol order, only disabled. Answer D is incorrect because the sp_configure option is invalid. 19. You are responsible for a large-capacity server that has a default instance of SQL Server 2008 installed and hosts databases for multiple applications belonging to several of your customers. A new database needs to be moved to the server, which has a different collation, and the collation of TempDB needs to match it. You can t change the collation for your existing TempDB because it will affect all the applications. What could you do? A. Create another TempDB with the right collation and configure the new database to use it B. Configure the database to use a different TempDB on a remote server C. Install a new instance for the database with a default collation the same as the database D. A separate server with a separate instance is the only option Correct Answer & Explanation: C. You can have only one TempDB database per instance, and it might be feasible to install a second instance on a large capacity server. Incorrect Answers & Explanations: A, B, D. Answer A is incorrect; you can have only one TempDB per instance. Answer B is incorrect because you cannot configure to use a remote TempDB. Answer D is incorrect because it isn t the only option.

26 26 Appendix Self Test Appendix 20. You re implementing a database backup strategy, and you have full-text indexes that took 12 hours to build, so you need to make sure that they are backed up to avoid a long recovery time. What should you do? A. Nothing extra, they re backed up with the databases. B. Add WITH FULLTEXT to the database backup command. C. Switch on fulltext backup default enabled with sp_configure. D. Configure the full-text indexes for AUTO. Correct Answer & Explanation: A. Indexes are backed up as part of a database backup. Incorrect Answers & Explanations: B, C, D. Answer B is incorrect because this option does not exist and is not required. Answer C is incorrect because the option does not exist. Answer D is incorrect, because AUTO affects change tracking and propagation, not backups. Chapter 4: Managing Security 1. Which of the following is considered a Principal? A. SQL Server B. SQL Server Integration Services C. SQL Server Login D. SQL Server Agent The correct answer is C. A SQL Server Login is considered a principal since it can request SQL Server resources. Answers A, B, and D are incorrect because they are services and not considered to be principals. 2. Which of the following is a securable object in a database schema? A. Database User B. Database C. Service D. Procedure The correct answer is D. A procedure is a securable object within a database schema. Answers A and C are database-level securables. Answer B is a serverlevel securable.

27 Self Test Appendix Appendix Which of the following fixed server-level roles enables a member to add and remove linked servers? A. Securityadmin B. Setupadmin C. Serveradmin D. Dbcreator The correct answer is B. Although the answers A, C, and D are also fixed server-level roles, they do not have the correct level of permissions to add or remove a linked server. 4. You have a team member who needs the ability to manage SQL Server logins, and you do not want him to have permissions to perform any task on the server. The team member s responsibilities include resetting logins as well as granting, denying, and revoking database-level and server-level permissions. Which of the following server-level roles best fits the team member s permissions requirement? A. Serveradmin B. Sysadmin C. Securityadmin D. Processadmin The correct answer is C. The securityadmin role would best fit the team member s permissions requirement. Answer B would give the user more permissions then he needs. Answers A and D would not provide the appropriate level of permissions needed to perform the required tasks. 5. Which of the following can be added to a server-level role? A. Windows group B. Database User C. Database-level role D. Domain server account The correct answer is A. Windows groups can be added to a server-level role. Answers B, C, and D are incorrect since they cannot be added to a server-level role. 6. Which of the following database-level roles limits a user s permissions to reading all data from all user tables?

28 28 Appendix Self Test Appendix A. db_owner B. db_datareader C. db_datawriter D. db_securityadmin The correct answer is B. The role of db_datareader will limit a user to being able to only read all data from all user tables. Answer A would provide the user with permissions greatly exceeding his needs. Answers C and D would not provide the user sufficient permissions to read the data. 7. You have a user who requires the permissions to drop a database and perform any configuration and maintenance tasks. Which of the following actions would violate The Principle of Least Privilege? A. Adding the user to the db_datareader role B. Adding the user to the db_owner role C. Adding the user to the sysadmin role D. Giving the user permission to modify tables The correct answer is C. Adding the user to the sysadmin role would provide him with permissions greatly exceeding his needs, which violates The Principle of Least Privilege. Answers A and D are incorrect since the permissions for these roles are less then what is required. Answer B is the appropriate role with the best permissions fit. This answer is incorrect since it does not violate the principle. 8. Which of the following can be mapped to a database user? A. Windows account B. Login C. Windows group D. Domain account The correct answer is B. A Login can be mapped to a database User. Answers A, C, and D are incorrect since they cannot be mapped to a database user. 9. Although T-SQL can be used to create database users, which of the following SQL Server management tools can also be used? A. SQL Server Configuration Manager B. The Surface Area Configuration Fact

29 Self Test Appendix Appendix 29 C. Microsoft Visual Studio D. SQL Server Management Studio The correct answer is D. By right-clicking the Users folder in the SQL Server Management Studio and selecting new user from the menu, you can create a user. Answers A, B and C are incorrect since these applications do not provide the functionality to create database users. 10. Which of the following defines mixed mode authentication? A. Connections can be made using only Windows accounts. B. Connections to SQL Server can be made with either Windows accounts or with SQL Server Logins. C. Connections can be made using only SQL Server Logins. D. Connections can be made using only database users. The correct answer is B. When you are using mixed mode authentication, connections to SQL Server can be made either with Windows accounts or SQL Server Logins. Answers A and C are incorrect since mixed mode authentication does not exclusively use Windows accounts or SQL Server logins. Answer D is incorrect since it is not a mode of authentication. 11. Which of the following is an advantage to using mixed mode authentication? A. Users can connect from unknown or untrusted domains. B. The Kerberos security protocol. C. Windows password policies. D. Windows accounts are maintained outside of SQL Server. The correct answer is A. With using mixed mode authentication and SQL Server Logins, users can connect from unknown or untrusted domains. Answers B, C, and D are all advantages to using the Windows Authentication mode exclusively. 12. Which SQL Server tool is changed in the Authentication Mode? A. SQL Server Configuration Manager B. Visual Studio C. SQL Server Management Studio D. The Surface Area Configuration Facet The correct answer is C. The Authentication Mode is changed by rightclicking on the server instance and changing the mode in the security

30 30 Appendix Self Test Appendix section. Answers A, B, and D are incorrect since these tools do not provide access to change this configuration. 13. When you change the Authentication Mode, what action do you need to perform before the mode change takes effect? A. Reboot the server operating system. B. Lock out all the database users. C. Restart SQL Server Agent. D. Restart the SQL Server Instance. The correct answer is D. You need to restart the SQL Server instance in order for an authentication mode change to take effect. Answer A is incorrect since, although rebooting the server operating system will shut down SQL Server and start it when the operating system cycles back up, it is not necessary to do this. Answers B and C are incorrect since taking either of these actions will not cause the authentication mode to change. 14. Jose has ownership of database tables in database A and database B, both of which reside in the same instance of SQL Server where cross database ownership chaining has been enabled. Jose uses a database view in database A to join both tables in order to retrieve the needed data. Jose grants Jack permission to use her database view. What other permissions need to be granted in order for Jack to retrieve data using Jose s view? A. Jack needs to be granted read permissions to the table in database B that is used by the view. B. Since cross database ownership chaining is enabled in this instance, no additional permissions need to be granted. C. The tables used by the view in database A and B need read permissions granted to Jack. D. Jack cannot use Jose s view since she is the owner. Jack will need his own view and permissions. The correct answer is B. With cross database ownership chaining, credentials are only checked on the first object request. Since Jack was granted permission by the object s owner, Jose s credentials will be used to access the tables in database B. Answer A is incorrect since Jack was granted permission to the view by the object owner and cross database ownership chaining was enabled. Jack s credentials would not be checked for accessing the table in database B. In addition, there is no need to permission the database B table to Jack.

SQL Server 2008 Designing, Optimizing, and Maintaining a Database Session 1

SQL Server 2008 Designing, Optimizing, and Maintaining a Database Session 1 SQL Server 2008 Designing, Optimizing, and Maintaining a Database Course The SQL Server 2008 Designing, Optimizing, and Maintaining a Database course will help you prepare for 70-450 exam from Microsoft.

More information

Microsoft SQL Database Administrator Certification

Microsoft SQL Database Administrator Certification Microsoft SQL Database Administrator Certification Training for Exam 70-432 Course Modules and Objectives www.sqlsteps.com 2009 ViSteps Pty Ltd, SQLSteps Division 2 Table of Contents Module #1 Prerequisites

More information

SQL Server 2008 Administration

SQL Server 2008 Administration SQL Server 2008 Administration Real World Skills for ITP Certification and Beyond Tom Carpenter WILEY Wiley Publishing, Inc. Contents Introduction xxi Part i Introducing SQL Server 2008 1 Chapter 1 Understanding

More information

General DBA Best Practices

General DBA Best Practices General DBA Best Practices An Accelerated Technology Laboratories, Inc. White Paper 496 Holly Grove School Road West End, NC 27376 1 (800) 565-LIMS (5467) / 1 (910) 673-8165 1 (910) 673-8166 (FAX) E-mail:

More information

6231A - Maintaining a Microsoft SQL Server 2008 Database

6231A - Maintaining a Microsoft SQL Server 2008 Database 6231A - Maintaining a Microsoft SQL Server 2008 Database Course Number: 6231A Course Length: 5 Days Certification Exam This course will help you prepare for the following Microsoft Certified Professional

More information

Mind Q Systems Private Limited

Mind Q Systems Private Limited MS SQL Server 2012 Database Administration With AlwaysOn & Clustering Techniques Module 1: SQL Server Architecture Introduction to SQL Server 2012 Overview on RDBMS and Beyond Relational Big picture of

More information

MS SQL Server 2014 New Features and Database Administration

MS SQL Server 2014 New Features and Database Administration MS SQL Server 2014 New Features and Database Administration MS SQL Server 2014 Architecture Database Files and Transaction Log SQL Native Client System Databases Schemas Synonyms Dynamic Management Objects

More information

SQL Server 2012 Database Administration With AlwaysOn & Clustering Techniques

SQL Server 2012 Database Administration With AlwaysOn & Clustering Techniques SQL Server 2012 Database Administration With AlwaysOn & Clustering Techniques Module: 1 Module: 2 Module: 3 Module: 4 Module: 5 Module: 6 Module: 7 Architecture &Internals of SQL Server Engine Installing,

More information

Microsoft SQL Server 2008 Administrator's Pocket Consultant

Microsoft SQL Server 2008 Administrator's Pocket Consultant Microsoft SQL Server 2008 Administrator's Pocket Consultant William R. Stanek To learn more about this book, visit Microsoft Learning at http://www.microsoft.com/mspress/books/12755.aspx 9780735625891

More information

Server Consolidation with SQL Server 2008

Server Consolidation with SQL Server 2008 Server Consolidation with SQL Server 2008 White Paper Published: August 2007 Updated: July 2008 Summary: Microsoft SQL Server 2008 supports multiple options for server consolidation, providing organizations

More information

Microsoft SQL Server Security Best Practices

Microsoft SQL Server Security Best Practices Microsoft SQL Server Security Best Practices This white paper contains administrative and operational best practices that should be performed from a security perspective when using Microsoft SQL Server.

More information

MCTS 70-431 Microsoft SQL Server 2005 Implementation & Maintenance

MCTS 70-431 Microsoft SQL Server 2005 Implementation & Maintenance MCTS 70-431 Microsoft SQL Server 2005 Implementation & Maintenance Chapter 0 Introduction to RDBM & SQL Chapter 5 Introducing More Database Objects 0.1 Database Basics 5.1 Stored Procedures 0.2 SQL Basics

More information

$99.95 per user. SQL Server 2008/R2 Database Administration CourseId: 157 Skill level: 200-500 Run Time: 47+ hours (272 videos)

$99.95 per user. SQL Server 2008/R2 Database Administration CourseId: 157 Skill level: 200-500 Run Time: 47+ hours (272 videos) Course Description This course is a soup-to-nuts course that will teach you everything you need to configure a server, maintain a SQL Server disaster recovery plan, and how to design and manage a secure

More information

Designing, Optimizing and Maintaining a Database Administrative Solution for Microsoft SQL Server 2008

Designing, Optimizing and Maintaining a Database Administrative Solution for Microsoft SQL Server 2008 Course 50400A: Designing, Optimizing and Maintaining a Database Administrative Solution for Microsoft SQL Server 2008 Length: 5 Days Language(s): English Audience(s): IT Professionals Level: 300 Technology:

More information

MS-50400 - Design, Optimize and Maintain Database for Microsoft SQL Server 2008

MS-50400 - Design, Optimize and Maintain Database for Microsoft SQL Server 2008 MS-50400 - Design, Optimize and Maintain Database for Microsoft SQL Server 2008 Table of Contents Introduction Audience At Completion Prerequisites Microsoft Certified Professional Exams Student Materials

More information

Administering Microsoft SQL Server 2012 Databases

Administering Microsoft SQL Server 2012 Databases Administering Microsoft SQL Server 2012 Databases Install and Configure (19%) Plan installation. May include but not limited to: evaluate installation requirements; design the installation of SQL Server

More information

Table of Contents. CHAPTER 1 About This Guide... 9. CHAPTER 2 Introduction... 11. CHAPTER 3 Database Backup and Restoration... 15

Table of Contents. CHAPTER 1 About This Guide... 9. CHAPTER 2 Introduction... 11. CHAPTER 3 Database Backup and Restoration... 15 Table of Contents CHAPTER 1 About This Guide......................... 9 The Installation Guides....................................... 10 CHAPTER 2 Introduction............................ 11 Required

More information

MOC 20462C: Administering Microsoft SQL Server Databases

MOC 20462C: Administering Microsoft SQL Server Databases MOC 20462C: Administering Microsoft SQL Server Databases Course Overview This course provides students with the knowledge and skills to administer Microsoft SQL Server databases. Course Introduction Course

More information

Microsoft SQL Server 2012 Administration. Real-World Skills for MCSA Certification and Beyond (Exams 70-461, 70-462, and 70-463)

Microsoft SQL Server 2012 Administration. Real-World Skills for MCSA Certification and Beyond (Exams 70-461, 70-462, and 70-463) Brochure More information from http://www.researchandmarkets.com/reports/2330969/ Microsoft SQL Server 2012 Administration. Real-World Skills for MCSA Certification and Beyond (Exams 70-461, 70-462, and

More information

Server 2008 SQL. Administration in Action ROD COLLEDGE MANNING. Greenwich. (74 w. long.)

Server 2008 SQL. Administration in Action ROD COLLEDGE MANNING. Greenwich. (74 w. long.) SQL Server 2008 Administration in Action ROD COLLEDGE 11 MANNING Greenwich (74 w. long.) contents foreword xiv preface xvii acknowledgments xix about this book xx about the cover illustration about the

More information

50238: Introduction to SQL Server 2008 Administration

50238: Introduction to SQL Server 2008 Administration 50238: Introduction to SQL Server 2008 Administration 5 days Course Description This five-day instructor-led course provides students with the knowledge and skills to administer SQL Server 2008. The course

More information

Installation & Configuration Guide

Installation & Configuration Guide Installation & Configuration Guide Bluebeam Studio Enterprise ( Software ) 2014 Bluebeam Software, Inc. All Rights Reserved. Patents Pending in the U.S. and/or other countries. Bluebeam and Revu are trademarks

More information

Online Transaction Processing in SQL Server 2008

Online Transaction Processing in SQL Server 2008 Online Transaction Processing in SQL Server 2008 White Paper Published: August 2007 Updated: July 2008 Summary: Microsoft SQL Server 2008 provides a database platform that is optimized for today s applications,

More information

6231B: Maintaining a Microsoft SQL Server 2008 R2 Database

6231B: Maintaining a Microsoft SQL Server 2008 R2 Database 6231B: Maintaining a Microsoft SQL Server 2008 R2 Database Course Overview This instructor-led course provides students with the knowledge and skills to maintain a Microsoft SQL Server 2008 R2 database.

More information

NNT CIS Microsoft SQL Server 2008R2 Database Engine Level 1 Benchmark Report 0514a

NNT CIS Microsoft SQL Server 2008R2 Database Engine Level 1 Benchmark Report 0514a NNT CIS Microsoft SQL Server 2008R2 Database Engine Level 1 Benchmark Report 0514a: WIN- 2LR8M18J6A1 On WIN-2LR8M18J6A1 - By admin for time period 6/10/2014 8:59:44 AM to 6/10/2014 8:59:44 AM NNT CIS Microsoft

More information

Microsoft SQL Server 2008 Step by Step

Microsoft SQL Server 2008 Step by Step Microsoft SQL Server 2008 Step by Step Mike Hotek To learn more about this book, visit Microsoft Learning at http://www.microsoft.com/mspress/books/12859.aspx 9780735626041 2009 Mike Hotek. All rights

More information

Upgrading Your SQL Server 2000 Database Administration (DBA) Skills to SQL Server 2008 DBA Skills Course 6317A: Three days; Instructor-Led

Upgrading Your SQL Server 2000 Database Administration (DBA) Skills to SQL Server 2008 DBA Skills Course 6317A: Three days; Instructor-Led Upgrading Your SQL Server 2000 Database Administration (DBA) Skills to SQL Server 2008 DBA Skills Course 6317A: Three days; Instructor-Led About this Course This three-day instructor-led course provides

More information

Sage Estimating. (formerly Sage Timberline Estimating) SQL Server Guide

Sage Estimating. (formerly Sage Timberline Estimating) SQL Server Guide Sage Estimating (formerly Sage Timberline Estimating) SQL Server Guide This is a publication of Sage Software, Inc. Document Number 20001S150301112ER 10/2012 2012 Sage Software, Inc. All rights reserved.

More information

WhatsUp Gold v16.3 Installation and Configuration Guide

WhatsUp Gold v16.3 Installation and Configuration Guide WhatsUp Gold v16.3 Installation and Configuration Guide Contents Installing and Configuring WhatsUp Gold using WhatsUp Setup Installation Overview... 1 Overview... 1 Security considerations... 2 Standard

More information

Migrating MSDE to Microsoft SQL 2008 R2 Express

Migrating MSDE to Microsoft SQL 2008 R2 Express How To Updated: 11/11/2011 2011 Shelby Systems, Inc. All Rights Reserved Other brand and product names are trademarks or registered trademarks of the respective holders. If you are still on MSDE 2000,

More information

form approved June/2006 revised Nov. 2009 Page 1 of 7

form approved June/2006 revised Nov. 2009 Page 1 of 7 revised Nov. 2009 Page 1 of 7 Administrative - Master Syllabus I. Topical Outline Each offering of this course must include the following topics (be sure to include information regarding lab, practicum,

More information

Database Maintenance Guide

Database Maintenance Guide Database Maintenance Guide Medtech Evolution - Document Version 5 Last Modified on: February 26th 2015 (February 2015) This documentation contains important information for all Medtech Evolution users

More information

Microsoft SQL Server Installation Guide

Microsoft SQL Server Installation Guide Microsoft SQL Server Installation Guide Version 2.1 For SQL Server 2012 January 2013 Copyright 2010 2013 Robert Schudy, Warren Mansur and Jack Polnar Permission granted for any use of Boston University

More information

Configuration and Development

Configuration and Development Configuration and Development BENEFITS Enables powerful performance monitoring. SQL Server 2005 equips Microsoft Dynamics GP administrators with automated and enhanced monitoring tools that ensure 24x7

More information

Click Studios. Passwordstate. Installation Instructions

Click Studios. Passwordstate. Installation Instructions Passwordstate Installation Instructions This document and the information controlled therein is the property of Click Studios. It must not be reproduced in whole/part, or otherwise disclosed, without prior

More information

Microsoft SQL Server 2012 Administration

Microsoft SQL Server 2012 Administration PROFESSION Microsoft SQL Server 2012 Administration Adam Jorgensen Steven Wort Ross LoForte Brian Knight WILEY John Wiley & Sons, Inc. INTRODUCTION xxxvii CHAPTER 1: SQL SERVER 2012 ARCHITECTURE 1 SQL

More information

Microsoft SQL Server Installation Guide

Microsoft SQL Server Installation Guide Microsoft SQL Server Installation Guide Version 3.0 For SQL Server 2014 Developer & 2012 Express October 2014 Copyright 2010 2014 Robert Schudy, Warren Mansur and Jack Polnar Permission granted for any

More information

Enterprise and Standard Feature Compare

Enterprise and Standard Feature Compare www.blytheco.com Enterprise and Standard Feature Compare SQL Server 2008 Enterprise SQL Server 2008 Enterprise is a comprehensive data platform for running mission critical online transaction processing

More information

Upon completion of the program, students are given a full support to take and pass Microsoft certification examinations.

Upon completion of the program, students are given a full support to take and pass Microsoft certification examinations. Upon completion of the program, students are given a full support to take and pass Microsoft certification examinations. After completing this course, students will be able to: Plan and install SQL Server

More information

About This Manual. 2 About This Manual

About This Manual. 2 About This Manual Ver.4.1 Important This System Guide applies to RadiNET Pro Ver. 4.1. Please read this System Guide and the User s Manual on the RadiNET Pro CD-ROM carefully to familiarize yourself with safe and effective

More information

CA ARCserve and CA XOsoft r12.5 Best Practices for protecting Microsoft SQL Server

CA ARCserve and CA XOsoft r12.5 Best Practices for protecting Microsoft SQL Server CA RECOVERY MANAGEMENT R12.5 BEST PRACTICE CA ARCserve and CA XOsoft r12.5 Best Practices for protecting Microsoft SQL Server Overview Benefits The CA Advantage The CA ARCserve Backup Support and Engineering

More information

Networking Best Practices Guide. Version 6.5

Networking Best Practices Guide. Version 6.5 Networking Best Practices Guide Version 6.5 Summer 2010 Copyright: 2010, CCH, a Wolters Kluwer business. All rights reserved. Material in this publication may not be reproduced or transmitted in any form

More information

Data Compression in Blackbaud CRM Databases

Data Compression in Blackbaud CRM Databases Data Compression in Blackbaud CRM Databases Len Wyatt Enterprise Performance Team Executive Summary... 1 Compression in SQL Server... 2 Perform Compression in Blackbaud CRM Databases... 3 Initial Compression...

More information

Installation Guide for Pulse on Windows Server 2008R2

Installation Guide for Pulse on Windows Server 2008R2 MadCap Software Installation Guide for Pulse on Windows Server 2008R2 Pulse Copyright 2014 MadCap Software. All rights reserved. Information in this document is subject to change without notice. The software

More information

Below are the some of the new features of SQL Server that has been discussed in this course

Below are the some of the new features of SQL Server that has been discussed in this course Course 10775A: Administering Microsoft SQL Server 2012 Databases OVERVIEW About this Course This five-day instructor-led course provides students with the knowledge and skills to maintain a Microsoft SQL

More information

Portions of this product were created using LEADTOOLS 1991-2010 LEAD Technologies, Inc. ALL RIGHTS RESERVED.

Portions of this product were created using LEADTOOLS 1991-2010 LEAD Technologies, Inc. ALL RIGHTS RESERVED. Installation Guide Lenel OnGuard 2010 Installation Guide, product version 6.4. This guide is item number DOC-110, revision 1.045, May 2010 Copyright 1995-2010 Lenel Systems International, Inc. Information

More information

Database Configuration Guide

Database Configuration Guide Database Configuration Guide Medtech Evolution - Document Version 5 Last Modified on: February 26 th 2015 (February 2015) This documentation contains important information for all Medtech Evolution users

More information

Microsoft SQL Server Staging

Microsoft SQL Server Staging Unified ICM requires that you install Microsoft SQL Server on each server that hosts a Logger or Administration & Data Server (Real Time Distributor and HDS only) component. Microsoft SQL Server efficiently

More information

SQL Server for Database Administrators Course Syllabus

SQL Server for Database Administrators Course Syllabus SQL Server for Database Administrators Course Syllabus 1. Description This course teaches the administration and maintenance aspects of Microsoft SQL Server. It covers all the roles performed by administrative

More information

Portions of this product were created using LEADTOOLS 1991-2009 LEAD Technologies, Inc. ALL RIGHTS RESERVED.

Portions of this product were created using LEADTOOLS 1991-2009 LEAD Technologies, Inc. ALL RIGHTS RESERVED. Installation Guide Lenel OnGuard 2009 Installation Guide, product version 6.3. This guide is item number DOC-110, revision 1.038, May 2009 Copyright 1992-2009 Lenel Systems International, Inc. Information

More information

Course Outline: Course 6317: Upgrading Your SQL Server 2000 Database Administration (DBA) Skills to SQL Server 2008 DBA Skills

Course Outline: Course 6317: Upgrading Your SQL Server 2000 Database Administration (DBA) Skills to SQL Server 2008 DBA Skills Course Outline: Course 6317: Upgrading Your SQL Server 2000 Database Administration (DBA) Skills to DBA Skills Learning Method: Instructor-led Classroom Learning Duration: 3.00 Day(s)/ 24 hrs Overview:

More information

Safexpert Installation instructions MS SQL Server 2008 R2

Safexpert Installation instructions MS SQL Server 2008 R2 Safexpert Installation instructions MS SQL Server 2008 R2 Version: 22.06.2012 IBF-Automatisierungs-und Sicherheitstechnik GmbH A-6682 Vils Bahnhofstraße 8 Tel.: +43 (0) 5677 5353 0 E-mail: office@ibf.at

More information

SQL Server Database Administrator s Guide

SQL Server Database Administrator s Guide SQL Server Database Administrator s Guide Copyright 2011 Sophos Limited. All rights reserved. No part of this publication may be reproduced, stored in retrieval system, or transmitted, in any form or by

More information

Server Installation Procedure - Load Balanced Environment

Server Installation Procedure - Load Balanced Environment Server Installation Procedure - Load Balanced Environment 1. Introduction This document explains a step-by-step procedure in case BackupAgent BV performs an installation of the BackupAgent Server Software

More information

W I S E. SQL Server 2012 Database Engine Technical Update WISE LTD.

W I S E. SQL Server 2012 Database Engine Technical Update WISE LTD. Technical Update COURSE CODE: COURSE TITLE: LEVEL: AUDIENCE: SQSDBE SQL Server 2012 Database Engine Technical Update Beginner-to-intermediate SQL Server DBAs and/or system administrators PREREQUISITES:

More information

NUTECH COMPUTER TRAINING INSTITUTE 1682 E. GUDE DRIVE #102, ROCKVILLE, MD 20850 WEB: www.nutechtraining.com TEL: 301-610-9300

NUTECH COMPUTER TRAINING INSTITUTE 1682 E. GUDE DRIVE #102, ROCKVILLE, MD 20850 WEB: www.nutechtraining.com TEL: 301-610-9300 NUTECH COMPUTER TRAINING INSTITUTE 1682 E. GUDE DRIVE #102, ROCKVILLE, MD 20850 WEB: www.nutechtraining.com TEL: 301-610-9300 MCTS SQL Server 2005 Developer Course Outlines Exam 70 431: TS: Microsoft SQL

More information

Support Document: Microsoft SQL Server - LiveVault 7.6X

Support Document: Microsoft SQL Server - LiveVault 7.6X Contents Preparing to create a Microsoft SQL backup policy... 2 Adjusting the SQL max worker threads option... 2 Preparing for Log truncation... 3 Best Practices... 3 Microsoft SQL Server 2005, 2008, or

More information

How to Configure and Use SQL with EnCase Products

How to Configure and Use SQL with EnCase Products How to Configure and Use SQL with EnCase Products www.ceicconference.com Introduction Databases for Guidance Software Enterprise Products: EnCase ediscovery EnCase CyberSecurity Best Practice for EnCase

More information

intertrax Suite resource MGR Web

intertrax Suite resource MGR Web intertrax Suite resource MGR Web Resource Management Installation Guide Version 4 2012 Copyright 2003-2012 by Salamander Technologies, Inc. Protected by US Patents 5,573,278; 5,596,652; 5,793,882; 6,761,312;

More information

Bosch ReadykeyPRO Unlimited Installation Guide, product version 6.5. This guide is item number DOC-110-2-029, revision 2.029, May 2012.

Bosch ReadykeyPRO Unlimited Installation Guide, product version 6.5. This guide is item number DOC-110-2-029, revision 2.029, May 2012. Bosch ReadykeyPRO Unlimited Installation Guide, product version 6.5. This guide is item number DOC-110-2-029, revision 2.029, May 2012. Copyright 1995-2012 Lenel Systems International, Inc. Information

More information

SQL Server Training Course Content

SQL Server Training Course Content SQL Server Training Course Content SQL Server Training Objectives Installing Microsoft SQL Server Upgrading to SQL Server Management Studio Monitoring the Database Server Database and Index Maintenance

More information

Microsoft SQL Server 2008 R2 Enterprise Edition and Microsoft SharePoint Server 2010

Microsoft SQL Server 2008 R2 Enterprise Edition and Microsoft SharePoint Server 2010 Microsoft SQL Server 2008 R2 Enterprise Edition and Microsoft SharePoint Server 2010 Better Together Writer: Bill Baer, Technical Product Manager, SharePoint Product Group Technical Reviewers: Steve Peschka,

More information

Explain how to prepare the hardware and other resources necessary to install SQL Server. Install SQL Server. Manage and configure SQL Server.

Explain how to prepare the hardware and other resources necessary to install SQL Server. Install SQL Server. Manage and configure SQL Server. Course 6231A: Maintaining a Microsoft SQL Server 2008 Database About this Course Elements of this syllabus are subject to change. This five-day instructor-led course provides students with the knowledge

More information

Beginning SQL Server. 2012 Administration. Apress. Rob Walters Grant Fritchey

Beginning SQL Server. 2012 Administration. Apress. Rob Walters Grant Fritchey Beginning SQL Server 2012 Administration Rob Walters Grant Fritchey Apress Contents at a Glance About the Authors About the Technical Reviewer Acknowledgments Introduction xv xvi xvii xviii Chapter 1:

More information

WHITE PAPER: ENTERPRISE SOLUTIONS. Symantec Backup Exec Continuous Protection Server Continuous Protection for Microsoft SQL Server Databases

WHITE PAPER: ENTERPRISE SOLUTIONS. Symantec Backup Exec Continuous Protection Server Continuous Protection for Microsoft SQL Server Databases WHITE PAPER: ENTERPRISE SOLUTIONS Symantec Backup Exec Continuous Protection Server Continuous Protection for Microsoft SQL Server Databases White Paper: Enterprise Solutions Symantec Backup Exec Continuous

More information

With each new release of SQL Server, Microsoft continues to improve

With each new release of SQL Server, Microsoft continues to improve Chapter 1: Configuring In This Chapter configuration tools Adjusting server parameters Generating configuration scripts With each new release of, Microsoft continues to improve and simplify the daily tasks

More information

How To Use A Microsoft Microsoft Database Server 2012

How To Use A Microsoft Microsoft Database Server 2012 OFFICIAL MICROSOFT LEARNING PRODUCT 10775A Lab Instructions and Lab Answer Key: Administering Microsoft SQL Server 2012 Database Information in this document, including URL and other Internet Web site

More information

ICONICS Choosing the Correct Edition of MS SQL Server

ICONICS Choosing the Correct Edition of MS SQL Server Description: This application note aims to assist you in choosing the right edition of Microsoft SQL server for your ICONICS applications. OS Requirement: XP Win 2000, XP Pro, Server 2003, Vista, Server

More information

Building a Scale-Out SQL Server 2008 Reporting Services Farm

Building a Scale-Out SQL Server 2008 Reporting Services Farm Building a Scale-Out SQL Server 2008 Reporting Services Farm This white paper discusses the steps to configure a scale-out SQL Server 2008 R2 Reporting Services farm environment running on Windows Server

More information

HP StorageWorks. HP PolyServe Software for Microsoft SQL Server administration guide. HP PolyServe Software for Microsoft SQL Server 4.0.

HP StorageWorks. HP PolyServe Software for Microsoft SQL Server administration guide. HP PolyServe Software for Microsoft SQL Server 4.0. HP StorageWorks HP PolyServe Software for Microsoft SQL Server administration guide HP PolyServe Software for Microsoft SQL Server 4.0.0 Part number: T5392-96056 First edition: February 2010 Legal and

More information

Table of Contents. Introduction...9. Installation...17. Program Tour...31. The Program Components...10 Main Program Features...11

Table of Contents. Introduction...9. Installation...17. Program Tour...31. The Program Components...10 Main Program Features...11 2011 AdRem Software, Inc. This document is written by AdRem Software and represents the views and opinions of AdRem Software regarding its content, as of the date the document was issued. The information

More information

SQL SERVER 2014 INSTALL GUIDE. By: Thomas LaRock

SQL SERVER 2014 INSTALL GUIDE. By: Thomas LaRock SQL SERVER 2014 INSTALL GUIDE By: Thomas LaRock SQL SERVER 2014 INSTALL GUIDE TABLE OF CONTENTS Why this guide? 03 Pre-Installation 03 Hardware and Software Requirements 03 Installing Microsoft.NET Framework

More information

Install SQL Server 2014 Express Edition

Install SQL Server 2014 Express Edition How To Install SQL Server 2014 Express Edition Updated: 2/4/2016 2016 Shelby Systems, Inc. All Rights Reserved Other brand and product names are trademarks or registered trademarks of the respective holders.

More information

70-444 PRO: Optimizing and Maintaining a Database Administration Solution by Using Microsoft SQL Server 2005. Practice Test. Version 2.

70-444 PRO: Optimizing and Maintaining a Database Administration Solution by Using Microsoft SQL Server 2005. Practice Test. Version 2. Microsoft 70-444 70-444 PRO: Optimizing and Maintaining a Database Administration Solution by Using Microsoft SQL Server 2005 Practice Test Version 2.7 QUESTION NO: 1 Microsoft 70-444: Practice Exam You

More information

enicq 5 System Administrator s Guide

enicq 5 System Administrator s Guide Vermont Oxford Network enicq 5 Documentation enicq 5 System Administrator s Guide Release 2.0 Published November 2014 2014 Vermont Oxford Network. All Rights Reserved. enicq 5 System Administrator s Guide

More information

Administering Microsoft SQL Server 2012 Databases

Administering Microsoft SQL Server 2012 Databases Administering Microsoft SQL Server 2012 Databases MOC 10775 About this Course This five-day instructor-led course provides students with the knowledge and skills to maintain a Microsoft SQL Server 2012

More information

Introduction. What Is in This Book?

Introduction. What Is in This Book? Introduction What Is in This Book? SQL Server 2005 is Microsoft s product for providing data management and analysis solutions for the enterprise. SQL Server 2005 is a trusted database platform that provides

More information

NovaBACKUP. Storage Server. NovaStor / May 2011

NovaBACKUP. Storage Server. NovaStor / May 2011 NovaBACKUP Storage Server NovaStor / May 2011 2011 NovaStor, all rights reserved. All trademarks are the property of their respective owners. Features and specifications are subject to change without notice.

More information

Designing Database Solutions for Microsoft SQL Server 2012

Designing Database Solutions for Microsoft SQL Server 2012 Course 20465A: Designing Database Solutions for Microsoft SQL Server 2012 Length: Audience(s): 5 Days Level: 300 IT Professionals Technology: Microsoft SQL Server 2012 Type: Delivery Method: Course Instructor-led

More information

Table of Contents. FleetSoft Installation Guide

Table of Contents. FleetSoft Installation Guide FleetSoft Installation Guide Table of Contents FleetSoft Installation Guide... 1 Minimum System Requirements... 2 Installation Notes... 3 Frequently Asked Questions... 4 Deployment Overview... 6 Automating

More information

Installation Guide: Delta Module Manager Launcher

Installation Guide: Delta Module Manager Launcher Installation Guide: Delta Module Manager Launcher Overview... 2 Delta Module Manager Launcher... 2 Pre-Installation Considerations... 3 Hardware Requirements... 3 Software Requirements... 3 Virtualisation...

More information

GoGrid Implement.com Configuring a SQL Server 2012 AlwaysOn Cluster

GoGrid Implement.com Configuring a SQL Server 2012 AlwaysOn Cluster GoGrid Implement.com Configuring a SQL Server 2012 AlwaysOn Cluster Overview This documents the SQL Server 2012 Disaster Recovery design and deployment, calling out best practices and concerns from the

More information

TMS Database Knowledge Tips

TMS Database Knowledge Tips TMS Database Knowledge Tips Tips for the TMS SQL Database June 2008 D14216 Rev 1.0 TABLE OF CONTENTS TABLE OF CONTENTS... 2 DOCUMENT REVISION HISTORY... 4 INTRODUCTION... 5 Tip Format... 5 1 TIPS CATEGORY

More information

Project management - integrated into Outlook

Project management - integrated into Outlook Project management - integrated into Outlook InLoox 5.x configuration guide for Microsoft SQL Server An IQ medialab / OptCon Whitepaper Published: February 2008 Author / copyright: 2008 Heinz-Peter Bross,

More information

Using Delphix Server with Microsoft SQL Server (BETA)

Using Delphix Server with Microsoft SQL Server (BETA) Using Delphix Server with Microsoft SQL Server (BETA) Table of Contents Architecture High level components in linking a SQL Server database to Delphix High level components in provisioning a SQL Server

More information

Best Practices. Best Practices for Installing and Configuring SQL Server 2005 on an LSI CTS2600 System

Best Practices. Best Practices for Installing and Configuring SQL Server 2005 on an LSI CTS2600 System Best Practices Best Practices for Installing and Configuring SQL Server 2005 on an LSI CTS2600 System 2010 LSI Corporation August 12, 2010 Table of Contents _Toc269370599 Introduction...4 Configuring Volumes

More information

Optimizing Performance. Training Division New Delhi

Optimizing Performance. Training Division New Delhi Optimizing Performance Training Division New Delhi Performance tuning : Goals Minimize the response time for each query Maximize the throughput of the entire database server by minimizing network traffic,

More information

Installation Guide for Pulse on Windows Server 2012

Installation Guide for Pulse on Windows Server 2012 MadCap Software Installation Guide for Pulse on Windows Server 2012 Pulse Copyright 2014 MadCap Software. All rights reserved. Information in this document is subject to change without notice. The software

More information

Sophos for Microsoft SharePoint startup guide

Sophos for Microsoft SharePoint startup guide Sophos for Microsoft SharePoint startup guide Product version: 2.0 Document date: March 2011 Contents 1 About this guide...3 2 About Sophos for Microsoft SharePoint...3 3 System requirements...3 4 Planning

More information

Metalogix SharePoint Backup. Advanced Installation Guide. Publication Date: August 24, 2015

Metalogix SharePoint Backup. Advanced Installation Guide. Publication Date: August 24, 2015 Metalogix SharePoint Backup Publication Date: August 24, 2015 All Rights Reserved. This software is protected by copyright law and international treaties. Unauthorized reproduction or distribution of this

More information

Administering Microsoft SQL Server 2012 Databases

Administering Microsoft SQL Server 2012 Databases Course 10775 : Administering Microsoft SQL Server 2012 Databases Page 1 of 13 Administering Microsoft SQL Server 2012 Databases Course 10775: 4 days; Instructor-Led Introduction This four-day instructor-led

More information

Maintaining a Microsoft SQL Server 2008 Database

Maintaining a Microsoft SQL Server 2008 Database Maintaining a Microsoft SQL Server 2008 Database Course 6231A: Five days; Instructor-Led Introduction Elements of this syllabus are subject to change. This five-day instructor-led course provides students

More information

10775A Administering Microsoft SQL Server 2012 Databases

10775A Administering Microsoft SQL Server 2012 Databases 10775A Administering Microsoft SQL Server 2012 Databases Five days, instructor-led About this Course This five-day instructor-led course provides students with the knowledge and skills to maintain a Microsoft

More information

SQL Server AlwaysOn. Michal Tinthofer 11. Praha 2013. What to avoid and how to optimize, deploy and operate. Michal.Tinthofer@Woodler.

SQL Server AlwaysOn. Michal Tinthofer 11. Praha 2013. What to avoid and how to optimize, deploy and operate. Michal.Tinthofer@Woodler. SQL Server AlwaysOn What to avoid and how to optimize, deploy and operate. 11. ročník největší odborné IT konference v ČR! Michal Tinthofer Michal.Tinthofer@Woodler.eu Praha 2013 Overview Introduction

More information

Windows Server 2008 Essentials. Installation, Deployment and Management

Windows Server 2008 Essentials. Installation, Deployment and Management Windows Server 2008 Essentials Installation, Deployment and Management Windows Server 2008 Essentials First Edition. This ebook is provided for personal use only. Unauthorized use, reproduction and/or

More information

MAGIC THipPro - SQL Server Installation - using the example of

MAGIC THipPro - SQL Server Installation - using the example of MAGIC THipPro - SQL Server Installation - using the example of Express Wolfgang Peters 1 Installation of the SQL Server Configuration of the SQL Server Create SQL User Create empty database Install SQL

More information

Version 4.61 or Later. Copyright 2013 Interactive Financial Solutions, Inc. All Rights Reserved. ProviderPro Network Administration Guide.

Version 4.61 or Later. Copyright 2013 Interactive Financial Solutions, Inc. All Rights Reserved. ProviderPro Network Administration Guide. Version 4.61 or Later Copyright 2013 Interactive Financial Solutions, Inc. All Rights Reserved. ProviderPro Network Administration Guide. This manual, as well as the software described in it, is furnished

More information

$99.95 per user. SQL Server 2005 Database Administration CourseId: 152 Skill level: 200-500 Run Time: 30+ hours (158 videos)

$99.95 per user. SQL Server 2005 Database Administration CourseId: 152 Skill level: 200-500 Run Time: 30+ hours (158 videos) Course Description This popular LearnItFirst.com course is a soup-to-nuts course that will teach you how to choose your edition, install, configure and manage any edition of. You ll learn the details of

More information

Working with SQL Server Agent Jobs

Working with SQL Server Agent Jobs Chapter 14 Working with SQL Server Agent Jobs Microsoft SQL Server features a powerful and flexible job-scheduling engine called SQL Server Agent. This chapter explains how you can use SQL Server Agent

More information

Designing and Deploying Messaging Solutions with Microsoft Exchange Server 2010 Service Pack 2 20465B; 5 days, Instructor-led

Designing and Deploying Messaging Solutions with Microsoft Exchange Server 2010 Service Pack 2 20465B; 5 days, Instructor-led Designing and Deploying Messaging Solutions with Microsoft Exchange Server 2010 Service Pack 2 20465B; 5 days, Instructor-led Course Description This five-day, instructor-led course provides you with the

More information