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,386 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
RAG — Retrieval Augmented Generation. we have covered so far — embeddings, vectors, vector...
By Vinay Thakur
Continuing from Day 6 we learned Embeddings, Semantic Search and Checks, on Day 7...
By Vinay Thakur
Continuing from Day 5 where we covered notebooks, HuggingFace and fine tuning AI now...
I've written some documentation on using different Markdown types of files on GitHub. It's...
Comments posted to this topic are about the item Not Just an Upgrade
Comments posted to this topic are about the item Restoring On Top I
I am doing development work on a database and want to keep a backup so I can reset my database. I make some changes and want to restore over top of my changes. When I run this code, what happens?
USE Master BACKUP DATABASE DNRTest TO DISK = 'dnrtest.bak' GO USE DNRTest GO CREATE TABLE MyTest(myid INT) GO USE master RESTORE DATABASE DNRTest FROM DISK = 'dnrtest.bak' WITH REPLACESee possible answers