The Chance of Failure
Do you plan for failure as a possibility or a probability? The difference might mean you take your plans and testing a little more seriously. Steve Jones notes that you might want to plan on the latter.
Do you plan for failure as a possibility or a probability? The difference might mean you take your plans and testing a little more seriously. Steve Jones notes that you might want to plan on the latter.
I need to setup a virtual environment for development and testing. I've heard about a new feature in Windows 7 and Windows Server 2008 R2 called boot from a virtual hard disk (VHD) which allows you to create multiple VHDs and select them from the boot menu on startup without having to partition your hard drive to achieve multi-boot. I have a need for SharePoint and SQL Server test and development environments. Can you provide the details of how to set this up?
I had an interview earlier this week. An interview for a SQL developer position. It went fine. But. Question number X...
This article describes a real-world example of performance tuning index maintenance for a large table of approximately 1 billion rows.
Continuing the short series on extended properties, this article explains how to turbocharge the creation of extended properties
Today we have a guest editorial from Andy Warren that talks about the problems we sometimes run into when we must work with other people and make decisions. Sometimes getting the information from people, or giving it to them, is not as simple as we would like.
With a large-scale development of a database application, the task of supporting a large number of development and test databases, keeping them up to date with different builds can soon become ridiculously complex and costly. Grant Fritchey demonstrates a novel solution that can reduce the storage requirements enormously, and allow individual developers to work on thir own version, using a full set of data.
Things Go South
Recently I was troubleshooting a piece of software that archives data out of a very active import table....
In this article Brian Davey present a solution for changing the text in multiple stored procedures using T-SQL.
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...
RQ6X+98R, Jl. Brigjen Katamso No.1 4, RT.4/RW.9, Kota Bambu Sel., Kec. Palmerah, Kota Jakarta...
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...
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