通过cmd对数据库SQL进行创建表空间并创建用户
通过cmd对数据库SQL进行创建表空间并创建用户
1.创建表空间:create tablespace stx(名字) datafile ' 目录路径\stx(名字).dbf ' size 64m;
2.创建用户:create user 用户名 identified by 用户名 default tablespace stx(名字);

3.授权:grant dba to 用户名;

最终在文件夹呈现出来如图:

1.创建表空间:create tablespace stx(名字) datafile ' 目录路径\stx(名字).dbf ' size 64m;
2.创建用户:create user 用户名 identified by 用户名 default tablespace stx(名字);

3.授权:grant dba to 用户名;

最终在文件夹呈现出来如图:

