解决oracle创建用户不能登录

xiaoxiao2022-12-05  259

//用system身份登录 SQL> create user username identified by userpwd;

用户已创建 SQL> grant connect to username;

授权成功。 SQL> conn username/userpwd;

已连接。 //此时新创建的用不能创建表的....若要创建的用户能够创建表..就要用system授权给username 如下: SQL>conn system/***;

已连接。 SQL> grant create table to username;

授权成功。 这样才可以建表

相关资源:登录不上oracle解决方法
转载请注明原文地址: https://www.6miu.com/read-4979302.html

最新回复(0)