oracle alter user grant connect through authenication required 后proxy user怎么连接数据库
通过以下步骤,proxy user可以连接数据库:
-
使用proxy user身份登录到数据库:
sqlplus proxy_user/password@database -
在SQL*Plus中,通过
CONNECT THROUGH子句连接到目标用户:CONNECT target_user IDENTIFIED BY target_password CONNECT THROUGH proxy_user; -
连接成功后,可以像普通用户一样使用数据库。例如:
SELECT * FROM target_user.table_name;
原文地址: https://www.cveoy.top/t/topic/cHvH 著作权归作者所有。请勿转载和采集!