16、Your database Is configured In archivelog mode. The USERS01 tablespace Is currently online. You are required to take the tablespace offline. Which ...
分类:
其他好文 时间:
2018-07-23 14:55:16
阅读次数:
184
/*用sys SYSDBA *//*分为四步 *//*第1步:创建临时表空间 */create temporary tablespace xxxxxxx_temp tempfile 'D:\app\Administrator\oradata\orcl\xxxxxxx_temp.dbf' size 5 ...
分类:
数据库 时间:
2018-07-18 13:55:04
阅读次数:
223
--oracle创建用户并授权 --创建用户表空间 CREATE TABLESPACE JPM_DATA LOGGING DATAFILE 'D:\oracle\11g\app\oracle\oradata\XE\JPM_DATA.DBF' SIZE 1024M AUTOEXTEND ON NEXT ...
分类:
数据库 时间:
2018-07-11 10:38:48
阅读次数:
228
5、Which two affect the time taken for instance recovery? A) size of redo logs B) size of UNDO tablespace C) FAST_START_MTTR_TARGET value D) size of ar ...
分类:
其他好文 时间:
2018-07-10 14:37:55
阅读次数:
149
Oracle 表空间的日常维护与管理 [TOC] 1、创建数据表空间 查询有关表和视图 :【使用版本Oracle 11gR2】 1.查看表空间信息 dba_tablespaces v$tablespace 2.查看数据文件 dba_data_files v$datafile <! more 3.查看 ...
分类:
数据库 时间:
2018-07-10 00:31:19
阅读次数:
301
查询空间使用率 select char(TBSP_NAME,50) as TBSP_NAME, TBSP_TOTAL_PAGES,TBSP_USABLE_PAGES, TBSP_USED_PAGES, rtrim(100*TBSP_USED_PAGES/TBSP_USABLE_PAGES)||'%'... ...
分类:
数据库 时间:
2018-07-09 15:15:10
阅读次数:
264
数据库存储结构分为:物理存储结构和逻辑存储结构。物理结构和逻辑结构分开,对物理数据的存储不会影响对逻辑结构的访问。1.物理存储结构 数据库文件 os block2.逻辑存储结构 tablespace 表空间 segment 段 extend 扩展区 db block 数据块(8k)2.1创建表空间c ...
分类:
数据库 时间:
2018-07-08 14:37:21
阅读次数:
209
这个可以通过alter方法,重新定义默认表空间的:sql:alter user username default tablespace userspace;解释:以上语句就是说给username用户重新指定表空间为userspace;扩展:创建用户的时候指定表空间。sql:create user u ...
分类:
其他好文 时间:
2018-07-07 22:38:42
阅读次数:
202
conn sys as sysdba;create role testrole;grant create session, create table, unlimited tablespace to testrole;create user test identified by test;grant ...
分类:
数据库 时间:
2018-07-07 00:30:12
阅读次数:
192
create user test identified by test; grant create session to test; grant create table to test; 这个时候还没有使用表空间的权限,还不可以建表grant unlimited tablespace to tes ...
分类:
数据库 时间:
2018-07-06 21:37:03
阅读次数:
202