数据库 建立
Posted vcr_玄子
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了数据库 建立相关的知识,希望对你有一定的参考价值。
1、使用管理员账户登录
system/密码
2、创建命名空间:路径、大小可以任意
create tablespace temporcl datafie ‘E:\temp\temporcl.ora‘ size 100m; //可以.dbf文件
3、创建用户
create user test_user identified by \ default tabespace temporcl quota 50m on users;
4、给用户赋权:
grant all privileges to test_user;
之后就可以用创建的用户进行登录、建表。
select * from dba_data_files --查询表空间的位置
以上是关于数据库 建立的主要内容,如果未能解决你的问题,请参考以下文章