Working With Sponsors
Apologies for the poor photo, the example was trampled a bit on the journey home! This past weekend at SQLSaturday...
2015-06-15
383 reads
Apologies for the poor photo, the example was trampled a bit on the journey home! This past weekend at SQLSaturday...
2015-06-15
383 reads
I attended the monthly ONETUG meeting last night to do a SQL presentation focused on developers. Same location as last...
2015-06-12
374 reads
I’m expecting Should Salary Information Be Confidential? to draw a wide range of comments. I’m curious to see if many will be...
2015-06-05
355 reads
Really late posting these, forgot to put on my task list!
About 20 attendeesLots of good questions, and I saw quite...
2015-06-03
386 reads
It’s almost summer and that means it’s time for a trip to South Florida for SQLSaturday #379. I’ll be doing my...
2015-06-02
346 reads
It’s been a while since I wrote a question of the day for SQLServerCentral. I wrote Pounds of Formatting Fun...
2015-06-02
292 reads
2015-06-02
1,831 reads
I attended the online Town Hall yesterday, the second one that PASS has held this year. The recording should be...
2015-05-28
855 reads
I’ll be returning to ONETUG just less than a year from my last presentation, delivering technical content and evangelizing for...
2015-05-25
314 reads
I’ve been busy with other stuff lately and haven’t been able to put much time into this yet, but capturing...
2015-05-19
361 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