Batch Starting SQL Server Services
Many times when going from demo to development to client demo, we are always starting and stopping our SQL Server...
2010-02-27
1,555 reads
Many times when going from demo to development to client demo, we are always starting and stopping our SQL Server...
2010-02-27
1,555 reads
Hey gang !
I’m presenting today at 1pm on Zero to Cube in 60 minutes. We’re going to build an analysis...
2010-02-25
414 reads
Mr. Exceptional DBA is coming to our SQL Lunch. Patrick and I are excited to welcome Brad MCGehee to SQLLunch.com....
2010-02-24
427 reads
Hey Guys and Gals ! If you missed the webinars today, you missed a great show! Brian took us through the...
2010-02-24
473 reads
I’m presenting tomorrow on Zero to Cube in 60 minutes. This is an all Demo Session for work with cubes...
2010-02-24
416 reads
WOW – what a great turnout for our webinar series today. We had two sessions on Monday, looking for some great...
2010-02-23
584 reads
Recently I got a forum question that I thought would be a good blog entry for others to share.
The question...
2010-02-23
865 reads
Hot Off The Presses !
This isn’t like when you stood in line at the kissing booth in high school. SQL...
2010-02-23
498 reads
After yesterdays’ webinar, we got a lot of great feedback and questions. Once of the more common questions was around...
2010-02-23
454 reads
Once of the more common issues with working with data in a cube is that it does not always line...
2010-02-22
459 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