Cmdlet: get-ASDatabase
Note: this cmdlet is not in the current build and at the moment you will need to download the source and compile it yourself.
This cmdlet will get a reference to one or more Databases on the specified server
Parameters (by name)
- ServerName: the name of the SSAS server.
- DatabaseName: the name of the SSAS database (will accept wildcards).
PS > get-ASDatabase localhost "Adventure Works DW"
Parameters (by Object)
- Server: an SSAS server object, which can be passed in on the pipeline.
- DatabaseName: the name of the SSAS server.
PS > get-ASServer localhost | get-ASDatabase "Adventure*"