AdventureWorksCI Step 1 planning
This is part of a series on how to take the Adventureworks database and bring it inline with modern standards. How do we put a legacy SQL Server database...
2015-06-12
3 reads
This is part of a series on how to take the Adventureworks database and bring it inline with modern standards. How do we put a legacy SQL Server database...
2015-06-12
3 reads
What am I doing?
Creating a publically available version of the adventureworks 2012 oltp database but by putting it under source...
2015-06-10
489 reads
What am I doing? Creating a publically available version of the adventureworks 2012 oltp database but by putting it under...
2015-06-10
44 reads
What am I doing? Creating a publically available version of the adventureworks 2012 oltp database but by putting it under...
2015-06-10
44 reads
What am I doing? Creating a publically available version of the adventureworks 2012 oltp database but by putting it under source control, implementing unit tests and improving the design...
2015-06-09
7 reads
I see the same question again and again "I am using SSDT but it takes a long time to publish...
2015-06-02
6,385 reads
I see the same question again and again “I am using SSDT but it takes a long time to publish...
2015-06-02
47 reads
I see the same question again and again “I am using SSDT but it takes a long time to publish...
2015-06-02
37 reads
I see the same question again and again “I am using SSDT but it takes a long time to publish changes, how do I make it faster?” or the...
2015-06-02
3 reads
I have put the code for MergeUi on github now:
https://github.com/GoEddie/MergeUi
That is all.
Tags: MergeUI
2015-05-21
529 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