2011-10-06 (first published: 2009-12-02)
9,357 reads
2011-10-06 (first published: 2009-12-02)
9,357 reads
2011-10-04 (first published: 2009-11-26)
11,114 reads
2011-09-29 (first published: 2009-11-18)
10,447 reads
2011-09-27 (first published: 2009-10-28)
9,678 reads
2011-09-22 (first published: 2009-10-21)
10,935 reads
2011-09-20 (first published: 2009-10-14)
10,010 reads
2011-09-15 (first published: 2009-10-07)
8,036 reads
2011-09-13 (first published: 2009-09-30)
8,063 reads
2011-09-08 (first published: 2009-09-23)
6,752 reads
When a job is too simple to be done in-house, how far down the phylogenetic tree should you go?
2011-09-06 (first published: 2009-09-16)
7,670 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...
Hi, ssms is free here. I can think of other reasons to do this...
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
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