PASS Summit 2018 – Keynote Day 2 Live Blog
It’s keynote time again! The second full day of the conference starts now, and like yesterday, I’ll be live-blogging during...
2018-11-08
194 reads
It’s keynote time again! The second full day of the conference starts now, and like yesterday, I’ll be live-blogging during...
2018-11-08
194 reads
Today is the first full day of the PASS Summit in Seattle, Washington. This is the 20th year of the...
2018-11-07
310 reads
It has been almost impossible to avoid reading about the numerous large-scale data breaches reported on a seemingly daily basis....
2018-10-02 (first published: 2018-09-25)
1,953 reads
I am honored to have been selected to be a presenter at this year’s PASS Summit coming up this November....
2018-06-06
292 reads
Temp tables are very handy when you have the need to store and manipulate an interim result set during ETL...
2018-05-29
461 reads
Encapsulating business logic into data movement and presentation is a critical part of a stable information management strategy. Too often,...
2018-05-17
300 reads
If data is the new oil, then the web is the world’s biggest gas station. Every day a few billion people...
2018-05-08
269 reads
One of the most underutilized assets in SQL Server Management Studio is the SSMS project. Within Management Studio, one can...
2017-12-22
544 reads
When I first moved to the city where I now live, I found an oil change place just a couple...
2017-12-21
384 reads
Since I started working as a data professional some 15 years ago, I’ve had an enjoyable and successful career. I...
2017-12-20
346 reads
By gbargsley
It's 2 AM. Your phone is going off. Users can't connect to the application,...
By Steve Jones
I discovered a procedure recently that I wasn’t aware of: sp_sequence_get_range. This post looks...
By Arun Sirpal
After a year away getting to grips with AI and its application across the...
hi i was hoping for a more elegant way of setting a pkg level...
I have a plan which in sys.query_store_plan shows: Last_compile_start_time of 2026-04-23 00:13:00.7670000 +00:00 Last_execution_time...
Fisher Phillips is looking for a Financial Systems Administrator to help support and improve our financial...
I want to create a JSON document that contains data from this table:
TeamID TeamNameCity YearEstablished 1 Cowboys Dallas 1960 2 Eagles Philadelphia 1933 3 Packers Green Bay 1919 4 Chiefs Kansas City 1960If I run this code, what document(s) is/are returned?
SELECT json_objectagg( n.city : n.TeamName) FROM dbo.NFLTeams n;See possible answers