How to recover a suspect msdb database in SQL Server
A SQL Server MSDB database is flagged as "suspect"... what can you do? John Grover has some suggestions
2014-04-03
3,669 reads
A SQL Server MSDB database is flagged as "suspect"... what can you do? John Grover has some suggestions
2014-04-03
3,669 reads
Intersect with your favorite Microsoft experts in Orlando, Florida April 13-16, 2014 at this year’s most exciting tech conference: DEVintersection.com. Register with the discount code "RedSimple" for $50 off your registration.
2014-04-02
4,381 reads
The DBA Team are back, ready to save another DBA. In this episode, a rogue DBA sabotages the backups, can Robyn Page, Steve Jones, Grant Fritchey, and Phil Factor find the solution? Save the backups...save the business.
2014-04-02
4,749 reads
With the release of SQL Server 2014, the licensing options have changed slightly. Read on to discover how you might choose to change your licensing in the future.
2014-04-01
5,196 reads
A new enhancement in SQL Server 2014 allows you to directly enter C# code in your stored procedures.
2014-04-01
4,416 reads
Today is the first day of general availability for SQL Server 2014.
2014-04-01
11,666 reads
SQL Server 2014 is being released and a change in the defaults will ensure that more instances will run smoother.
2014-04-01
2,616 reads
When restoring a database to another server, you may get a master key error if using symmetric keys
2014-03-31
43,163 reads
Bringing together business analysts, data scientists, and business intelligence and IT pros, the PASS BA Conference will feature 65+ best-practices, how-to, and strategy sessions by top BA/BI experts. Keynoting this year is Information Is Beautiful author David McCandless.
2014-03-31
338 reads
A relational database is a complex machine that is asked to deal with intricate problems. When things go wrong, it usually takes knowledge, deduction and a systematic approach to track down the root core of problems and to determine the best fix, Joshua Feierman illustrates how this can be done.
2014-03-31
6,661 reads
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...
A conversation with Jan Laš, CIO at HOPI, about what deploying a data agent...
Ya Kini Anda bisa menerima info penting resmi dari UOB Indonesia melalui WhatsApp bisnis...
Telp/wa 085169998765 Jl. Sumber Sari No.23 T 12, Babakan, Kec. Babakan Ciparay, Kota Bandung,...
Telp/wa 085169998803 Jl. Sumber Sari No.23 T 12, Babakan, Kec. Babakan Ciparay, Kota Bandung,...
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