Viewing 15 posts - 1 through 15 (of 16 total)
I'd be good to note that XACT_STATE = 1 means the transaction is commitable.
November 20, 2019 at 12:43 am
I think the correct answer depends upon how the clustered index is created. The posed question is not explicit in that, only in how the constraint was created.
July 24, 2017 at 3:36 pm
Could you add a computed persistent field to this table, with a calculation that would be useful to index? If so, index this computed persistent field and use it for...
January 13, 2017 at 11:38 am
EXCEPT is much faster and finds differences in the attributes not just differences in which primary keys exist.
One thing I forgot to note. To find the differences between two...
January 14, 2015 at 10:57 am
I found that Varchar(Max) and blob type values had to be specially handled. Our solution was to only compare the first 8000 characters. Also timestamp columns need different...
January 13, 2015 at 5:28 pm
We had this situation comparing two copies of a history table. We had to compare the natural key less than history_id where the natural key was not unique. ...
January 13, 2015 at 5:26 pm
Ditto
The question asked if count would ignore values not ignore counting the row. I think the stated answer is wrong.
Max, in effect, handles Nulls as a lower possible value....
January 8, 2015 at 7:28 pm
My technique is to put all of those queries at the end. Then I can enable the test queries or the final result query as a block of text...
November 12, 2014 at 7:39 pm
Two queries that do not have "ORDER BY" running at the about the same time might give results in the same order but might not. For example: the order...
April 11, 2013 at 12:19 pm
Hmm. Selected 1 and 3 and was told wrong.
November 28, 2012 at 5:13 pm
When answering I could see it was likely the QOD poser made a mistake and what the possible intended answer was. It was also possible it was a trick...
September 20, 2011 at 10:02 am
Agreed. But given the code as provided there was a valid set of answers. The second set of inserts would insert two records, both successfully inserting and failing...
September 19, 2011 at 3:52 pm
My guesses were the same as yours. I've just tried the code on SQL-Server MS 2005 and empirically SSMS agrees with us also. The official answer is not...
September 19, 2011 at 3:01 pm
Viewing 15 posts - 1 through 15 (of 16 total)