What Are You Waiting For?
I know what I am waiting for. I know exactly what every SQL Server instance in my care is waiting...
2011-05-16
1,005 reads
I know what I am waiting for. I know exactly what every SQL Server instance in my care is waiting...
2011-05-16
1,005 reads
Ever have one of those days where no matter how hard you try you just can’t seem to make any...
2011-04-25
689 reads
There are many different paths you can travel on the journey to success. There is no precise route that everyone...
2011-04-18
1,423 reads
This weekend saw the 8th SQLBits conference take place amidst glorious British sunshine by the sea in Brighton.
For those unable...
2011-04-10
881 reads
Your customers expectations are their primary measure of your success. How well are you managing them?
You’re reading The DBAs Guide...
2011-04-04
2,065 reads
Have you set the bar high enough to ensure your success?
You’re reading Taking It To The Next Level, day 5 of 5...
2011-03-31
1,422 reads
Your customers expectations are their primary measure of your success. How well are you managing them?
You’re reading The DBAs Guide...
2011-03-30
2,121 reads
One of the most undervalued skills that an individual can possess is the ability to listen. Are you really hearing...
2011-03-29
1,625 reads
This is the most important and essential first step for a DBA on the journey to providing outstanding customer service....
2011-03-28
851 reads
Outstanding Customer Service in 5 days
Your success as a Data Professional is directly dependant to the quality of service you...
2011-03-27
660 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