Citizen Scientists
The increasing power and shrinking size of computing devices means that more and more people can gather and analyze data. Steve Jones talks about some opportunities.
2013-09-23
108 reads
The increasing power and shrinking size of computing devices means that more and more people can gather and analyze data. Steve Jones talks about some opportunities.
2013-09-23
108 reads
It’s just a week until Dev Connections. This is one of the great conferences for the hybrid technology person, with...
2013-09-23
680 reads
We have so many ways in which we can grow our SQL Server careers. Steve Jones shares a few today.
2013-09-19
255 reads
Are you worried about your job in the future? Steve Jones thinks you shouldn't be.
2013-09-18
183 reads
I ran across a twitter conversation about a post recently. The post talks about detaching or attaching databases in bulk....
2013-09-18
1,085 reads
In the future we'll have a more programmable world, but it will be driven more by data than software.
2013-09-17
111 reads
2013-09-17
2,507 reads
This weekend is SQL Saturday #249 in San Diego. I’m looking forward to the trip for a few reasons, but...
2013-09-16
825 reads
Microsoft is trying to prove that development works well in the cloud by moving their own internal development to the Azure cloud.
2013-09-16
160 reads
Building software always involves risk, but in these tough times, Steve Jones thinks we should be working to lower the risk of IT projects.
2013-09-13 (first published: 2009-01-22)
214 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