SQLSaturday Orlando Marketing Plan-Part 42
Reg count at 479. Looking very good for hitting 500!First sponsor sent out a geo-targeted message for us, another one...
2014-09-12
633 reads
Reg count at 479. Looking very good for hitting 500!First sponsor sent out a geo-targeted message for us, another one...
2014-09-12
633 reads
Ah, an interesting week for registrations. We’ve jumped to 426 registered, making my goal of 500 doable. The jump is...
2014-09-08
516 reads
I wrote Titles Matter – Part 2 based on lessons learned the hard way not long ago. Titles matter because they...
2014-09-05
519 reads
In a followup to his previous piece, Andy Warren looks at job titles again and they can affect the people he works with.
2014-09-05
192 reads
Last week we were at 332, this morning at about the same time we’re at 356. Not bad for a...
2014-09-02
542 reads
Registration is 332 as of 8 am on August 26. We added a whopping 40 registrations last week – a very...
2014-08-26
1,064 reads
Got this in morning email from Khan Academy. Not sure if I agree that we all can learn anything, but...
2014-08-22
570 reads
I just checked in again on our LinkedIn campaign, had a couple days with good impression counts. We can still...
2014-08-22
480 reads
Busy week, should have blogged about it before the eventDid a remote presentation on securing credit card dataFirst time using...
2014-08-21
489 reads
I just spent a few minutes reviewing the 2015 PASS budget, things that I noticed:
Anticipating a change in revenue of...
2014-08-21
731 reads
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...
By HeyMo0sh
As a DevOps professional, I’ve seen firsthand how cloud costs can quickly spiral out...
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