码迷,mamicode.com
首页 >  
搜索关键字:tablespace    ( 1117个结果
Oracle表空间
创建表空间等等select tablespace_name from dba_tablespaces;--dba权限用户查询数据库中的表空间 select * from all_tables where tablespace_name='tablespace_name';--查询表空间中的表,注意大...
分类:数据库   时间:2015-12-24 20:37:24    阅读次数:160
fil_space_create
/*******************************************************************//**Creates a space memory object and puts it to the tablespace memory cache. Ifth...
分类:其他好文   时间:2015-12-24 19:24:11    阅读次数:287
oracle数据库ORA-01654 错误的解决方法
引言:数据库突然报: ORA-01654: unable to extend index BO.INDEX_indexname by 311072 in tablespace 错误,上网查原因,发现解决方法只有一个,就是增加tablespace的大小.现归纳解决此问题的方法如下.方法1: 当出现.....
分类:数据库   时间:2015-12-22 23:04:14    阅读次数:574
orcle经常使用语句
--1.创建暂时表空间create temporary tablespace AUTOMONITORV5_temptempfile 'D:\ORACLE\KARL\ORADATA\ORCL\AUTOMONITORV5_temp.DBF' size 50m autoextend on ne...
分类:其他好文   时间:2015-12-19 12:20:00    阅读次数:183
nagios check_oracle plugin (add check temp tablespace)
#!/bin/sh## latigid010@yahoo.com# 01/06/2000## This Nagios plugin was created to check Oracle status#export ORACLE_SID=testexport ORACLE_BASE=/test/u....
分类:移动开发   时间:2015-12-18 16:34:16    阅读次数:508
oracle-表空间满了
一、查看select a.tablespace_name,a.bytes/1024/1024 "sum MB",(a.bytes-b.bytes)/1024/1024 "used MB",b.bytes/1024/1024 "free MB",round (((a.bytes-b.bytes)/a....
分类:数据库   时间:2015-12-17 12:48:10    阅读次数:257
oracle删除用户及表空间,导入用户和数据
drop user xxx cascade;drop tablespace xxx including contents and datafiles;create tablespace xxx datafile 'E:\oracle\product\10.2.0\oradata\ts\xxx.dbf...
分类:数据库   时间:2015-12-16 19:09:52    阅读次数:258
创建oracle数据库的表空间、用户、目录、导入\导出文件等信息
1、创建表空间 create tablespace ts_aw logging datafile 'd:\app\Administrator\product\tablespace\ts_aw.dbf' size 10M autoextend on next 5M maxsize 20...
分类:数据库   时间:2015-12-16 15:42:01    阅读次数:188
sql思考
-- Create tablecreate table STUDENT( id NUMBER, name VARCHAR2(100), age NUMBER, sex INTEGER)tablespace DEMO pctfree 10 initrans 1 maxtrans ...
分类:数据库   时间:2015-12-15 14:04:54    阅读次数:222
关于oracle数据库备份还原-impdp,expdp
初始化:-- 创建表空间CREATE TABLESPACE 表空间名 DATAFILE '文件名.dat' SIZE 100M AUTOEXTEND ON NEXT 10M MAXSIZE UNLIMITED;-- 创建用户(oauser)--connect internalCREATE USER....
分类:数据库   时间:2015-12-11 10:02:07    阅读次数:211
1117条   上一页 1 ... 63 64 65 66 67 ... 112 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!