New SQL Blogging Challenge
I recently came across Tim Ford’s (B|T) challenge to the technical blogging community. The challenge is to write one introductory...
2016-01-19
397 reads
I recently came across Tim Ford’s (B|T) challenge to the technical blogging community. The challenge is to write one introductory...
2016-01-19
397 reads
Time is slowly ticking toward 0:00 on the clock. As I look around I couldn’t help but reflect back on...
2015-12-22
496 reads
Take a minute and look around you. Automation is all around you; whether you see it or not processes are...
2015-11-30 (first published: 2015-11-24)
1,507 reads
I am always looking for ways to get involved within the PASS community. One such way that has become available...
2015-11-17
476 reads
T-SQL Tuesday is here again. I’ve had good intentions the past few times this event has come around and even...
2015-11-13 (first published: 2015-11-10)
1,976 reads
Everyone has a story; some stories are similar while some stories are vastly different. People always make the statement that...
2015-11-12
622 reads
The day finally came and I was fortunate, no I was blessed to be a part of the PASS Summit...
2015-11-04
535 reads
As I sit here in an offshoot of the convention center, I started reflecting back to this morning’s keynote for...
2015-10-29
859 reads
PASS Summit Key note is off the ground and running…..
President Thomas LaRock talks about the 16th annual meeting that is...
2015-10-28
331 reads
PASS Summit Key note is off the ground and running…..
President Thomas LaRock talks about the 16th annual meeting that is...
2015-10-28
460 reads
By HeyMo0sh
One of the biggest challenges I’ve faced in cloud operations is maintaining clear visibility...
By Steve Jones
I come to Heathrow often. Today is likely somewhere close to 60 trips to...
By Brian Kelley
If your organization is spending money, then meaningful results are a must. Pen testing...
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