Notes From The August 13, 2015 Spacecoast SQL Meeting
Meeting is held at Sonny’s BBQ, they have a long room (used to be outside seating) that works pretty well...
2015-08-17
621 reads
Meeting is held at Sonny’s BBQ, they have a long room (used to be outside seating) that works pretty well...
2015-08-17
621 reads
Meeting held at Nova Southeastern here in Orlando Arrived early to meet David Pless, good thing we were early – couldn’t...
2015-08-17
643 reads
My mom gave me a book about Leonard Nimoy recently and we talked later about the impact his life had...
2015-08-15
576 reads
David Pless is presenting:
Query Store is a new feature in SQL Server 2016, and is also available in Azure SQL...
2015-08-12
561 reads
Scott McKenzie was the DJ of Mix 105 here in Orlando for an astounding 24 years and that’s been the...
2015-08-12
634 reads
Ran across this while visiting the Air & Space Museum over the summer, the Smithsonian launched a Kickstarter campaign to raise...
2015-08-05
675 reads
How to Keep Up With SQL Server ran as the editorial of the day on July 31st. Modest amount of...
2015-08-04
584 reads
Would You Pay to Wear Jeans at Work turned out to be popular piece when posted a couple weeks back. The...
2015-07-28
631 reads
We have a solid tradition here in Orlando of offering some all day classes the Thursday and Friday before SQLSaturday....
2015-07-20
632 reads
Posted last week, Is the Golden Age of Information Technology Almost Over? generated some interesting comments. It’s tough to write about potential...
2015-07-16
544 reads
By HeyMo0sh
As a DevOps professional, I’ve seen firsthand how cloud costs can quickly spiral out...
By Steve Jones
AI is everywhere. It’s in the news, it’s being added to every product, management...
By Vinay Thakur
RAG — Retrieval Augmented Generation. we have covered so far — embeddings, vectors, vector...
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