Partitioning Relational Data – (Part – 1)
A common requirement for dealing with large datasets is the ability to split the data into smaller blocks to help...
2013-01-08
1,015 reads
A common requirement for dealing with large datasets is the ability to split the data into smaller blocks to help...
2013-01-08
1,015 reads
One of our customers is implementing a very large consolidation project in which they enable users to create their own...
2013-01-08
305 reads
It’s been a while since I mentioned anything about the SQL Saturday in Fargo. So I thought I would let...
2013-01-08
578 reads
Lets start New Year with a very simple yet useful topic.
I am a big fan of out of box reporting...
2013-01-08
1,254 reads
This post is part of the T-SQL Tuesday Meme, this month hosted by Jason Brimhall. His chosen theme, to come up with...
2013-01-08
1,557 reads
I often get hung up in the whirlwind of life,
and one of the things that seems to slip my schedule,...
2013-01-08
1,835 reads
This month’s T-SQL Tuesday is hosted by Jason Brimhall. Being as this is January, lots of people are making New...
2013-01-08
756 reads
It’s T-SQL Time again, and this time it’s #38, from Jason Brimhall (b | t | li). The topic this month is...
2013-01-08
1,190 reads
I just had the interesting task of finding the port number that one of the instances I deal with is...
2013-01-08
1,699 reads
When creating XML documents, you must work from a design that defines the structure of the document. This strengthens the...
2013-01-08
989 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,...
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