创建表空间等等select tablespace_name from dba_tablespaces;--dba权限用户查询数据库中的表空间 select * from all_tables where tablespace_name='tablespace_name';--查询表空间中的表,注意大...
分类:
数据库 时间:
2015-12-24 20:37:24
阅读次数:
160
/*******************************************************************//**Creates a space memory object and puts it to the tablespace memory cache. Ifth...
分类:
其他好文 时间:
2015-12-24 19:24:11
阅读次数:
287
引言:数据库突然报: ORA-01654: unable to extend index BO.INDEX_indexname by 311072 in tablespace 错误,上网查原因,发现解决方法只有一个,就是增加tablespace的大小.现归纳解决此问题的方法如下.方法1: 当出现.....
分类:
数据库 时间:
2015-12-22 23:04:14
阅读次数:
574
--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
#!/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
一、查看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
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
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
-- 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
初始化:-- 创建表空间CREATE TABLESPACE 表空间名 DATAFILE '文件名.dat' SIZE 100M AUTOEXTEND ON NEXT 10M MAXSIZE UNLIMITED;-- 创建用户(oauser)--connect internalCREATE USER....
分类:
数据库 时间:
2015-12-11 10:02:07
阅读次数:
211