Beware of Login Issues for Privileged Accounts
In a recent post, I described an attack against a privileged account using a simple SQL Injection technique of updating...
2015-01-05
847 reads
In a recent post, I described an attack against a privileged account using a simple SQL Injection technique of updating...
2015-01-05
847 reads
What helps people be successful in a company? Perhaps a little analytic work can help employers determine this.
2015-01-05
220 reads
I started this on Jan 1, but with family commitments, I ended up delaying it until today. I wrote about...
2015-01-02
881 reads
Steve Jones looks forward to the new year and asks in this poll what you think will happen.
2015-01-02
134 reads
2015-01-02
1,761 reads
I got an email recently where someone asked me how they can refresh a dev environment with Powershell. I guess...
2015-01-01 (first published: 2014-12-29)
9,382 reads
2015-01-01
2,329 reads
As we look to the new year, Steve Jones wonders what improvements you might be planning for your career.
2014-12-31
198 reads
2014-12-31
2,031 reads
2014-12-30
173 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...
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