if exists ( select * from dbo.sysobjects where id = object_id(N'[dbo].[TableSpace]') and objectproperty(id, N'IsUserTable') = 1 ) drop table [dbo].[T....
分类:
数据库 时间:
2015-02-13 16:13:47
阅读次数:
181
1、连接数据库
# su - oracle
$ conn / as sysdba
2、创建表空间
SQL> create tablespace doiido datafile '/main/oracle/oradata/doiido.dbf' size 1024M autoextend on next 1024M maxsize 10240M extent management...
分类:
数据库 时间:
2015-02-13 14:48:52
阅读次数:
167
create tablespace ldcounterloggingdatafile 'D:\user_data.dbf'size 50mautoextend onnext 50m maxsize 20480m
分类:
数据库 时间:
2015-02-12 17:57:09
阅读次数:
139
BIGFILE | SMALLFILEUse this clause to determine whether the tablespace is a bigfile or smallfile tablespace. This clause overrides any default tablesp...
分类:
数据库 时间:
2015-02-11 12:35:03
阅读次数:
319
1.how to create a tablespace that employs the most common features1 create tablespace tb_name #create bigfile tablespace tb_name2 datafile ‘/...
分类:
数据库 时间:
2015-02-11 10:49:50
阅读次数:
277
1.发现数据库的数据文件有特殊字符:2.尝试在sqlplus下用将tablespace offline后修改SQL> alter tablespace WST_DATA rename datafile 'D:\oracle11\oradata\teblespace\WST_DATA .DBF' TO...
分类:
数据库 时间:
2015-02-10 20:15:42
阅读次数:
298
step1. 确认到底是哪个段占用了sysaux空间:select segment_name,sum(bytes)/1024/1024 from dba_segments where tablespace_name='SYSAUX' group by segment_name order by 2 ...
分类:
其他好文 时间:
2015-02-10 18:31:21
阅读次数:
141
/*分为四步 *//*第1步:创建临时表空间 */create temporary tablespace user_temp tempfile 'D:\oracle\oradata\Oracle9i\user_temp.dbf' size 50m autoextend on next 50m...
分类:
数据库 时间:
2015-02-10 13:06:43
阅读次数:
144
查看表空间信息SELECT*FROMV$TABLESPACE查看表空间数据文件路径信息SELECT*FROMDBA_DATA_FILES;查看表空间的属性信息SELECT*FROMDBA_TABLESPACES查看表空间组及其所属的表空间的信息SELECT*FROMDBA_TABLESPACE_GROUPS查看表空间里面的表的组成SELECTSEGMENT_NAME,SEGMENT_TYPE,..
分类:
数据库 时间:
2015-02-08 23:28:28
阅读次数:
457
我们在利用EXP/IMP进行跨平台迁移的时候,由于表空间路径变更,需要先手工创建在目标端创建与源端一致的表空间和数据文件,以下为创建生成语句的脚本。
一.在源端数据库执行以下命令,生成创建脚本
select 'create tablespace ' || b.NAME || ' DATAFILE ' || chr(39) || a.NAME || chr(39) || ' SIZE ' || ...
分类:
数据库 时间:
2015-02-06 13:16:33
阅读次数:
219