Finding Objects in a Schema #SQLNewblogger
Another post for me that is simple and hopefully serves as an example for people trying to get blogging as...
2018-09-27
1,131 reads
Another post for me that is simple and hopefully serves as an example for people trying to get blogging as...
2018-09-27
1,131 reads
Data classification may not be fun or even interesting, but it is necessary.
2018-09-26
74 reads
2018-09-26
578 reads
Today I hosted a webinar with Gene Kim (@RealGeneKim) and we had a fantastic discussion. I was slightly star struck...
2018-09-25
248 reads
If you have a schema you want to retire, here's a method for moving all objects inside that schema to a new one.
2018-09-25
47,694 reads
The announcement of the next version of SQL Server excites Steve.
2018-09-25
324 reads
2018-09-25
774 reads
2018-09-24
77 reads
One of the more annoying things I’ve found in SSIS/SSMS is trying to import CSV files for some quick analysis....
2018-09-21 (first published: 2018-09-12)
2,295 reads
2018-09-20
60 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...
Yes, luxury packages in Andaman are highly popular among honeymooners due to their romantic...
Fisher Phillips is looking for a Financial Systems Administrator to help support and improve our financial...
Employee owned company, been around for over 50 years. Hybrid opportunity, looking folks in Pacific...
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;See possible answers