SSIS - Event Handler Performance
Event handlers are a great tool for managing errors and other events that occur during the execution of a package...
2010-07-20
1,141 reads
Event handlers are a great tool for managing errors and other events that occur during the execution of a package...
2010-07-20
1,141 reads
The SQL Server DMV Starter Pack is a free eBook (84 pages) that describes 28 different ways that DMVs can...
2010-07-20
4,908 reads
Recently, I have begun my quest of mastering SSAS. I realize that it may take time and I am more...
2010-07-19
514 reads
Event handlers are a great tool for managing errors and other events that occur during the execution of a package...
2010-07-19
3,969 reads
Many years ago, in the dark ages of DTS I created a little app that would take two parameters and...
2010-07-19
663 reads
We’ve had a few people in the SQL community find jobs lately and many of them attributable to their network....
2010-07-19
523 reads
NB - to my regular blog readers, excuse the tangent here, but the local provincial extremists attempted something in my 'hood...
2010-07-19
6,768 reads
I send my board of directors nomination application to PASS and asked for a confirmation. I always worry that something...
2010-07-19
675 reads
Right, all eldritch tomes are to be closed and Elder Signs are to be put away during this course.
Welcome to...
2010-07-19
758 reads
Yes, I’m going to run for the PASS Board of Directors. I have my application and will be sending it out...
2010-07-19
540 reads
When I put together the invitation for T-SQL Tuesday #202, I wasn't sure what...
By Steve Jones
My life has some crazy travel stretches for sure. Between speaking, office visits, customer...
In Part 1, we saw how ‘Vamana’ represents vectors as nodes, connects them with...
Comments posted to this topic are about the item Server-Level Table sizes
Comments posted to this topic are about the item Optional Parameter Plan Optimization in...
There is a table tmp_tab:
CREATE TABLE tmp_tab ( id int, val int );
INSERT INTO tmp_tab VALUES (1, 1), (2, NULL), (3, 3), (4, 4), (5, 5);You want to order the rows ids by the following expression:
ISNULL(val, id) + 1Which of the following queries produces the expected ordering and why? (Select all correct) See possible answers