Building your 1st Performance Point Dashboard in Sharepoint 2010
Hey there gang
The PASS BI Virtual Chapter is presenting some great stuff this fall. September 14th I’m doing a new session on...
2010-09-06
378 reads
Hey there gang
The PASS BI Virtual Chapter is presenting some great stuff this fall. September 14th I’m doing a new session on...
2010-09-06
378 reads
Hey there database folks! Don’t be scared off by a little .NET. The SW Florida code camp is getting underway...
2010-09-06
359 reads
Hey folks!
You asked for it – so coming up on September 8th we’re doing a SQL Lunch that is going to...
2010-09-06
388 reads
Hey there folks – PASS Virtual BI Chapter Event Alert!
Don’t forget to come out on Sept 20th and get Adaptive with...
2010-09-06
1,085 reads
Quick update from your PASS BI Virtual Chapter folks!
September 29th, Mike Davis is doing a session on SSRS R2: The New...
2010-09-06
388 reads
Quick hit mid-week folks! Make sure not to miss the BI Virtual Chapter’s Presentation of Data Mining with PowerPivot with...
2010-09-06
450 reads
Don’t miss Andy Leonard presenting his PArt Deaux of Design Patterns for SSIS.
Important Info from our SQL Lunch site….
Date and...
2010-09-06
830 reads
Hey There SQL Lunchers – Come out and check out Kyle Walker talking about restartability in SSIS.
Specifics to make sure you...
2010-09-06
399 reads
Motivational time again!
Sometimes things cannot be explained. Like this guy in the picture. I think he’s gunning for his own...
2010-09-06
339 reads
Motivational time again!
Today I want to talk about being lazy with your data. More likely than not, it’s not your...
2010-09-06
170 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