| |||||
|
|
Microsoft SQL Server FAQs Part: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 (Continued from previous part...)
In Service Broker for SQL Server 2005, you encounter the following setting in one of your queues.
Answer: This means that all messages in a conversation are retained in the queue until the conversation ends.
Can a deterministic computed column be full-text indexed in SQL Server 2005? Submitted by Matija Lah
Answer: Yes
What does the PAD_INDEX parameter do when you create an index in SQL Server 2005?
Answer: Determines if space is left at the intermediate pages of indexes.
In SQL Server 2005, what does the CREATE SERVICE command do?
Answer: Adds a new Service Broker set of tasks.
What does HAS_DBACCESS() do? Answer: Returns a 1 if the current user has access to the database passed in. Explanation: This function returns a 1 if the current user has access to the database named passed to the function and 0 if they do not. It is a way to check access before changing to that database. In SQL Server 2005 T-SQL, what does the CONTINUE statement do?
Answer: Restarts a WHILE loop.
You need to remove a large table from your database. This table has over 200 extents of data and you issue a "DROP TABLE MYLARGETABLE". How is this handled in SQL Server 2005?
Answer: A two part scheme of destruction with a virtual sniper marking each allocation unit for deletion inside the transaction. Then in smaller separate transactions of destruction the allocation units are dropped.
If you set RETENTION = ON in your SQL Server 2005 Service Broker queue, what messages are retained?
Answer: Incoming and outgoing messages.
(Continued on next part...)
Part: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 |
||||