MoveReplica (NotesAdministrationProcess - LotusScript®)

Enters a request in the Administration Requests database to move a replica.

Defined in

NotesAdministrationProcess

Syntax

noteID$ = notesAdministrationProcess .MoveReplica( sourceserver$ , sourcedbfile$ [ , destserver$ ] [ , destdbfile$ ] [ , copyacl ] [ , createftindex ] )

Parameters

sourceserver$

String. The full hierarchical name (can be abbreviated) of the server containing the database being moved. An empty string ("") means the local server.

sourcedbfile$

String. The pathname of the database being moved relative to the data directory.

destserver$

String. The full hierarchical name (can be abbreviated) of the server containing the moved replica. An empty string ("") means the local server.

destdbfile$

String. Optional. The pathname of the moved database relative to the data directory. Defaults to the same pathname as the source file.

copyacl

Boolean. Optional.

  • True (default) copies the ACL.
  • False does not copy the ACL.

createftindex

Boolean. Optional.

  • True creates a full-text index.
  • False (default) does not create a full-text index.

Return value

noteID$

String. The note ID of an entry created in the Administration Requests database.

Usage

This method triggers "Check access" and "Non-cluster move replica" administration process requests.

Example