Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.

SQL Anywhere 11.0.1 (Français) » SQL Anywhere Server - Database Administration » Configuring Your Database » Managing user IDs, authorities, and permissions » Managing login policies overview

 

Modify the root login policy

♦  To modify the root login policy (Sybase Central)
  1. Connect to the database as a user with DBA authority.

  2. In the left pane, click Login Policies.

  3. In the right pane, right-click root and choose Properties.

  4. Modify a policy value and click OK.

♦  To modify the root login policy (SQL)
  1. Connect to the database as a user with DBA authority.

  2. Execute an ALTER LOGIN POLICY statement.

Example

This example creates overrides in the root login policy for the locked and max_connections values.

ALTER LOGIN POLICY root 
locked=on
max_connections=5;
See also