SQL Agent Job failure with FTP connection
There are hundreds of post on this topic but I just ran into this problem recently so I thought I...
2009-03-04
1,530 reads
There are hundreds of post on this topic but I just ran into this problem recently so I thought I...
2009-03-04
1,530 reads
I met Pinal Dave, whose blog I've followed for a year or so and just started to correspond with. A...
2009-03-03
577 reads
I've been reading this for a few weeks and finally finished. Team of Rivals came up during the Presidential campaign...
2009-03-03
342 reads
I was listening to Colin Cowherd and the Herd one morning and he was talking about the Los Angeles Dodgers...
2009-03-03
589 reads
If you've ever had this error "OLE DB error: OLE DB or ODBC error: Operation canceled; HY008." appear while processing...
2009-03-02
34,675 reads
A very short update this week, the minutes of the January 2009 board meeting have been posted. Going forward we've...
2009-03-02
351 reads
Our next oPASS/Orlando user group meeting is coming up soon on March 11, 2009, and as usual is held at...
2009-03-02
328 reads
I’ve been pretty lucky in my career to have the opportunity to attend quite a few conferences. I’ve attended one,...
2009-03-02
1,185 reads
If you've read my blog over the past year and a half you know that I've been heavily involved in...
2009-03-01
283 reads
The continuity of operations during a disaster is as critical to running a business as just about anything. Somewhere, within...
2009-02-28
2,298 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...
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 have huge table with lot of data and is also wide. i took...
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