Skip to content

Commit

Permalink
Update ADL_PS_QuickStart.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Saveen Reddy authored Jan 11, 2017
1 parent e67ba53 commit 49c4408
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion docs/PowerShell/ADL_PS_QuickStart.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,16 @@ Use the Login-AzureRmAccount cmdlet

Login-AzureRmAccount -SubscriptionName $subname

## Getting a list of all the jobs submitted in the last day
## Get all the jobs submitted in the last day

The -SubmittedAfter parameter performs server-side filtering.

Get-AdlJob -Account $adla -SubmittedAfter ([DateTime]::Now.AddDays(-1))

## Get all the jobs submitted in the last 5 days and that successfully completed

Get-AdlJob -Account datainsightsadhoc -SubmittedAfter (Get-Date).AddDays(-5) -State Ended -Result Succeeded

## Getting a list of all the jobs

NOTE: If you have a lot of jobs submitted inthe last 30 days it may take a while for this cmdlet to finish'
Expand Down

0 comments on commit 49c4408

Please # to comment.