Get-MasterDataServicesDatabaseServerInformation (PowerShell)

获取指定的 SQL Server 实例的连接信息。

语法

Get-MasterDataServicesDatabaseServerInformation [-ConnectionString] <String>

说明

Get-MasterDataServicesDatabaseServerInformation 返回连接到指定的 SQL Server 实例的数据库服务器信息对象,并获取有关该实例的信息。它验证指定的 SQL Server 实例是否是可承载 Master Data Services 数据库的受支持版本和版本类别。 

参数

-ConnectionString

ConnectionString 参数是一个字符串,该字符串指定用于连接 SQL Server 实例的信息。

必需?

true

位置?

0

默认值

接受管道输入

false

接受通配符?

false

输入和输出

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

输入

输出

Microsoft.MasterDataServices.Configuration.DatabaseServerInformation

Get-MasterDataServicesDatabaseServerInformation 返回用于连接指定的 SQL Server 实例的数据库服务器信息对象。

示例

输出

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

IsSkuValid         : True
IsVersionValid     : True
SqlInstance        : MyServer\MyInstance
SqlSku             : Enterprise
SqlVersion         : 10.50.NNNN.N
IsValid            : True
IsConnectionTested : True
Collations         : {Albanian, Arabic, Assamese, Azeri_Cyrillic...}
ServerProperties   : Microsoft.MasterDataServices.Configuration.DatabaseServerProperties
Connection         : System.Data.SqlClient.SqlConnection
ConnectionString   : Data Source=MyServer\MyInstance;Integrated Security=True;Persist Security Info=True;Pooling=False
IsSqlAdministrator : True

使用命名参数

此示例指定 ConnectionString 参数作为一个命名参数,以便连接到指定的 SQL Server 实例并获取该实例的相关信息。还可以选择将此对象传送到需要连接 Master Data Services 数据库所在服务器的其他 Master Data Services cmdlet。

C:\PS> Get-MasterDataServicesDatabaseServerInformation -ConnectionString 'Data Source=MyServer\MyInstance;Initial catalog=;Integrated Security=True;User ID=;Password='