Why Doesn’t My Audit Track Anything
When you create a server audit, one of the things that might surprise you is that the audit doesn’t record...
2010-06-01
326 reads
When you create a server audit, one of the things that might surprise you is that the audit doesn’t record...
2010-06-01
326 reads
A holiday in the US, commemorating the men and women who have died in the service of our country.
Most...
2010-05-31
1,525 reads
2010-05-31
61 reads
I wrote about setting up a basic server audit recently. That showed about how a server level audit is set...
2010-05-28
3,556 reads
I got new drives for my Windows Home Server the other day and decided to add some space to the...
2010-05-27
1,043 reads
A new technique to help anonymize medical research data has been developed, and could help with other types of data, but there is an issue.
2010-05-27
100 reads
One of my goals this year was to spend some time learning Reporting Services. Not necessarily do the 10,000 hours...
2010-05-26
2,124 reads
This year SQLServerCentral is sponsoring another track at the SQL Connections conference in Las Vegas.
2010-05-26
163 reads
I saw someone post a question recently about tracking down who deleted a stored procedure. I suggested the default trace,...
2010-05-25
964 reads
Are you working too hard? Is it worth it? Steve Jones says that it is not and that you should push back.
2010-05-25
361 reads
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...
I’m excited to announce the release of a new open-source project that fully automates...
Comments posted to this topic are about the item Optional Parameter Plan Optimization in...
Comments posted to this topic are about the item AI Experience Gap that we...
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