How To Obtain User Permissions from Oracle ServerLast reviewed: January 20, 1997Article ID: Q156666 |
The information in this article applies to:
SUMMARYThis article describes one method of determining what privileges a user has on an Oracle server.
MORE INFORMATIONThe following code example demonstrates how to obtain user permissions from an Oracle server. Before attempting to run this code, be sure to replace the <datasource>, <user>, and <password> in the SQLStringConnect command with the appropriate values for your system.
Begin Code Example
handle = SQLStringConnect("dsn=<datasource>;uid=<user>;pwd=<password>") status = SQLExec(handle, "Select * from SESSION_PRIVS", "SqlResult") IF (status < 1) ? "Unable to retrieve permissions" ELSE SCAN ? SqlResult.Privilege ENDSCAN ENDIF |
KBCategory: kbusage kbinterop kbhowto
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |