2008-06-05
37 reads
2008-06-05
37 reads
The final installment of Steve Jones' comparison between software developers and other professions looks at the most closely related: engineers.
2008-06-05
52 reads
Steve Jones takes another attempt at comparing software development to another profession. Today's target: doctors.
2008-06-03
44 reads
The second editorial from Steve Jones comparing software to other types of jobs continues with a look at the legal profession.
2008-06-02
40 reads
Is building software like building a house? Steve Jones digs into the comparison at the start of an editorial series looking at other professions.
2008-06-01
50 reads
A look back at the news from the week including Windows 7 and taking an unwired vacation.
2008-06-01
45 reads
Seeking to recognize DBAs for the work they do, the Exceptional DBA Awards are open for nominations. Steve Jones talks a bit about the event.
2008-05-29
43 reads
As the number of different software/technologies increases exponentially, does specializing limit an IT professional's ability to move around?
2008-05-28
36 reads
Steve Jones talks about alternative hybrids, in this bi-monthly update on automotive news.
2008-05-27
511 reads
2008-05-23
43 reads
By DataOnWheels
The T-SQL Tuesday topic this month comes James Serra. What career risks have you...
This T-SQL Tuesday is hosted by the one and only James Serra – literally...
By Steve Jones
This month we have a new host, James Serra. I’ve been trying to find...
Hi, ssms is free here. I can think of other reasons to do this...
I've written some documentation on using different Markdown types of files on GitHub. It's...
Comments posted to this topic are about the item Not Just an Upgrade
I am doing development work on a database and want to keep a backup so I can reset my database. I make some changes and want to restore over top of my changes. When I run this code, what happens?
USE Master BACKUP DATABASE DNRTest TO DISK = 'dnrtest.bak' GO USE DNRTest GO CREATE TABLE MyTest(myid INT) GO USE master RESTORE DATABASE DNRTest FROM DISK = 'dnrtest.bak' WITH REPLACESee possible answers