2010-04-12 (first published: 2010-04-06)
950 reads
2010-04-12 (first published: 2010-04-06)
950 reads
This challenge is related a scheduling problem in the home health care industry. The task is to look into the schedules of nurses and identify any overlapping schedules.
2010-04-05
2,580 reads
A free one day training event from SQL Saturday and the Birmingham SQL Server groups. Come join us if you are in the area.
2010-03-24 (first published: 2010-02-18)
3,212 reads
Learning about practical Integration Services is an important part of the well rounded DBA for the future. Read a sample chapter from this new book.
2010-03-23
2,316 reads
Here is another scheduling problem that deals with the allotment of classrooms for various training programs. Your chalenge is to read the source data and build an output result set that shows the weekly schedule of each training topic and the class room in which training is scheduled.
2010-03-22
1,783 reads
If you'll be near Atlanta on Apr 24, 2010, come to SQL Saturday #41. If you are at all interested in speaking, submit a session.
2010-03-17 (first published: 2010-03-11)
1,614 reads
Professional Microsoft SQL Server 2008 Programming Master the increasingly complex feature set of the latest release of Microsoft SQL Server with the information in Professional Microsoft SQL Server 2008 Programming. Review the new features of SQL Server that will be of interest to you as an experienced developer and move on to more detailed, practical […]
2010-03-16
2,944 reads
Build your SQL Server skills without leaving your desk.
2010-03-15 (first published: 2010-03-11)
7,097 reads
A chance to dive deep into SQL Server with Paul Randal and Kimberly Tripp this Spring in Boston.
2010-03-09 (first published: 2010-02-01)
5,268 reads
The task is to look at the appointments and the recurrence of schedules to come up with a list of meetings for a given period.
2010-03-08
2,431 reads
By Steve Jones
I went to sleep while reading a Kindle book on my phone. I know...
A conversation with Jan Laš, CIO at HOPI, about what deploying a data agent...
It's time for T-SQL Tuesday #198! This month's topic is change detection. The post T-SQL...
Ruko Atrium Blok E. 12-13, RW.2, Senen, Kec. Senen, Kota Jakarta Pusat, Daerah Khusus...
By Buka blokir bws mobile Bank Woori Saudara
Anda dapat menghubungi Call Center BWS melalui WhatsApp di (+62) 0817°0105°188, atau datang langsung...
By Buka blokir bws mobile Bank Woori Saudara
Anda dapat menghubungi Call Center BWS melalui WhatsApp di (+62) 0817-0105-188, atau datang langsung...
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