Get-MasterDataServicesSystemSettings (PowerShell)

获取指定的 Master Data Services 数据库中的系统设置。

语法

Get-MasterDataServicesSystemSettings [-Database] <Microsoft.MasterDataServices.Configuration.DatabaseInformation>

说明

Get-MasterDataServicesSystemSettings 返回包含指定 Master Data Services 数据库中的系统设置的对象集合。此 cmdlet 自 Master Data Services 数据库中的 mdm.tblSystemSetting 返回系统设置的子集。

参数

-Database

Database 参数是 Get-MasterDataServicesDatabase 中的一个数据库信息对象。此对象包含连接 SQL Server 实例和指定的 Master Data Services 数据库的信息。

必需?

true

位置?

0

默认值

接受管道输入

true (ByValue)

接受通配符?

false

输入和输出

输入类型是可以传送到 cmdlet 的对象的类型。返回类型是 cmdlet 所返回的对象的类型。

输入

Microsoft.MasterDataServices.Configuration.DatabaseInformation

输入是 Get-MasterDataServicesDatabase 中的一个数据库信息对象。

输出

System.Collections.ObjectModel.Collection{Microsoft.MasterDataServices.Services.DataContracts.SystemSetting}

Get-MasterDataServicesSystemSettings 自指定的 Master Data Services 数据库返回系统设置对象的集合。

示例

输出

下例是在使用此 cmdlet 时所返回的输出的示例。

Identifier       : Microsoft.MasterDataServices.Services.DataContracts.Identifier
Permission       : NotSpecified
AuditInfo        : Microsoft.MasterDataServices.Services.DataContracts.AuditInfo
DisplayName      : Server Timeout
Description      : Number of seconds the MDM server will process an action
SettingType      : FreeForm
DataType         : Number
SettingValue     : 120000
SystemDomainList : Microsoft.MasterDataServices.Services.DataContracts.SystemDomainList
MinValue         : 900
MaxValue         : 240000
IsVisible        : True
DisplaySequence  : 2

Identifier       : Microsoft.MasterDataServices.Services.DataContracts.Identifier
Permission       : NotSpecified
AuditInfo        : Microsoft.MasterDataServices.Services.DataContracts.AuditInfo
DisplayName      : Notification Interval
Description      : Frequency that e-mail notifications are issued (seconds)
SettingType      : FreeForm
DataType         : Number
SettingValue     : 120
SystemDomainList : Microsoft.MasterDataServices.Services.DataContracts.SystemDomainList
MinValue         : 120
MaxValue         : 240000
IsVisible        : True
DisplaySequence  : 8

...

传送输出和使用位置参数

此示例自指定的 Master Data Services 数据库中的 mdm.tblSystemSetting 返回系统设置的子集。 此示例针对 Get-MasterDataServicesSystemSettings 中的 Database 参数,将 Get-MasterDataServicesDatabase 的输出传送到 Get-MasterDataServicesSystemSettings。示例中演示如何将 -Database 参数用作位置参数。

C:\PS> Get-MasterDataServicesDatabase -Server "Data Source=MyServer\MyInstance;Integrated Security=True" -DatabaseName "MyDatabase" | Get-MasterDataServicesSystemSettings