SQL Saturday #198 - Vancouver
SQL Saturday comes back to Vancouver, BC on Feb 16, 2013. Come join in if you can.
2013-02-11
2,086 reads
SQL Saturday comes back to Vancouver, BC on Feb 16, 2013. Come join in if you can.
2013-02-11
2,086 reads
2013-02-04
1,474 reads
2013-01-21
1,562 reads
A free day of training in the US nation's capital. Come join in if you are nearby.
2012-12-03
1,447 reads
SQL Saturday at the gateway between Europe and Asia. If you are nearby, come join in a free day of SQL Server training and presentations.
2012-11-27
1,348 reads
A free day of training, SQL Saturday comes to Tokyo, Japan. Come have a SQL Server day with fellow data professionals if you can.
2012-11-26
1,330 reads
SQL Saturday in the Ukraine. If you want a free day of training, sign up and attend.
2012-11-19
1,559 reads
A free day of SQL Server Business Intelligence sessions in Tampa, FL tomorrow.
2012-11-16
1,605 reads
A free one day training event in Salt Lake City, Utah on Oct 20, 2012.
2012-10-11
2,057 reads
SQL Saturday comes back to Michigan. Come see Jeff Moden and others talk SQL Server on Sept 22, 2012.
2012-09-12 (first published: 2012-08-22)
2,214 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