Get-SEERegionStatus parameter parameter . .
Returns region information and lists tasks running in the region.
Name of the region whose status is to be queried.
Default database server on the local machine: | -usedb |
Default database server on the local machine, identical to -usedb: | -usedb "(local)" |
Specific database server on the local machine: | -usedb "(local)\SQLEXPRESS" |
Default database server instance on a specific machine (SC1 used in example) | -usedb "SC1" |
Specific database server instance on a specific machine (SC1, SQLEXPRESS used in example for machine name, database server name) | -usedb "SC1\SQLEXPRESS" |
Get-SEERegionStatus returns an array of two objects:
class CICSRegion { System.String Name System.String DBInstance System.String RegionState }
Task information can also be accessed using the first object in the returned object array using SepTasksStatus.
This command returns all the information for region ESDEMO residing on database server instance SQLEXPRESS on the local computer. It also lists all running tasks with details on ESDEMO.
Get-SEERegionStatus -UseDB "(local)\SQLEXPRESS" -Region "ESDEMO"