Google Analytics for SSIS (SQL Server Integration Services)
Update: There is a new 1.7 Version of Google Analytics Source for SSIS
In the modern age of the technology, almost...
2014-05-20
3,390 reads
Update: There is a new 1.7 Version of Google Analytics Source for SSIS
In the modern age of the technology, almost...
2014-05-20
3,390 reads
In a previous post, I looked at the ways in which I could insert files into a Filetable folder programmatically....
2014-05-19
1,358 reads
A step by step explanation on one way to get a consecutive period of months, which could easily be adapted...
2014-05-19
668 reads
A couple of years ago I put together a training session to demonstrate various types of backups and restores. The driving...
2014-05-19
1,292 reads
It’s Monday time for this week’s weekly link round-up. If you want to catch these links “live” (so exciting), follow...
2014-05-19
607 reads
(Be sure to checkout the FREE SQLpassion Performance Tuning Training Plan – you get a weekly email packed with all the...
2014-05-19
1,535 reads
Two days felt like a long time, so we found a cloud server with 16 cores we could use. We...
2014-05-19
610 reads
Most people know that logon triggers can be dangerous if you aren’t careful. And if you didn’t know, well, logon...
2014-05-27 (first published: 2014-05-19)
1,758 reads
A brand new & long awaited feature “Backup Encryption” along with SQL Server 2014. Microsoft reveled this upcoming feature in PASS...
2014-05-26 (first published: 2014-05-19)
5,756 reads
These are my impressions from the PASS Business Analytics Conference 2014 in San José, California.
The first part of this series...
2014-05-19
339 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