SQLSaturday Baton Rouge #628 2017
Come join around 500+ attendees and speakers learning and networking at the LSU College of Business – Business Education Complex on...
2017-07-21
523 reads
Come join around 500+ attendees and speakers learning and networking at the LSU College of Business – Business Education Complex on...
2017-07-21
523 reads
Well, it is almost that time of the year again. Elections for the PASS Board. This is a great way to show your passion for this wonderful community...
2017-06-19
8 reads
Well, it is almost that time of the year again. Elections for the PASS Board.
This is a great way to...
2017-06-19
507 reads
I have the honor of being selected to speak in Pensacola and Houston this month. Pensacola has been a great place for SQLSaturday and it is no different than...
2017-06-01
7 reads
I have the honor of being selected to speak in Pensacola and Houston this month. Pensacola has been a great...
2017-06-01
579 reads
I just installed the Power BI report server following @SQLDusty YouTube 13 minute Step-by-Step video. You have to download both the Power BI Report Server and a new Power...
2017-05-19
24 reads
I just installed the Power BI report server following @SQLDusty YouTube 13 minute Step-by-Step video. You have to download both...
2017-05-30 (first published: 2017-05-18)
2,313 reads
Yesterday was the first day to submit sessions for the PASS Summit 2017 in Seattle on Oct 30th thru Nov 3rd. Oct 30th and 31st are for pre-conference sessions...
2017-05-11
5 reads
Yesterday was the first day to submit sessions for the PASS Summit 2017 in Seattle on Oct 30th thru Nov...
2017-05-11
547 reads
Thu, Apr 27 2017 20:00 GMT Daylight Time
Power BI Dashboard within an hour for Excel users
RSVP: https://attendee.gotowebinar.com/register/8516045593703848705
Power BI Dashboard within an hour for Excel users...
2017-04-23
15 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