December 2015
Intermediate to advanced
760 pages
14h 31m
English
This recipe lists the available SSAS cmdlets in SQL Server 2014.
Let's explore the code required to list the SSAS cmdlets:
Get-Command -Module SQLASCmdlets
This will give a result similar to this:

A handful of SSAS cmdlets were introduced in SQL Server 2012 and carried over to SQL Server 2014. You can import the SQLASCMDLETS module to start using the new cmdlets.
To list the new AS cmdlets, simply use Get-Command:
Get-Command -Module SQLASCmdlets
You will notice that some of the common SSAS tasks have been wrapped in cmdlets, ...
Read now
Unlock full access