White Paper Wednesday – Data-tier Applications in SQL Server 2008 R2
Hey folks,
It’s white paper Wednesday again and this week Data-tier Applications in SQL Server 2008 R2 by Alan Brewer, Roger...
2010-08-12
399 reads
Hey folks,
It’s white paper Wednesday again and this week Data-tier Applications in SQL Server 2008 R2 by Alan Brewer, Roger...
2010-08-12
399 reads
Hey folks,
It’s white paper Wednesday and this week we’re looking at High Availability with SQL Server 2008 by Paul...
2010-08-11
218 reads
Hey folks - Dont 'forget to check out SQL Lunch today. I'm hosting Mr. Andy Leonard! Always exciting and cool information.....
2010-08-09
396 reads
With everyone geared up for SQL Cruise I’m surprised we can air this video but since we kicked it off...
2010-08-07
203 reads
Ok folks, the video from SQL Saturday 40 is finally up. Thanks to the sponsors who helped foot the bill...
2010-08-07
276 reads
This post is the first in a new weekly series meant to give my readers some insight into my week....
2010-08-07
344 reads
In life, many times we get confused by symbols or indicators that we make assumptions about. You know what they...
2010-08-04
183 reads
Today's motivation is that you had nothing to do with this. IF this Pilot had the equivalent of a community...
2010-08-04
184 reads
Goor Morning folks !
It's time for another motivational Monday. Today I want to remind you to be careful about biting...
2010-08-04
487 reads
This week it's all about speed. Many thing in life are drive n by how fast we can get them...
2010-08-04
199 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