What Are You Going to Do About SQL Server 2008?
With support ending soon, Brent Ozar wonders what all the companies still running SQL Server 2008 are planning to do with those instances.
2019-03-30
With support ending soon, Brent Ozar wonders what all the companies still running SQL Server 2008 are planning to do with those instances.
2019-03-30
In order for a database system to work, you often need to provide programmable server objects. I’ve written very few databases that didn’t include agent jobs and triggers, or that didn’t require XEvents for diagnostics.
2019-03-30
As I have seen the benefit for having a post on Oracle database vs. SQL Server architecture, let’s move onto the next frontier- High Availability…or what people think is high availability architecture in the two platforms.
2019-03-30
409 reads
2019-03-22
620 reads
2019-03-05
904 reads
Learn about how selecting a SQL Server index fill factor can impact storage and performance. Check out the included scripts to help give you better insight.
2019-02-25
3,023 reads
2018-12-28
703 reads
2018-12-17
833 reads
2018-12-11
895 reads
It's probably not your fault, but relying on the defaults of a SQL Server installation might be impacting the performance of your instance.
2021-01-29 (first published: 2018-11-01)
7,215 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 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