Tuesday at the PASS Community Summit
Today was the first official day of the full (3-day) conference, with about 2,200 full conference attendees. Officially, PASS claims...
2009-11-04
417 reads
Today was the first official day of the full (3-day) conference, with about 2,200 full conference attendees. Officially, PASS claims...
2009-11-04
417 reads
At the 2009 PASS Community Summit, I have gotten the opportunity to talk to many DBAs, and to find out...
2009-11-04
590 reads
I've never attended this in the past, but I've wanted to. As the father of young girl I want to...
2009-11-04
2,763 reads
This is one of the scripts that I will be using for my presentation “Tips and Tricks for Using SQL...
2009-11-03
1,474 reads
We seem to be busting at the seams lately with quality content from great providers. I wanted to recommend to...
2009-11-03
224 reads
There are many different ways to manipulate dates when working with them in SSIS. Many great examples have been posted...
2009-11-03
573 reads
Up early again, started my day at the Convention Center for breakfast. Light breakfast, drinking water, never seem to drink...
2009-11-03
381 reads
This week, I’m blogging and tweeting from the PASS Community Summit in Seattle, Washington. The week of the Summit is...
2009-11-03
786 reads
In the spirit of my Who DID IT and RAN SQL Caper presentation.....
OK, I was hoping to get the creative juices...
2009-11-03
742 reads
Have you ever lost your project file for a SQL Server Analysis Services database? There is a great option to...
2009-11-03
1,052 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