码迷,mamicode.com
首页 >  
搜索关键字:bigfile tablespace    ( 1135个结果
Oracle删除当前用户下所有的表的方法
1、如果有删除用户的权限,则可以:drop user user_name cascade;加了cascade就可以把用户连带的数据全部删掉。删除后再创建该用户。 --创建管理员用户 create user 用户名 identified by 密码 default tablespace space_d...
分类:数据库   时间:2015-06-23 11:25:41    阅读次数:134
oracle ora-01652/oracle表空间
参考:oracel bigfile tablespace:(推荐)http://blog.chinaunix.net/uid-20779720-id-3078273.htmlora-01652解决http://www.cnblogs.com/songling/archive/2011/03/04/1...
分类:数据库   时间:2015-06-19 23:00:17    阅读次数:220
Use LOB Storage
If LOB storage is not defined and LOB attribute size exceeds 4000 characters the attributes which overflow will automatically be placed in the tables tablespace in default configured LOB storage and i...
分类:其他好文   时间:2015-06-17 11:40:10    阅读次数:115
更换临时表空间TEMP
SQL> SQL> create temporary tablespace temp2 tempfile '/URP/oracle/oradata/urpjw/temp001.dbf' size 170M; Tablespace created SQL> alter database default...
分类:其他好文   时间:2015-06-15 18:37:16    阅读次数:167
oracle建立表空间
//创建临时表空间create temporary tablespace test_temp tempfile 'E:\oracle\product\10.2.0\oradata\testserver\test_temp01.dbf' size 32m autoextend on nex...
分类:数据库   时间:2015-06-13 18:28:28    阅读次数:180
58数据库重建表空间记录
createundotablespaceundotbs1datafile'/home/oracle/product/11.2.0/oradata/srcl/undotbs01.dbf'size10240mreuse;altersystemsetundo_tablespace=undotbs1scop...
分类:数据库   时间:2015-06-05 11:42:01    阅读次数:174
Oracle查看表空间使用率
SELECT DBF.TABLESPACE_NAME, DBF.TOTALSPACE "总量(M)", DBF.TOTALBLOCKS AS 总块数, DBF.TOTALSPACE-DFS.FREESPACE "使用量(M)", DBF.TOTALBLOCKS-DFS.FREEBLO...
分类:数据库   时间:2015-05-30 01:46:22    阅读次数:178
oracle lob move tablespace
oracle 大对象移动表空间 ALTER INDEX GHSJ_JCSJ.SYS_IL0000129600C00012$$ REBUILD  TABLESPACE GHSJ_JCSJ   ORA-02327: cannot create index on expression with datatype LOB   将lob对象对应的列移动到相应的表空间,会自动创建之前的索引 ALT...
分类:数据库   时间:2015-05-29 23:20:40    阅读次数:317
oracle 命令创建用户 、授权、数据库导入、导出
最近在使用oracle,经常要导入导出数据,命令很简单,却经常忘记,所以记下来。。drop user yfplss cascade;--登录system用户删除已存在的用户名,该用户下的所有东西都被删掉--创建表空间create tablespace yfplss loggingdatafile '...
分类:数据库   时间:2015-05-29 23:09:20    阅读次数:195
无法为表空间 XX 中的段创建 INITIAL 区
select * from dba_data_files where TABLESPACE_NAME='XX'--找到表空间文件 alter database datafile '/opt/app/oracle/oradata/xx/xx03.dbf' autoextend on;
分类:其他好文   时间:2015-05-27 18:43:36    阅读次数:133
1135条   上一页 1 ... 79 80 81 82 83 ... 114 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!