Our new SharePoint BI Book Project
Hey folks, Just a quick preview that we’re hard at work again on a new book with Wiley publishing focused...
2010-11-22
424 reads
Hey folks, Just a quick preview that we’re hard at work again on a new book with Wiley publishing focused...
2010-11-22
424 reads
It’s vacation week for me. Everything’s scheduled for SQLServerCentral, and my family is taking our annual ski break for Thanksgiving....
2010-11-22
703 reads
The sessions are over, and the post-cons are done; the vendor parties are but a memory, and the #sqlkaraoke music...
2010-11-22
1,152 reads
As I was doing a little research this evening for a client, I hit the SQLMag site for the latest updates. ...
2010-11-22
650 reads
Today is a topic that is close to my heart. Many of you probably don’t know that the SQL pass...
2010-11-22
537 reads
There have been several usability features that have been added to SSIS in the latest CTP.One of these features is...
2010-11-22
837 reads
Have you ever had to take a long column of data in Excel and turn it into a column? There...
2010-11-22
364 reads
Since it’s Sunday (almost Monday), I thought I would chip into Un-SQL Friday. Before I get down to brass tacks,...
2010-11-22
1,042 reads
Follow the rest of this series at the XQuery for the Non-Expert – X-Query Resources introduction post.
Talk to the Experts
In the...
2010-11-22
2,026 reads
I will be replacing speaker Steven Robidas on Tuesday, 23 November at Microsoft TechDays.ca Montreal. The discussion will be on...
2010-11-21
641 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