Gap Analysis Using Algebra
This article shows how to solve a gaps and islands problem using simple algebra.
2020-03-10
5,009 reads
This article shows how to solve a gaps and islands problem using simple algebra.
2020-03-10
5,009 reads
This article explains a way to use labels (last year, YTD, etc.) for report parameters.
2020-03-05
6,861 reads
This article explains the T-SQL function STRING_SPLIT() and demonstrates a creative use for it.
2020-03-02
10,418 reads
2020-03-02
829 reads
This article explains how to calculate the important statistical functions, MEAN, MEDIAN, and MODE, in both T-SQL and DAX.
2020-02-28
34,316 reads
2020-02-27
23,429 reads
2020-02-27
724 reads
This article explains indexed views and provides an example that shows when they should be used to improve performance of a complex query.
2020-02-25
21,832 reads
Gouri Shankar provides an overview of normalizing a database.
2020-02-18
88,660 reads
When the database design is not great, you may have to write some creative queries to get what you need.
2020-02-17
3,462 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