码迷,mamicode.com
首页 >  
搜索关键字:tablespace    ( 1117个结果
Oracle如何创建表空间
create user frame identified by tiger;grant create session to frame;grant create table to frame;grant create tablespace to frame;grant create view to ...
分类:数据库   时间:2014-06-11 13:00:15    阅读次数:283
Oracle 索引 简介
1 索引的创建语法: CREATE UNIUQE | BITMAP INDEX .       ON .            ( | ASC | DESC,             | ASC | DESC,...)      TABLESPACE      STORAGE      LOGGING | NOLOGGING      COMPUTE STATISTICS...
分类:数据库   时间:2014-06-04 13:07:08    阅读次数:400
ORA-01652: unable to extend temp segment by 128 in tablespace TEMP
解决办法 --创建中转临时表空间 2.createtemporarytablespaceTEMP02TEMPFILE‘/u01/app/oracle/oradata/perm/temp02.dbf‘SIZE1024MREUSEAUTOEXTENDONNEXT640KMAXSIZEUNLIMITED; --改变缺省临时表空间为刚刚创建的新临时表空间temp02 3.alterdatabasedefaulttemporarytablespace..
分类:其他好文   时间:2014-06-02 04:01:51    阅读次数:1213
ORA-10635: Invalid segment or tablespace type
对DML频繁的表执行shrink操作时报ORA-10635:Invalidsegmentortablespacetype 操作系统版本: $oslevel-s 5300-07-01-0748 数据库版本: SQL>select*fromv$version; BANNER ---------------------------------------------------------------- OracleDatabase10gEnterpri..
分类:其他好文   时间:2014-06-02 03:22:10    阅读次数:300
ORA-01652: unable to extend temp segment by 128 in tablespace TEMP01
收集数据库信息时候报ORA-01652错如下 SQL>EXECDBMS_STATS.gather_database_stats; BEGINDBMS_STATS.gather_database_stats;END; * ERRORatline1: ORA-01652:unabletoextendtempsegmentby128intablespaceTEMP01 ORA-06512:at"SYS.DBMS_STATS",line13210 ORA-06512:at"SYS..
分类:其他好文   时间:2014-06-02 03:20:19    阅读次数:316
oracle基本语句(第五章、数据库逻辑存储结构管理)
1、使用SYS用户以SYSDBA身份登录到SQL Plus,使用视图V$TABLESPACE查看表空间信息SELECT * FROMV$TABLESPACE;2、查看视图DBA_TABLESPACES查看所有表空间的属性和在线状态SELECT TABLESPACE_NAME, CONTENTS, S...
分类:数据库   时间:2014-05-26 00:59:25    阅读次数:293
oracle基本语句(第七章、数据库逻辑对象管理)
索引、实体化视图、簇、散列簇、序列、同义词1、创建表CREATE TABLE ( ,……);CREATE GLOBAL TEMPORARY TABLE ( ,……) ON COMMIT DELETE ROWS TABLESPACE ;--创建事务级临时表,事务提交后删除临时表中数据CREATEGLO...
分类:数据库   时间:2014-05-25 23:25:14    阅读次数:455
DB2中如何将非自动存储转换成自动存储空间管理方式
DB210引入根据温度管理数据存储的表空间更管理方式,但是需要数据库启用自动存储管理,具体在存储路径在某个目录下即可,要讲非自动存储的表空间转换成自动存储的管理方式需要两个步骤,尤其是从低版本升级过来的数据库。ALTERDATABASEEMPLOYEEADDSTORAGEON‘/data‘这样即可,但..
分类:数据库   时间:2014-05-24 16:37:36    阅读次数:281
Oracle 表的创建 及相关参数
1、 创建表完整语法 CREATE TABLE [schema.]table (column datatype [, column datatype] … ) [TABLESPACE tablespace] [PCTFREE integer] [PCTUSED integer] [INITRANS integer] [MAXTRANS integer] [STORAGE sto...
分类:数据库   时间:2014-05-22 06:25:53    阅读次数:384
MySQL 5.5: InnoDB Change Buffering
To speed up bulk loading of data, InnoDB implements aninsert buffer, a special index in the InnoDB system tablespace that buffers modifications to sec...
分类:数据库   时间:2014-05-16 18:26:09    阅读次数:532
1117条   上一页 1 ... 109 110 111 112 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!