Catching Up on The #SQLPASS Virtual Chapters
(Didn't realize until I was posting that this was my 100th post...whew!)
--
A few months ago we purchased a new "smart"...
2016-05-17
884 reads
(Didn't realize until I was posting that this was my 100th post...whew!)
--
A few months ago we purchased a new "smart"...
2016-05-17
884 reads
I am speaking at two different SQL Saturdays in June!
--
First up on June 4th is SQL Saturday #517 Philadelphia (#SQLSAT517)...
2016-05-12
622 reads
Microsoft dropped it on us this morning:
Get ready, SQL Server 2016 coming on June 1st
https://media.makeameme.org/created/yes-finally.jpg
I read the article and was...
2016-05-02
919 reads
We have many clients with multi-node Availability Groups - that is, AGs with more than two replicas. One of the problems...
2016-05-03 (first published: 2016-04-22)
4,452 reads
When you use the msdb tables to try to gather information on your SQL Server Agent jobs, inevitably you will...
2016-04-21 (first published: 2016-04-14)
4,207 reads
It started with a failed backup status check:
Msg 50000, Level 16, State 1, Line 73
** Backups listed in this file...
2016-04-04
2,272 reads
PASS SQLSaturdays are free 1-day training events for SQL Server professionals that focus on local speakers, providing a variety of...
2016-03-28
470 reads
A frequent request I receive is to pull a list of logins/users with certain accesses, role memberships, etc.
I had a...
2016-04-07 (first published: 2016-03-24)
1,449 reads
I had an incident today where a colleague was running a Wait Stats Report and the output looked like this:
As...
2016-03-15 (first published: 2016-03-09)
3,015 reads
It started with a tweet from one the many members of the #sqlfamily who always has something meaningful to say,...
2016-03-07 (first published: 2016-03-01)
1,808 reads
By Steve Jones
This month we have a new host, James Serra. I’ve been trying to find...
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...
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