Limit Results Based on Aggregated Threshold
Problem
A post was recently added to one of the forums that I monitor so that I can help users in...
2011-04-11
1,699 reads
Problem
A post was recently added to one of the forums that I monitor so that I can help users in...
2011-04-11
1,699 reads
SQL Saturday #70 (Twitter: #SQLSat70) was another successful event! And...I had yet another full house (some even left due to...
2011-03-19
430 reads
If you are anywhere within driving distance to Columbia, South Carolina, register NOW and then hop in your car Friday...
2011-03-18
434 reads
This site really is about business intelligence, but it is good to mix things up a bit every now and...
2011-03-15
715 reads
In a previous blogs, I discussed what shared schedules were and walked you through step by step instructions on how...
2011-03-09
1,154 reads
In a previous blogs, I discussed what shared schedules were and walked you through step by step instructions on how...
2011-03-08
2,208 reads
In my two previous blogs in this series, I discussed shared schedules and walked you through step by step instructions...
2011-03-03
967 reads
I can’t tell you that all of your dreams will come true. I won’t tell you that you will make...
2011-03-02
533 reads
In my previous post, I discussed what shared schedules were and how you could use them. With that knowledge under...
2011-03-02
1,924 reads
As you will see by the dates in my screenshots, I wrote them quite a while back while touring the...
2011-02-28
2,386 reads
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...
By Steve Jones
Learn how to tie a bowline knot. Practice in the dark. With one hand....
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