在python的开发中,遇到了这个错误: django.core.exceptions.ImproperlyConfigured: Requested setting DEFAULT_INDEX_TABLESPACE, but settings are not configured. You mus ...
分类:
其他好文 时间:
2018-11-22 00:31:36
阅读次数:
195
知道表空间名,显示该表空间包括的所有表。select * from all_tables where tablespace_name='表空间名'知道表名,查看该表属于那个表空间select tablespace_name,table_name from user_tables where tabl ...
分类:
数据库 时间:
2018-11-16 15:13:24
阅读次数:
210
在plsql工具中执行以下语句,可建立Oracle表空间。 转发 /*分为四步 *//*第1步:创建临时表空间 */create temporary tablespace yuhang_temp tempfile 'D:\oracledata\yuhang_temp.dbf' size 50m au ...
分类:
数据库 时间:
2018-11-16 10:29:09
阅读次数:
240
Oracle user,role,profile常规操作--用户,权限,角色,配置文件 1 权限查询 1查看所有用户 SQL> select username,account_status,lock_date,expiry_date,default_tablespace from dba_users ...
分类:
数据库 时间:
2018-11-14 17:20:58
阅读次数:
227
表空间限额问题知识总结: 表空间的大小与用户的配额大小是两种不同的概念 表空间的大小是指实际的用户表空间的大小,而配额大小指的是用户指定使用表空间的的大小 把表空间文件增大,还是出现这个问题,用户在使用表空间的同时使用空间的限额,如果超出 限制, 就算有空的地方,也不会让用户使用视图: dba_ts ...
分类:
其他好文 时间:
2018-11-14 14:37:01
阅读次数:
108
Oracle常用数据字典表 Oracle常用数据字典表 查看当前用户的缺省表空间 SQL>select username,default_tablespace from user_users; 查看当前用户的角色 SQL>select * from user_role_privs; 查看当前用户的系 ...
分类:
数据库 时间:
2018-11-03 14:06:02
阅读次数:
199
--删除用户 drop user SOC2 cascade; --删除表空间drop tablespace JILIN_SOC_1_TBS including contents and datafiles cascade constraint; 若用户登录了 则无法删除 需要先把用户踢下线 sele ...
分类:
数据库 时间:
2018-11-01 11:34:18
阅读次数:
226
--创建表空间CREATE TABLESPACE USER_DATA --表空间名字DATAFILE '/oracle/oradata/user/USER_DATA.ORA' -- 文件路径和文件名SIZE 100M -- 表空间大小AUTOEXTEND ON NEXT 100M --每次自增扩展1 ...
分类:
数据库 时间:
2018-10-31 11:19:16
阅读次数:
138
一、临时表空间组创建 1、 SQL> alter tablespace temp tablespace group temgrp; Tablespace altered. 2、 SQL> create temporary tablespace temp2 tempfile '/u01/app/ora ...
分类:
其他好文 时间:
2018-10-30 18:47:20
阅读次数:
217
1.查看表空间:SELECTtotal.tablespace_name,Round(total.MB,2)ASTotal_MB,Round(total.MB-free.MB,2)ASUsed_MB,Round((1-free.MB/total.MB)*100,2)||‘%‘ASUsed_PctFROM(SELECTtablespace_name,Sum(bytes)/1024/10
分类:
数据库 时间:
2018-10-27 00:25:20
阅读次数:
183