2015-07-06
4,644 reads
2015-07-06
4,644 reads
References and links to help you learn how to create multiple tempdb files.
2015-06-29
3,064 reads
A few links to help you understand the Cardinality Estimator.
2015-06-29
319 reads
A list of technologies in SQL Server 2014 that you might want to learn more about.
2015-06-29
1,646 reads
A collection of technologies and links that will help you learn more about SQL Server 2012.
2015-06-25
1,401 reads
2015-06-23
7,715 reads
Our Question of the day is very popular, but we're looking for more complex questions
2014-09-08
650 reads
2014-08-21 (first published: 2014-08-19)
1,656 reads
We'd like to apologize to Gavin Draper who was plagiarized in an article published today.
2014-06-23
5,050 reads
As you may have noticed, we have been suffering recently from increased spam posts on the forums. This is something we're currently working to resolve.
2014-06-20
3,039 reads
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...
By Brian Kelley
I am guilty as charged. The quote was in reference to how people argue...
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...
Comments posted to this topic are about the item Breaking Down Your Work
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