Notes From the September 16, 2015 Jacksonville SQL User Group Meeting
Forgot to post the next day and now missing details! Notes:
Rained the entire drive up (and back)Not a bad drive...
2015-09-30
939 reads
Forgot to post the next day and now missing details! Notes:
Rained the entire drive up (and back)Not a bad drive...
2015-09-30
939 reads
We had a decent election this year. Thanks to all four candidates – Argenis Fernandez, Jen Stirrup, Ryan Adams, and Tim...
2015-09-25
676 reads
Counter offers (and the related discussions) are an emotional topic. The comments on two of my editorials for SQLServerCentral (The...
2015-09-23
596 reads
We have four good candidates this year, of which two are incumbents. I was asked by Argenis and Tim to...
2015-09-17
622 reads
This week I’m spending some drive time thinking about how we might improve networking at SQLSaturday and that led to...
2015-09-22 (first published: 2015-09-10)
1,156 reads
Going to be in Seattle on Monday night (Oct 26th) and want to see old friends and make some new...
2015-09-02
603 reads
The Problem Solver. Ever scoffed at personality types? Surely none of us are just one thing, but often we are...
2015-08-31
1,123 reads
One of the big goals for SQLSaturday was for it to be a membership drive. It’s worked hugely well in...
2015-08-27
711 reads
Compliance training, never a fun topic and I think that is too bad. A combination of companies checking the box,...
2015-08-26
712 reads
When a new SQLSaturday event is launched an email is sent to all the speakers who have opted in to...
2015-08-25
627 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...
FARE Labs Pvt. Ltd., a water testing facility accredited by the NABL, tests drinking...
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...
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