Oracle7 Server Distributed Systems Volume II: Replicated Data

Contents Index Home Previous Next

DBMS_REPCAT.WAIT_MASTER_LOG

Purpose

To determine if changes that were asynchronously propagated to a master site have been applied. For additional information, refer to [*].

Syntax

The parameters for the WAIT_MASTER_LOG procedure are described in Table 12 - 173, and the exception is listed in Table 12 - 174. The syntax for this procedure is shown below:

DBMS_REPCAT.WAIT_MASTER_LOG(
			gname		IN	VARCHAR2, 
			record_count	IN	NATURAL, 
			timeout	IN	NATURAL, 
			true_count	OUT	NATURAL)

Parameter Description
gname The name of the replicated object group.
record_count The procedure returns whenever the number of incomplete activities is at or below this threshold.
timeout The maximum number of seconds to wait before the procedure returns.
true_count (out parameter) Returns the number of incomplete activities.
Table 12 - 173. Parameters for WAIT_MASTER_LOG

Exception Description
nonmaster The invocation site is not a master site.
Table 12 - 174. Exception for WAIT_MASTER_LOG


Contents Index Home Previous Next