Java – Save the results of select on Azure Cosmos DB SQL API into Azure Blob Storage No.74

I will show Java code that save results of select query as a JSON file into Azure Blob Storage. In the previous blog, I shared how to save results of select query on Cosmos DB as a JSON file into the local path. in this blog, I will save results into Azure Blob Storage. Contents ▼1. Migration data from Cosmos DB to Azure Blob Storage▼2. Prerequisites2-1. Free trial Azure Cosmos DB Account2-2. Install Visual Studio Code2-3. Install Maven2-4. Create a sample data▼3. Save the results of select on Azure Cosmos DB SQL API as JSON file into Azure Blob Storage using Java Code3-1. Make a directory3-2. Deploy an Apache Maven project3-3. Remove … Continue reading “Java – Save the results of select on Azure Cosmos DB SQL API into Azure Blob Storage No.74”

Java – Azure Cosmos DB (SQL) : Save results of select into a JSON file No.73

I will show Java code that save results of select query into a JSON file. In the previous blog, I shared how to save results of select query on Cosmos DB into a text file. in this blog, I will save results into a JSON file. Contents ▼1. What is a JSON format?▼2. Prerequisites2-1. Free trial Azure Cosmos DB Account2-2. Installing Visual Studio Code2-3. Installing Maven2-4. Creating a sample data▼3. Java code for saving results of select query on Cosmos DB into a JSON file3-1. Making a directory3-2. Deploying an Apache Maven project3-3. Removing the existing App.java and AppTest.java3-4. Starting Visual Studio Code3-5. Adding Cosmos DB library into pom.xml and save it … Continue reading “Java – Azure Cosmos DB (SQL) : Save results of select into a JSON file No.73”

Java – Azure Cosmos DB (SQL) : Save results of select into a text file No.72

I will show Java code that save results of select query into a text file. Contents ▼1. Prerequisites1-1. Free Azure Cosmos DB Account1-2. Installing Visual Studio Code1-3. Installing Maven1-4. Creating sample data▼2. Java code for saving results of select query on Cosmos DB into a text file2-1. Making a directory2-2. Deploying Apache Maven project2-3. Removing the existing App.java and AppTest.java2-4. Starting Visual Studio Code2-5. Adding Cosmos DB library into pom.xml and save it (Ctrl+S)2-6. Coding for saving results of select query on Cosmos DB into a text file2-7. Checking output of text file▼3. Reference▼1. Prerequisites 1-1. Free Azure Cosmos DB Account You can use trial free Cosmos DB Accounthttps://azure.microsoft.com/ja-jp/try/cosmosdb/ 1-2. … Continue reading “Java – Azure Cosmos DB (SQL) : Save results of select into a text file No.72”