The Clustered Index is not the Primary Key
As the title says, the clustered index doesn't have to the primary key and vice versa.
2016-05-24
1,393 reads
As the title says, the clustered index doesn't have to the primary key and vice versa.
2016-05-24
1,393 reads
Dealing with SQL Server security when the application it uses is full of security holes.
2016-05-23
197 reads
There has never been more reasons or better opportunities to learn new skills. Gail Shaw shares her favorite online video training resources sites, what's on her current learning list and why.
2016-05-23
163 reads
This week Steve Jones looks at the formal way in which you might verify changes to your system. Do you have a process?
2016-05-20
230 reads
Branching code creates complexity to development and should be undertaken with caution.
2016-05-19
93 reads
Steve Jones notes that some features aren't fully developed, but that's not a reason to avoid releasing them.
2016-05-17
149 reads
The next version of SQL Server 2016 will be released on June 1, 2016, which means you can start planning those upgrades.
2016-05-16
102 reads
Adding a release management tool to your software development is a sign of maturity.
2016-05-16
68 reads
2016-05-13
81 reads
A simple change might solve some of those tempdb issues various customers experience.
2016-05-12
194 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