2013-04-03 (first published: 2013-03-08)
1,690 reads
2013-04-03 (first published: 2013-03-08)
1,690 reads
2013-04-01 (first published: 2013-03-08)
1,804 reads
2013-03-29 (first published: 2013-03-08)
1,434 reads
2013-02-18 (first published: 2013-01-25)
2,770 reads
2012-08-13 (first published: 2012-07-31)
1,789 reads
2011-11-18 (first published: 2008-01-29)
2,907 reads
Copy Multiple objects from One Schema to Another Schema
2011-09-30 (first published: 2011-09-07)
1,545 reads
2011-08-31 (first published: 2011-08-24)
2,520 reads
This script is used for drop and create a new or existing user. IF User is already exists in database then first it will dropped and then recreate.
2011-05-11 (first published: 2011-04-28)
1,790 reads
2011-04-26 (first published: 2011-04-20)
2,665 reads
By Steve Jones
AI is everywhere. It’s in the news, it’s being added to every product, management...
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...
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