|
You have a SQL Server 2005 sales database experiencing performance problems because of heavy I/O activity. You decide to create a snapshot of this database every hour, stored on a separate physical disk array and use that for reporting queries. However the queries still seem slow immediately after snapshot creation. Why? The snapshot still queries the original database. The snapshot of the production database will only reduce I/O for changed pages. Any data that has not been changed will be read from the source database, which is in this case is experiencing heavy I/O itself. In Reporting Services 2005, how is Report Builder typically deployed to end users? One click deployment launched from a menu on the Report Manager home page One click deployment is fast and easy, users click the menu on the Report Manager page. It is not a web application, but rather a .Net Winform application. Native Web Services require what type of endpoint in SQL Server 2005? HTTP endpoints Native XML Web Services in SQL Server 2005 require HTTP endpoints to communicate with clients. If you have a replication scenario with one publisher, one distributor and one subscriber and the transaction isolation level is not set to serializable, what happens when a transaction fails on the publisher? It is still sent to the distributor and executed on the subscriber. A transaction that fails in the publication database is still sent to the distributor and subscriber. YUou can trap the error, but you would need to trap it on the subscriber as well. When creating a full-text index on a BLOB column (image, binary or varbinary) where a file is stored, what happens if an incorrect file prefix is stored in the type column? (For instance: if a word document is stored in the image or a varbinary(MAX) column and the value of the type column is '.pdf'. The row is not full-text indexed and an error message is written to the SQL Server Error Log The answer is the row is not full-text indexed and an error message is written to the SQL Server Error Log. No columns in the row are full-text indexed and an error message is written to the SQL Server Error Log. In SQL Server 2005 Full-Text Search, you set up a replacement set like this: <replacement> <pat>SS2K5 </pat> <sub>SQL Server 2005 </sub> <sub>SQL Server 2K5 </sub> </replacement> A search for "SS2K5" doesn't return results with fields that you know contain "SS2K5". What is wrong? The replacement set does not return results with the search terms, only the specified replacements. In the SQL Server 2005 thesaurus XML configuration file, what is the expansion set? Expansion sets are synonyms for the search term and returned as results if they appear along with the search term. The expansion set is the group of values that are synonyms and can be substituted for the search term. For example, an expansion set can be "SS2K5", "SQL Server 2005", "SQL2K5". In this case, fields with any of these 3 values would be returned as a result for searches on "SQL Server 2005". You are initiating a new replication subscription for one of the remote offices, but don't want to transfer it across the network. The snapshot files are 725MB, too large for your CD burner and there is no tape drive at the remote office. What feature of SQL Server 2005 would help you get the snapshot transferred? Compressed Snapshots In SQL Server 2005, you can specify a snapshot to be compressed and it will be compressed using the CAB format. If it compresses enough, you should be able to burn it onto a CD. The TRUSTWORTHY database property is by default? Off The correct answer is off – The TRUSTWORTHY database property indicates whether the installed instance of SQL Server trusts the database such that it can reach out and perform actions outside the database. By default it is OFF such that the database to reduce certain threats that can result from attaching a database that contains potentially harmful code Where are Notification Services event messages logged in SQL Server 2005? In the Windows Application Log Event messages are logged in the Windows Application log. What would happen when you execute the code below in Query Analyzer (SQL Server 2000) USE Northwind GO CREATE PROCEDURE sp_who AS PRINT 'SURPRISE' GO EXECUTE sp_who Information about current SQL Server users and processes is displayed. The explanation could be found in the Books Online under Creating a Stored Procedure. One of the sections, named System Stored Procedures which describes how SQL Server looks up the system stored procedure has this note: Important If any user-created stored procedure has the same name as a system stored procedure, the user-created stored procedure will never be executed. How is Thesaurus data configured in SQL Server 2005 Full-Text Search? An XML file in the file system named tsxxx.xml where xxx is a code. The thesaurus file for SQL Server 2005 is an XML file containing data and stored in SQL_Server_install_path\Microsoft SQL Server\MSSQL.1\MSSQL\FTDATA\ directory. There is one for each language and it is named tsxxx_.xml, where xxx is the three letter language code. What does a report model provide in SQL Server 2005 Reporting Services? A report model provides familiar business names for database tables and fields A Report model provides business names and terms for database fields and tables. It allows for predefined relationships between tables as well as grouping items together logically. What can tracer tokens measure in SQL Server 2005 transactional replication? 1 and 3 Tracer tokens measure two things. One is the amount of time elapsed between a command being committed on the publisher and being written to the distribution database. The other is from the writing to the distribution database and being committed to a subscriber. This allows you to determine the latencies for transactions moving through your replication topology. You want to script the execution of an Integration Services package from the command line for use from a Unix scheduler. What utility would you use? dtexec.exe The dtexec.exe utility is used to configure and execute Integration Services packages from the command line. What does the sqlwb utility do? Opens SQL Server 2005 Management Studio. sqlwb.exe actually opens Management Studio and can be configured to optionally open a solution, project, or script file when it starts. You want to automate the installation of SQL Server 2005 using SMO for your custom application and ensure that the encryption features are available with a service master key. What method would you call to create this key? The Regenerate method under the ServiceMasterKey object. To create a Service Master Key in SMO, you would get a handle to the ServiceMasterKey object under the Server object and then call the Regenerate method. How can you determine which Service Broker ports are being used on your server? Query the system catalog view: sys.conversation_endpoints The system catalog view sys.conversation_endpoints will show you which Service Broker endpoints, and therefore ports, are open on your server. In Full-Text Search, what is word breaking? Determining word boundaries. Word breaking involves finding the boundaries of a word. This is different for different languages and SQL Server 2005 includes word breakers for 23 languages. Can you call Notification Services APIs from unmanaged code? Yes, but only for simple subscriptions. Notification Services can be called from unmanaged code through a COM interface for simple subscriptions only. Condition based subscriptions are not supported through COM Interop. Which of the following is true about the Raw File Source in SQL Server 2005 Integration Services? It does not support an error output. The raw file source has only one output and does not support an error output. It also reads faster than other data sources because it has no parsing or translation and does not use a connection manager.
|