码迷,mamicode.com
首页 >  
搜索关键字:bigfile tablespace    ( 1135个结果
OCP换题库了,052新加的考题及答案整理-第16题
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
Oracle 创建wims用户和表空间
/*用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
【OCP新题库】052最新题库解析-第5题
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 表空间的日常维护与管理
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
db2 alter tablespace
查询空间使用率 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
Oracle_高级功能(4) 数据库存储结构
数据库存储结构分为:物理存储结构和逻辑存储结构。物理结构和逻辑结构分开,对物理数据的存储不会影响对逻辑结构的访问。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
oracle 中的角色
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
oracle 用户系统权限
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
1135条   上一页 1 ... 20 21 22 23 24 ... 114 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!