Learning SQL Server 2014
A list of technologies in SQL Server 2014 that you might want to learn more about.
2015-06-29
1,646 reads
A list of technologies in SQL Server 2014 that you might want to learn more about.
2015-06-29
1,646 reads
A few links to help you understand the Cardinality Estimator.
2015-06-29
319 reads
A list of builds for SQL Server 2014, through CU4 for SP2 and CU11 for SP1.
2023-02-17 (first published: 2015-02-23)
19,464 reads
2015-02-19
1,789 reads
2014-10-20
1,540 reads
What are natively compiled stored procedures? Why would we want to use them and what are the performance benefits of using them over classic disk-based stored procedures?
2016-05-20 (first published: 2014-08-04)
24,865 reads
2014-06-04
1,379 reads
2014-06-02
1,403 reads
2014-05-15
1,466 reads
2014-05-08
1,451 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