oracle 中的用户

创建用户:

  create user test identified by test;

修改密码:

  1、alter user test identified by mima;

  2、passw[ord]   [用户名],然后再输入新密码,旧密码

删除用户:

  drop user test cascade; //级联删除该用户下的表

猜你喜欢

转载自www.cnblogs.com/BaiLaowu/p/9275873.html