Help Setting Up "Exercise - Explore Azure Synapse Analytics" for "Introduction to Azure Synapse Analytics "

Hayden 20 Reputation points
2025-03-18T20:25:16.03+00:00

Sorry if this isn't the correct section for this, but I couldn't find out where else to post.

I followed these instructions to set up the workspace, and when I run the setup.ps1 script, I run into this error: The requested subscription '84296111-06af-4779-9e31-63a82485b095' was not found. I am on the free trial right now, but I upgraded to the "pay-as-you-go" subscription; do I need to be on the $30/month tier to complete this lab?

This question is related to the following Learning Module

Azure Training
Azure Training
Azure: A cloud computing platform and infrastructure for building, deploying and managing applications and services through a worldwide network of Microsoft-managed datacenters.Training: Instruction to develop new skills.
2,375 questions
0 comments No comments
{count} votes

Accepted answer
  1. TP 118.2K Reputation points
    2025-03-18T23:01:00.35+00:00

    Hi Hayden,

    First, please clean up any resources that may have been created in Azure that are related to the exercise. To do this, in Azure portal, click Resource Groups and look for one similar to dp203-xxxxx. If you find one, click on its name, next click Delete resource group button, enter name in box to confirm, click Delete, confirm delete again.

    Wait for resource group and its contents to finish deleting (there will be notification message in upper right corner). If no dp203- resource group existed, continue below.

    Please open a separate browser tab and navigate to https://shell.azure.com . This will open a full screen Azure Cloud Shell. Make sure it is PowerShell by verifying that the prompt begins with

    PS /home/username>

    Please copy below commands and then right-click -- Paste them into cloud shell window:

    New-AzResourceGroup -Name fix-exercise-rg -Location westus
    New-AzStorageAccount -ResourceGroupName fix-exercise-rg -Name haydenxazcve321 -Location westus -SkuName Standard_LRS -PublicNetworkAccess Disabled -AllowBlobPublicAccess $false -MinimumTlsVersion TLS1_2
    
    

    What the above will do is create a resource group and a new storage account. There is no charge for this, provided you don't actually use the storage account. You can delete the storage account after completing the exercise if you want.

    NOTE: In the above commands I provided a random name for the storage account. You may modify this to something different if you want, before pasting command.

    Once the above is complete, please complete the steps from the exercise in same cloud shell window, starting at step #4. If you receive an error please make a note of precisely which step in the process for troubleshooting purposes.

    I was able to complete the set up instructions successfully minutes before posting this.

    IMPORTANT: Whenever you are finished an exercise or stepping away from your computer for a while, make sure you delete any Azure resources you created for the exercise. The resources created for DP-203 can be potentially very expensive if left running for extended amount of time.

    Please post your results, whether positive or negative.

    Please click Accept Answer and upvote if the above was helpful.

    Thanks.

    -TP


0 additional answers

Sort by: Most helpful

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.