Back Yourself Up
Ever thought about yourself as a resource that should be backed up to minimize your loss?
2018-09-05
99 reads
Ever thought about yourself as a resource that should be backed up to minimize your loss?
2018-09-05
99 reads
What makes SQL Server professionals stick together? Can we draw any conclusions from this?
2017-07-10
143 reads
Both options have their advantages and disadvantages. Neither is universally right for all situations. Understand the differences before picking the model that works for your situation.
2017-06-12
12,421 reads
Are you a do-it-all DBA, or do you specialize in one aspect of database work?
2015-09-07
315 reads
One Way to Handle a Very Complex Database Project with Several Databases and Cross References
2015-05-19
12,152 reads
2013-07-26
615 reads
A table does not so much 'have' a clustered index as a table 'is' a clustered index.
2013-07-22
6,523 reads
An introduction to Universal Product Codes with code to help you use them in your database.
2013-02-28
6,616 reads
A table doesn't so much "have" a clustered index as a table "is" a clustered index.
2012-12-24
8,376 reads
Today we have a guest editorial from Hakim Ali. Today Akim talks about why holding back out of politeness in code reviews may be a self-defeating practice.
2012-08-06
360 reads
By Vinay Thakur
I wrote about TempDB Internals and understand that Tempdb plays very important role on...
By Vinay Thakur
continuing from Day 1 where we covered the history of AI and GPT family,...
By Steve Jones
It’s a day off for Redgate today. This is our annual wellbeing day, where...
Comments posted to this topic are about the item A Quick Restore
Comments posted to this topic are about the item Guarding Against SQL Injection at...
I have a quick question on Ola Hallengren Index Optimize Maintenance . Do we...
While doing some testing of an application, I wanted to reset my environment after doing some testing with this code:
USE DNRTest BACKUP DATABASE DNRTest TO DISK = 'dnrtest.bak' GO /* Bunch of stuff tested here */RESTORE DATABASE DNRTest FROM DISK = 'dnrtest.bak' WITH REPLACEWhat happens if this runs, assuming the "bunch of stuff" isn't anything affecting the instance. See possible answers