ALTER MULTIPLEX SERVER Statement

Changes the name, catalog file path, role, or status of the given server.

Syntax

Syntax 1:

ALTER MULTIPLEX SERVER server-name server-option

Syntax 2:

ALTER MULTIPLEX SERVER PRIVATE NULL

Parameters

  • server-option:
    RENAME new-server-name
     
     |  DATABASE  'dbfile' 
     
     |  ROLE { WRITER | READER | COORDINATOR }
      
     |  STATUS { INCLUDED |  EXCLUDED }
     
     |  ASSIGN AS FAILOVER SERVER
     
     |  host-port-list }
  • host-port-list: –  { HOST  '  hostname '  PORT  port number ...} { PRIVATE HOSThostnamePORT port number ...}
    Note:

    Sybase recommends you shut down the target server before you exclude it. If you do not, an excluded server automatically shuts down and requires ALTER MULTIPLEX SERVER server-name STATUS INCLUDED and a synchronize to rejoin the multiplex.

Examples

  • Example – This example excludes secondary server mpx_writer1:
    ALTER MULTIPLEX SERVER mpx_writer1 STATUS EXCLUDED

Usage

Changes the multiplex server, as follows:

RENAME – changes the name of the given server. The server automatically shuts down. The next restart requires the new name.

DATABASE – changes the catalog file path for the given server. The server will automatically shut down and next time it should be started using new catalog path. Its user's responsibility (Sybase central might hide it) to relocate the catalog file itself.

ROLE – changes the role of the given server. Users are not allowed to change the role of coordinator or role to coordinator. If the writer node's role is changed to reader, the server shuts down.

STATUS – changes the status of the given server. A failover node cannot be excluded unless it is the last node to be excluded. The server automatically shuts down after exclusion. After including a node, you must be synchronize and restart it.

ASSIGN – designates the given server as the new failover server. The node should not be in the excluded state. The ASSIGN AS FAILOVER clause is a standalone clause that cannot be used with any other ALTER MULTIPLEX SERVER clause.

The coordinator must be running, but you can run the ALTER MULTIPLEX SERVER command from any server in the multiplex. (Sybase recommends that all DDL statements be run on the coordinator.) In all cases except when altering role from reader to writer, the named server is automatically shut down.

Note:

Sybase recommends that the target server be shut down before you exclude it. If you do not, an excluded server will automatically shut down and requires ALTER MULTIPLEX SERVER server-name STATUS INCLUDED and a synchronize to rejoin the multiplex.

Permissions

Must have DBA or MULTIPLEX ADMIN authority.