Saturday, 18 May 2019

Azure Data Lake

Azure Data Lake is a salable  data storage and analytics service this service is hosted in azure.

https://docs.microsoft.com/en-in/azure/data-lake-analytics/



Tuesday, 14 May 2019

PowerShell: Check whether Resource group exist or not.





Get-AzureRmResourceGroup -Name $rgName -ErrorVariable notPresent -ErrorAction SilentlyContinue
if ($notPresent)
{
    Write-Host 'ResourceGroup doesnt exist'
    # ResourceGroup doesn't exist
}
else
{
Write-Host 'ResourceGroup exist'
    # ResourceGroup exist
}