Back Yourself Up
Ever thought about yourself as a resource that should be backed up to minimize your loss?
2018-09-05
102 reads
Ever thought about yourself as a resource that should be backed up to minimize your loss?
2018-09-05
102 reads
What makes SQL Server professionals stick together? Can we draw any conclusions from this?
2017-07-10
145 reads
Both options have their advantages and disadvantages. Neither is universally right for all situations. Understand the differences before picking the model that works for your situation.
2017-06-12
12,531 reads
Are you a do-it-all DBA, or do you specialize in one aspect of database work?
2015-09-07
316 reads
One Way to Handle a Very Complex Database Project with Several Databases and Cross References
2015-05-19
12,180 reads
2013-07-26
617 reads
A table does not so much 'have' a clustered index as a table 'is' a clustered index.
2013-07-22
6,524 reads
An introduction to Universal Product Codes with code to help you use them in your database.
2013-02-28
6,626 reads
A table doesn't so much "have" a clustered index as a table "is" a clustered index.
2012-12-24
8,379 reads
Today we have a guest editorial from Hakim Ali. Today Akim talks about why holding back out of politeness in code reviews may be a self-defeating practice.
2012-08-06
363 reads
By Vinay Thakur
These days everything is changing to AI World, IT roles are getting changed and...
I’m doing a small series on indexing basics for SQL Server, and on May...
PlanTrace: Stop Reading Redshift EXPLAIN Plans. Start Seeing Them Introducing PlanTrace — a free, browser-based...
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