Configure SQL Server 2017 on Linux with mssql-conf, the Linux way
The configuration of any system plays a vital role in its working efficiently. However, configuring a system needs not necessarily...
2017-12-13
787 reads
The configuration of any system plays a vital role in its working efficiently. However, configuring a system needs not necessarily...
2017-12-13
787 reads
What is a graph database?
A graph is composed of two elements: a NODE (vertices) and an EDGE (relationship). Each node...
2017-12-04
798 reads
As a continuation to my previous article, How to use Python in SQL Server 2017 to obtain advanced data analytics,...
2017-11-21
663 reads
Log shipping is a high-availability configuration that perhaps most of us are familiar with. It’s one of the oldest techniques wherein...
2017-11-13
348 reads
Today, Microsoft claims that Linux runs like a First-Class citizen on Azure, .NET Core has been open-sourced, and has been...
2017-11-02
618 reads
dotnetvibes
I have presented on Making Developers lives easier with SQL Server 2016 multiple times over the last couple of months,...
2017-10-23
354 reads
If we follow blogs and publications on the technological advancement with respect to SQL, we notice the increase in the...
2017-10-23
488 reads
Monitoring a SQL Server database is a critical component of database administration. Ninety percent of the organizations expect the number...
2017-10-17
907 reads
SQL Server on Linux boosts the database market for Microsoft. Support of PolyBase (a feature to work with Big Data...
2017-10-09
365 reads
In an era of remote storage and retrieval of data, including the cloud, data security plays a vital role, especially...
2017-10-02
471 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