Never give up
When facing a problem you aren't sure you can solve, keep working on it and believe in yourself.
2014-07-08
236 reads
When facing a problem you aren't sure you can solve, keep working on it and believe in yourself.
2014-07-08
236 reads
2014-07-07
266 reads
2014-07-04
91 reads
Do other departments know what you do? One on one discussions is a great way to make sure.
2014-07-03
178 reads
Today we have a guest editorial from Sarah Wagner that thanks all the people that have helped her become a better DBA.
2014-07-01
288 reads
As a data guy, I always smile when application developers refer to ‘their’ data. If only it were that simple.
2014-06-30
368 reads
How did you fall in into your particular career? Was it because of a product? Andy Warren talks about his career evolution and how often we become trapped by the products we work with.
2014-06-30
151 reads
2014-06-25
669 reads
2014-06-24
385 reads
Meetings are a part of modern corporate work that many of us despise. However is that because
2014-06-23
224 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