Live Writer - Paste from Visual Studio
This is a test of the plug in “Paste From Visual Studio”. I had this code sitting in SSMS and...
2010-05-13
806 reads
This is a test of the plug in “Paste From Visual Studio”. I had this code sitting in SSMS and...
2010-05-13
806 reads
SQL Server Azure, fully relational cloud database solution, is new possibility of the database administration and maintenance. I'm not going...
2010-05-13
1,064 reads
First, I would like to thank all that have attended and supported the SQL Lunch during our first year. We...
2010-05-13
688 reads
Had this on my list todo list, upgrade my laptop that just had plain old SQL 2008 on it. The...
2010-05-13
616 reads
There’s still time to register for the 24 Hours of PASS, a series of 24 one-hour sessions being presented on...
2010-05-12
740 reads
Ever come across a scary error in the SQL Server log when running CHECKDB against your databases. The error looks...
2010-05-12
515 reads
It’s been a couple years since I’ve attended and always found Teched to be a great event, more content than...
2010-05-12
1,225 reads
Yesterday I though of doing an audio webcast what all I blog. So started audio webcast, its a series of...
2010-05-12
702 reads
Every day for the next couple of weeks, I aim to highlight one of SQL Server 2008’s new features, simply...
2010-05-12
784 reads
by Abi Chapagai – Saturday, May 08, 2010
I have recently set up database mail in SQL Server 2008 in production SQL...
2010-05-12
37,816 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