The Contest
I hate contests. I mean it's nice to get people involved and I start out with the best of intentions...
2007-10-07
730 reads
I hate contests. I mean it's nice to get people involved and I start out with the best of intentions...
2007-10-07
730 reads
2007-10-05
2,236 reads
One of the people responsible for Books Online in SQL Server 2005 takes a few minutes to share some thoughts with SQLServerCentral.com
2007-10-04
1,613 reads
Well, lots of mistakes. Here's a good example of one: Friday Oct 5 mistake.
I decided to go the budget route...
2007-10-04
979 reads
2007-10-04
2,581 reads
2007-10-03
2,105 reads
A list of articles and comments, including some pictures, from the 2007 PASS Summit in Denver.
2007-10-03
1,193 reads
If I have accomplished anything, it is because I have stood on the shoulders of giants.
2007-10-03
176 reads
This article expands Steve Jones' look at ways to audit changes to your data by building mirror tables.
2007-10-02 (first published: 2003-03-17)
22,360 reads
Part 2 of Steve Jones' series on beginning SQL Server from the perspective of a system administrator or someone not used to working with SQL Server. If you've been designated the new administrator, take a look at this series for some help in coming up to speed on this product.
2007-10-02 (first published: 2004-08-19)
36,220 reads
By HeyMo0sh
In my experience, FinOps success has never been just about tools or dashboards. It...
By HeyMo0sh
As a DevOps person, I know that to make FinOps successful, you need more...
By HeyMo0sh
As someone who works in DevOps, I’m always focused on creating systems that are...
Fare Labs' shelf life testing facility has been accredited by the NABL. The best...
Comments posted to this topic are about the item Restoring On Top II
Comments posted to this topic are about the item SQL Art 2: St Patrick’s...
I have a database, DNRTest, that has a number of tables and other objects in it. The other day, I was trying to mock up a test and ran this code on the same server:
-- run yesterday CREATE DATABASE DNRTest2 GO USE DNRTest2 GO CREATE TABLE NewTable (id INT) GOToday, I realize that I need a copy of DNRTest for another mockup, and I run this:
-- run today USE Master BACKUP DATABASE DNRTest TO DISK = 'dnrtest.bak' GO RESTORE DATABASE DNRTest2 FROM DISK = 'dnrtest.bak' WITH REPLACEWhat happens? See possible answers