假设oracle11g所有的都已经安装和配置好

第一步:win+R,进入运行,cmd;

第二步:连接超级管理员sysdba,语句sqlplus / as sysdba;

第三步:(假设连接成功)  输入conn / as sysdba;

第四步:(显示连接成功)create user bony identified by b123;

第五步:grant resource,connect to bony;

第六步:conn bony/b123;

第七步:create table bbx(name varchar(32),age integer);

第八步:insert into bbx values('bomy',23);

第八步:select * from bbx;

这是我今天学到的。。。

 ctrl+c  退出数据库连接。

 

相关文章:

  • 2021-08-19
  • 2021-11-22
  • 2021-09-17
  • 2022-02-12
  • 2022-12-23
  • 2021-09-26
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-11-30
  • 2022-01-07
  • 2022-12-23
  • 2021-10-09
  • 2021-10-14
  • 2021-10-21
相关资源
相似解决方案