标签:
1.环境相关
Connected to Oracle Database 11g Enterprise Edition Release 11.2.0.1.0
Connected as sys@ORCL AS SYSDBA
<!--创建表空间,表空间名字为yycg-->
SQL> create tablespace yycgtablespace
2 logging
3 datafile ‘D:\ProgramFiles\Oracle11g\oradata\yycg\yycgtablespace.dbf‘
4 size 32m
5 autoextend on
6 next 32m maxsize 2048m
7 extent management local;
Tablespace created
<!--创建用户,用户名字为yycguser 密码为yycguser 该用户使用的表空间为yycg->
SQL> create user yycguser identified by yycguser
2 default tablespace yycg
3 temporary tablespace temp;
User created
<!--给用户授权 授予的权限为连接数据库,资源,dba->
SQL> grant connect,resource,dba to yycguser;
Grant succeeded
<!--导入yycg的表结构和数据-->
@F:\project\yycg\oracle_sql\yycg_table.sql
@F:\project\yycg\oracle_sql\yycg_data.sql
<!--查看当前使用的数据库-->
select name from V$DATABASE;
标签:
原文地址:http://www.cnblogs.com/lihuo/p/4925684.html