oracle数据库和mysql、sqlserver不同,它是在同一个数据库中可以定义多个表空间,不同表空间是相互独立的,每个用户都有默认的表空间,所以基本上不同的用户操作的数据表都可以不同,当然如果要相同的话可以在定义表空间的时候设定好那个表空间就行。
创建表空间:create tablespace (你的表空间名字如 pfm)datafile 'D:\oracle\product\10.2.0...
分类:
数据库 时间:
2015-07-03 19:18:04
阅读次数:
186
--建立表test1
create table TEST1
(
ID VARCHAR2(40) default sys_guid(),
TDATE VARCHAR2(200)
)
tablespace APP_TX_DATA
pctfree 10
pctused 40
initrans 1
maxtrans 255
storage
(
...
分类:
数据库 时间:
2015-07-03 15:50:50
阅读次数:
138
create temporary tablespace data_temp tempfile 'D:\tablespace\data_temp.dbf' size 50m autoextend on next 50m maxsize 20480m extent management local...
分类:
数据库 时间:
2015-07-03 15:33:22
阅读次数:
159
oracle查询表空间的使用情况??? ????SELECT a.tablespace_name "表空间名", total "表空间大小", free "表空间剩余大小", (total - free) "表空间使用大小", total / (1024 * 1024 * 1024) "表空间...
分类:
数据库 时间:
2015-07-03 10:44:19
阅读次数:
175
--1、查看表空间的名称及大小 SELECT t.tablespace_name, round(SUM(bytes / (1024 * 1024)), 0) ts_size FROM dba_tablespaces t, dba_data_files d WHERE t.tablespace_nam...
分类:
数据库 时间:
2015-06-26 10:48:27
阅读次数:
212
/*分为四步 *//*第1步:创建临时表空间 */create temporary tablespace user_temp tempfile 'D:\oracle\oradata\Oracle9i\user_temp.dbf' size 50m autoextend on next 50m...
分类:
数据库 时间:
2015-06-23 11:50:31
阅读次数:
148
1、如果有删除用户的权限,则可以:drop user user_name cascade;加了cascade就可以把用户连带的数据全部删掉。删除后再创建该用户。 --创建管理员用户 create user 用户名 identified by 密码 default tablespace space_d...
分类:
数据库 时间:
2015-06-23 11:25:41
阅读次数:
134
参考: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
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
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