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

SQL Anywhere 11.0.1 » SQL Anywhere Server - Database Administration » Starting and Connecting to Your Database » SQL Anywhere database connections » Using integrated logins

 

Revoke an integrated login permission

To revoke an integrated login permission (Sybase Central)
  1. Open Sybase Central.

  2. Connect to the database as a user with DBA authority.

  3. In the left pane, clickLogin Mappings.

  4. In the right pane, right-click the login mapping you want to remove and click Delete.

  5. Click Yes.

To revoke an integrated login permission (SQL)
  1. Connect to the database as a user with DBA authority.

  2. Execute a REVOKE INTEGRATED LOGIN FROM statement.

Example

The following SQL statement removes integrated login permission from the Windows user pchin.

REVOKE INTEGRATED LOGIN
FROM pchin;

See REVOKE statement.