You are on page 1of 13

Which service pack level is required if you are using Windows 2000 Server for your SQL Server

2005 installation? SP1 SP2 SP3 SP4 Score: 1 out of 1

Which minimum service pack level is required if you are using Windows 2003 Server for your SQL Server 2005 installation? SP1 SP2 SP3 SP4 Score: 0 out of 1

Which SQL Server 2005 edition does NOT require at least 512 MB of memory? SQL Server Express Edition SQL Server Workgroup Edition SQL Server Developer Edition SQL Server Standard Edition Score: 1 out of 1 How many default instances can you install on a single SQL Server server? 1 2 3 4

Which SQL Server 2005 services require that you install them with their own account? SQL Server Agent Log Reader Agent Replication Agent All of the above Score: 1 out of 1

Which authentication mode lets you use both SQL Server logins and Windows logins? Kerebos authentication Windows Mixed Mode Network Service account Score: 1 out of 1

Which upgrade data-movement method requires that users not be accessing the database you want to upgrade? Copy Database Wizard Detach/attach Backup/restore Manual scripting Score: 1 out of 1

Which of the following statements can you use to create a filegroup? ALTER DATABASE ADD FILE ALTER DATABASE MODIFY FILEGROUP ALTER DATABASE ADD FILEGROUP ALTER DATABASE REMOVE FILEGROUP Score: 1 out of 1

Which of the following are valid filegroup types? (Choose all that apply.) Read-only Write-only Primary All of the above Score: 0 out of 1

Which of the following is a prerequisite for Database Mail? Service Broker Database Mirroring Extended MAPI Profile Microsoft Exchange Server Score: 0 out of 1

Which of the following sentences is true for Database Mail? A Database Mail account is a collection of Database Mail profiles. Each Mail Database Host user account must have a Database Mail profile associated. A Database Mail profile is a collection of Mail Database Host user accounts.

A Database Mail profile is a collection of Database Mail accounts. Score: 0 out of 1

Which of the following sentences is true for recovery models? In the Simple recovery model, most transactions are minimally logged. In the Full recovery model, most transactions are minimally logged. In the Bulk-Logged recovery model, all transactions are logged. In the Simple recovery model, all transactions are logged. Score: 0 out of 1

Which of the following methods let you change the database recovery model? The sp_configure stored procedure Database properties in SSMS ALTER DATABASE All of the above Score: 0 out of 1

Which of the following restore operations are NOT allowed in the Simple recovery model? (Choose all that apply.) Point-in-Time Restore Differential Page Restore All of the above Score: 0 out of 1

Which of the following are valid SQL Server principals? (Choose all that apply.) Fixed server roles Windows logins SQL Server logins All of the above Score: 1 out of 1

Which of the following sentences are true regarding authentication modes? (Choose all that apply.) Windows authentication is the preferred authentication mode. Mixed Mode authentication does not let you apply password policies. Mixed Mode authentication is the default authentication mode. None of the above Score: 1 out of 1

Which of the following statements let you create a SQL Server login called Peter? (Choose all that apply.) CREATE LOGIN Peter FROM SQL EXEC sp_addlogin Peter,Pa$$w0rd EXEC sp_grantlogin Peter,Pa$$w0rd None of the above Score: 0 out of 1

Which of the following sentences is true for database schemas? Database schemas define the database catalog. Database schemas group database objects. Database schemas group databases. Database schemas define the table catalog. Score: 0 out of 1 .

Which of the following statements let you appropriately create a database user called Peter mapped to the login Peter? (Choose all that apply.) CREATE USER Peter FROM Peter CREATE USER Peter FOR LOGIN Peter CREATE USER Peter FOR SQL_LOGIN Peter All of the above Score: 0 out of 1

Which of the following sentences are true when talking about database roles? (Choose all that apply.) You can nest database roles. Database roles are fixed. You can add fixed server roles to database roles. None of the above. Score: 0 out of 1

Which of the following statements enables you to create a database certificate? CREATE CERTIFICATE MyCert WITH SUBJECT=Certificate Subject CREATE CERTIFICATE MyCert,Certificate Subject CREATE CERT MyCert,Certificate Subject CREATE CERT MyCert WITH TARGET= Certificate Subject Score: 0 out of 1

Which of the following sentences are true for the database master key? (Choose all that apply.) The database master key is not optional. The database master key is mandatory if you want to encrypt data. The database master key is created automatically when you create the first certificate. The database master key is created manually. Question was not attempted Score: 0 out of 1

When do you need to specify an external data source by using a linked server? When you need to access a different database. When you need to access a different instance. When you need to access a different database schema When you need to access objects of a different user owner. Score: 1 out of 1

What do you need to specify to create a linked server? (Choose all that apply.) OLE DB Data Source ODBC Data Source ODBC Provider All of the above Score: 0 out of 1

Which of the following sentences are true for linked server security? (Choose all that apply.) The security mode is defined at the instance level. The default configuration is self-mapping. The default configuration is delegation. The security mode is not defined per linked server. Score: 0 out of 1

Which data type would you use to store up to 2 GB of text data and still be able to query and manipulate it by using standard functions and operators? text varbinary varchar(max) varchar Score: 1 out of 1 Which of the following objects can you use in a check constraint? (Choose all that apply.) System function Stored procedure User-defined function (UDF) Both A and C

What are the requirements to create a CLR based user-defined type? (Choose all that apply.) The CLR must be enabled for the database. The CLR must be enabled for the instance. A class created with a Microsoft .NET language. All of the above. Score: 1 out of 1

Which levels of the index can have multiple pages? (Choose all that apply.) Root Intermediate B-tree All of the above

Which type of index physically orders the rows in a table? Unique index Clustered index Nonclustered index Foreign key Score: 1 out of 1

Which index option causes SQL Server to create an index with empty space on the leaf level of the index? PAD_INDEX FILLFACTOR MAXDOP IGNORE_DUP_KEY

Which index option causes an index to be created with empty space on the intermediate levels of the index? PAD_INDEX FILLFACTOR MAXDOP IGNORE_DUP_KEY Score: 0 out of 1

Which of the following aggregate functions returns a row count as an integer? AVG COUNT_BIG STDEV COUNT

Which keyword is used to create a column alias? STR AS FROM COLUMN

What are the three types of cursors available in SQL Server? (Choose all that apply.) Static Dynamic Keyset All of the above

Which objects can you partition? Tables Indexes Both A and B None of the above

Which operator do you use to move partitions between tables? SWITCH MERGE SPLIT INTERSECT

Which of the following options can prevent a table from being dropped? CHECK OPTION SCHEMABINDING UNION QUOTED_IDENTIFIER

Which of the following are valid commands to use within a function? UPDATE Table1 SET Column1 = 1 SELECT Column1 FROM Table2 WHERE Column2 = 5 EXEC sp_myproc none of the above

Which stored procedure option regenerates the query plan every time a procedure is executed? ENCRYPTION RECOMPILE VARYING EXECUTE AS

Which command is used to save the data modified in a transaction so that other connections can see it? DELETE FROM TRANSACTION COMMIT TRANSACTION UPDATE TRANSACTION SELECT TRANSACTION

Which of the following settings are required to create an indexed view? (Choose all that apply.) QUOTED_IDENTIFIER ON Three-part names SCHEMABINDING Both A and C

Which of the following operators is allowed in a trigger? CREATE INDEX RESTORE DATABASE INSERT ALTER DATABASE

Which of the following syntaxes will create a global temporary table? CREATE TABLE #TableName (Column INT) CREATE TABLE ##TableName (Column INT) DECLARE @TableName TABLE (Column INT) SELECT CONVERT (INT, NULL) INTO #TableName

What does a partition scheme define? Boundary points for a partition Physical storage for a partition A rowset that returns the values in a partition The number of the partition containing a specified value

XML schemas provide which functions? (Choose all that apply.) Indexes to improve performance Validation constraints for the XML instance Data type information about the XML instance Both B and C

Under which circumstances should you use the nodes() method instead of OPENXML? (Choose all that apply.) The XML data is already stored in an XML data type column. You need to extract XML data out of multiple columns, not just a single source. You need to use an XPATH expression not supported by OPENXML but supported by the XML data type implementation. All of the above.

You might also like