"The work never matches the dream of perfection the artist has to start with."
I know, another non-technical blog post. But this one is career-related as well.
In high school I was introduced to...
2008-10-20
1,336 reads
I know, another non-technical blog post. But this one is career-related as well.
In high school I was introduced to...
2008-10-20
1,336 reads
SQL Server and Sybase are geared up
to send information to applications over two distinct channels, the results in
one channel that...
2008-10-20
900 reads
Recently I posted about Managing My Todo List and I had a question via email about what notepad I was...
2008-10-20
799 reads
I posted Do You Understand Microsoft Licenses about a week ago, and today happened to run across a note about...
2008-10-20
535 reads
Late in getting this one out there, but it's interesting to see people's responses. Especially to my story.
As a kid...
2008-10-20
845 reads
I first ran across these words as a Citadel cadet. Now those who know of my days at El Cid...
2008-10-19
825 reads
I suspect final preparations will stretch all the way through next Saturday morning, but at this point we've done most...
2008-10-19
499 reads
I’ve thought this for a long time: you need to run your business as a business, not an investment. Too...
2008-10-19
881 reads
I have two speaking engagements for the week of October 19:
South Florida SQL Server User Group - West Palm Beach - October...
2008-10-18
693 reads
I've had a bunch of writings based on finances over the last couple weeks, and I've tried to spread them...
2008-10-17
660 reads
By Vinay Thakur
These days everything is changing to AI World, IT roles are getting changed and...
PlanTrace: Stop Reading Redshift EXPLAIN Plans. Start Seeing Them Introducing PlanTrace — a free, browser-based...
By Steve Jones
I went to sleep while reading a Kindle book on my phone. I know...
We suffered a SPAM attack from May 1-6, which unfortunately corresponded with time off...
Hi to all We have situation at a client where someone is illegally changing...
Hi to all We have situation at a client where someone is illegally changing...
I have this data in a table called dbo.NFLTeams
TeamID TeamName City YearEstablished ------ -------- ---- --------------- 1 Cowboys Dallas 1960 2 Eagles Philadelphia 1933 3 Packers Green Bay 1919 4 Chiefs Kansas City 1960 5 49ers San Francisco 1946 6 Broncos Denver 1960 7 Seahawks Seattle 1976 8 Patriots New England 1960If I run this code, how many rows are returned?
SELECT TOP 2
json_objectagg('Team' : TeamName)
FROM dbo.NFLTeams;
See possible answers