Hello there!
I'm new to Cloud Azure and am doing a unit on it at university.
My inquiry is very basic. Mostly I would just like to know where I can find some good resources on scripting to manipulate a SQL database on a Cloud service using Azure Powershell.
Searching online seems to bring me in a loop back to the basic commands like Get-AzureSubscription and etc., but to push myself in this module I need to manipulate variables.
Does anyone know of any good resources to get started with this? For the moment I want to find a way to check if a SQL database is running in my Azure platform using Powershell.
A pointer in the right direction would be very much appreciated!
New Edit 13/02/15:
Maybe something like the following would work?
Get-AzureSqlDatabase | Where-Object {$_.status -eq "running"}#or
Get-AzureSqlDatabase | Where-Object {$_.status -like "running"}
#or
Get-Service | Where-Object {$_.status -like "running"}
- Edited by angeloDomini Friday, February 13, 2015 8:08 AM