Azure REST API – Part 04 – Get an Azure Resource in Postman

In the last blog I showed you how to request a bearer token and how we can use some automation features in Postman. In this blog I will show you how to request an Azure resource. Get SQL Databases by Server Take a look at the following API reference. https://docs.microsoft.com/en-us/rest/api/sql/databases/get We can use it to … More Azure REST API – Part 04 – Get an Azure Resource in Postman

Azure REST API – Part 03 – Request Bearer Token in Postman

In the last blog I showed you how to configure an Application and Service Principal in Azure using PowerShell. We could have used the portal but the portal changes a lot and the cmdlets ae more consistent. In this blog I will show you how to request a bearer token using Postman. If you do … More Azure REST API – Part 03 – Request Bearer Token in Postman

Neo4j Database – Part 06 – Creating Our Data Model

In the last blog I discussed the various types of data loading options Neo4j offers. In this blog I will take the Northwind database and convert it to a Neo4j graph database model. Contents Converting an RDBMS Model Data Types Converting Tables that do not participate in Joins Converting One to One/One to Many Joins … More Neo4j Database – Part 06 – Creating Our Data Model

Neo4j Database – Part 05 – Data Loading Options

In the last blog I described the Cypher object notation used by the query language. In this blog I will describe how to manually create nodes and relationships and then how to do this more efficiently by importing data. Contents Creating Nodes and Relationships by Hand Unique Constraints Merge Command Bulk Loading Data Options Creating … More Neo4j Database – Part 05 – Data Loading Options

Neo4j Database – Part 04 – Cypher Object Notation

In the last blog I described the objects that make up a Neo4j database. In this blog I will discuss how we create each database object. It would be impossible to learn Neo4j without learning the Cypher query language. At the time of writing the UI and the most popular client query libraries all rely … More Neo4j Database – Part 04 – Cypher Object Notation