Viewing 12 posts - 16 through 27 (of 27 total)
Chris, it appears that SQL Server requires the WITH SCHEMABINDING function option in order for a function to be identified as deterministic.
Here is a completely meaningless sample to show how...
February 13, 2008 at 1:21 pm
I got the answer "correct" by choosing what I thought was the best choice out of the available options, but really, as Yelena pointed out, the answer is "it depends"....
February 13, 2008 at 11:07 am
The point made in a post above about using a scalar-valued function in the WHERE clause resulting in a full table scan is incorrect. When the function has no parameters...
October 16, 2007 at 9:32 am
I answered D and I was about to write that I agree with the above comments. However, after reviewing the question I believe the correct answer for the current wording...
August 3, 2007 at 9:23 am
I completely agree with the previous comments. The options were poorly worded.
May 15, 2007 at 8:40 am
The explanation incorrectly states that & performs a logical and operation between the operands but then proceeds to demonstrate how it performs a bitwise and operation. The...
April 11, 2007 at 9:08 am
I would have answered "(E). All of the above" except for the fact that "(D). ALTER TABLE and ALTER PROCEDURE only" was one of the above. So I ruled out...
July 3, 2006 at 9:32 am
I answered "correctly" based on the available answers. But ACID is not about concurrency support it's about transactional support. A system could support ACID transactions without supporting concurrency (sort of...
June 7, 2006 at 9:11 am
Jeff Moden's post using syscolumns gave me inspiration for a simple solution using new features of SQL Server 2005. It is similarly limited to the number of rows in sys.all_columns...
April 14, 2006 at 9:59 am
Here is a solution using CLR integration. It comes in around 5 seconds on my machine for the range range 5 to 567720.
public partial class UserDefinedFunctions
...
April 12, 2006 at 11:20 am
Wouldn't the correct answer be 'This is an interesting table ' (with an extra space on the end)?
February 4, 2005 at 9:57 am
Viewing 12 posts - 16 through 27 (of 27 total)