Gather data from an API using the Script source node

The following article outlines how Euclid Studio can be used to request data from an API and process it so it can be used in the system. This requires some knowledge of Python coding that is used within the Script source node and how APIs function. APIs usually have associated documentation that describes how to…

Read More

Using Azure Data Studio Notebooks to investigate variable correlations

The objective of this exercise is to demonstrate creating an Azure Data Studio (ADS) Notebook using Python to query SQL Server and investigate correlations between variables. Variable correlation can be key to increasing the accuracy of a forecast or predicting potential outcome scenarios. What is an Azure Data Studio Notebook? Azure Notebooks is a Microsoft…

Read More

How Do I Use Symmetric Encryption in SQL Server to Encrypt and Decrypt Data?

There is a very helpful article describing how to encrypt a column of data in a relational database by using symmetric encryption (sometimes known as column-level encryption, or cell-level encryption) using Transact-SQL found here: https://docs.microsoft.com/en-us/sql/relational-databases/security/encryption/encrypt-a-column-of-data?view=sql-server-ver15. After reading the article, I felt like working-through the provided examples myself in order to dig a bit deeper into…

Read More

Provisioning a Windows VM in Azure

A Virtual Machine or “VM” is a computing resource that uses software instead of hardware to run programs and deploy apps. Azure virtual machines enable you to swiftly create dedicated computing resources that can be used just like any physical desktop or server. Choose Your Method Azure virtual machines (VMs) can be created through the Azure portal…

Read More