Azure Data Architecture Guide (ADAG)
The Azure Data Architecture Guide has just been released! Check it out: http://aka.ms/ADAG
Think of it as a menu or syllabus for...
2018-02-15
121 reads
The Azure Data Architecture Guide has just been released! Check it out: http://aka.ms/ADAG
Think of it as a menu or syllabus for...
2018-02-15
121 reads
In this podcast I talk with Mike Rabinovici of Dimodelo Solutions about data being the new currency, the importance of showing...
2018-02-06
508 reads
In this podcast I talk with Mike Rabinovici of Dimodelo Solutions about data being the new currency, the importance of showing...
2018-02-06
56 reads
I have blogged about Data Virtualization vs Data Warehouse and wanted to blog on a similar topic: Data Virtualization vs. Data Movement.
Data...
2018-02-02
1,329 reads
I have blogged about Data Virtualization vs Data Warehouse and wanted to blog on a similar topic: Data Virtualization vs. Data Movement.
Data...
2018-02-02
66 reads
As I mentioned in my recent blog Use cases of various products for a big data cloud solution, with so many...
2018-01-05
704 reads
As I mentioned in my recent blog Use cases of various products for a big data cloud solution, with so many...
2018-01-05
96 reads
There have been a number of enhancements to Hadoop recently when it comes to fast interactive querying with such products...
2017-12-22
1,753 reads
There have been a number of enhancements to Hadoop recently when it comes to fast interactive querying with such products...
2017-12-22
101 reads
Azure Databricks (documentation and user guide) was announced at Microsoft Connect, and with this post I’ll try to explain its use...
2017-11-28 (first published: 2017-11-20)
2,869 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