Using PowerShell to Build your Azure VM Environment
In a previous post I wrote about Using a Hyper-V VHD in an Azure VM. Today I’d like to show...
2014-06-23
1,651 reads
In a previous post I wrote about Using a Hyper-V VHD in an Azure VM. Today I’d like to show...
2014-06-23
1,651 reads
As I’ve started digging deeper into using Azure the need to automate tasks (turn off all VMs, turn on all...
2014-06-19 (first published: 2014-06-18)
3,117 reads
I’m in the process of moving some my lab environments that I use for teaching SQL Server classes to Azure....
2014-06-06
1,290 reads
I’ve noticed a recent trend with many presentations and articles on Power BI and Excel functionality. Many of these presentations...
2014-06-03
1,115 reads
I wanted to share a quick resolution I had to a problem with connecting Power Query to data stored in...
2014-05-09 (first published: 2014-05-02)
2,081 reads
I hope you were able to attend my free webinar on Creating Power Map Reporting Solutions on April 17 2014. If you...
2014-04-18
1,017 reads
I hope you were able to attend my free webinar on Bringing Power BI Q&A to your Organization on April 15...
2014-04-17
972 reads
I hope you were able to attend my free webinar on Understanding Microsoft Self-Service BI on March 13, 2014. If...
2014-03-14
841 reads
Come join me for this webinar on 4/15/2014 at 11:00 AM EST
Bringing Power BI Q&A to your Organization
Q&A is an...
2014-03-13
760 reads
Come join me for this webinar on 4/17/2014 at 11:00 AM EST
Creating Power Map Reporting Solutions
Excel 2013 with Office 365...
2014-03-13
757 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