标签:datafile code 数据 eve drop select images ges ima
1、数据库创建用户
参考博客:使用Oracle SQLDeveloper连接数据库并创建用户
2、表空间
查看表空间
select * from dba_data_files;
创建表空间
create tablespace myorcl datafile ‘D:\app\Administrator\oradata\myOracle\myorcl.dbf‘ size 20M autoextend on next 5M;
删除表空间
drop tablespace myorcl including contents and datafiles;
3、工作表中数据操作,需要提交
标签:datafile code 数据 eve drop select images ges ima
原文地址:http://www.cnblogs.com/bmbh/p/6737286.html