MSFT_MPFTranLogServer


WMI class that represents transaction log servers of Microsoft® Provisioning Framework (MPF) in the configuration database. Used by Configuration Database WMI Provider.

Syntax

class MSFT_MPFTranLogServer
{
	[key]
	string ServerName;

	[key]
	string LogDBName;

	MSFT_MPFTranLogGroup ref LogGroupName;

	[PropMap("ServerName=Listener")]
	MSFT_MPFListenerServer ref Listener;

	boolean Active;

	uint32 maps_ActivateLogServer(
		[in, fromPath, ID(0)] string ServerName,
		[in, fromPath, ID(1)] string LogDBName,
		[in, ID(2)] boolean Active);
};

Table
TranLogServer

Properties

ServerName *
A string that identifies the transaction log server.
LogDBName *
A string that identifies the transaction log database.
MSFT_MPFTranLogGroup ref LogGroupName +
A reference to the log group for the transaction log server.
MSFT_MPFListenerServer ref Listener +
A reference to the auditing and recovery server for the transaction log server.
Active
A boolean that indicates whether the transaction log server is active.
 
* Key property
+ Reference property

Methods

Method Description
maps_ActivateLogServer Stored procedure that activates or deactivates the transaction log server.

Parameters

  • Active [in, ID(2)]: A boolean that identifies whether to activate or deactivate the server.
  • LogDBName [in, fromPath, ID(1)]: A string that identifies the database to activate. If left null, this information is taken from the path of the instance used to make the method call.
  • ServerName [in, fromPath, ID(0)]: A string that identifies the server to activate. If left null, this information is taken from the path of the instance used to make the method call.

See also

MSDN® information on Windows Management Instrumentation (WMI), MSFT_MPFListenerServer


Up Top of Page
© 1999-2002 Microsoft Corporation. All rights reserved.