- 浏览: 397073 次
- 性别:
- 来自: 北京
文章分类
- 全部博客 (131)
- 云计算-基础概念 (1)
- 云计算-常见问题探讨 (1)
- 云计算-业界动态 (0)
- 云计算-技术探讨 (0)
- 云计算-技术人生存状态 (0)
- Linux学习 (30)
- javascript学习 (2)
- Maven 2学习 (4)
- Junit 4学习 (5)
- Hibernate学习 (3)
- 生活随想 (12)
- html相关 (4)
- Spring学习 (2)
- 数据库 (18)
- Flex学习 (1)
- Apache common 学习 (2)
- freemarker (1)
- Eclipse技巧 (6)
- Windows知识 (4)
- 励志 (2)
- 日志管理 (3)
- MyBatis (3)
- JDK学习 (3)
- Python学习 (4)
- ruby学习 (1)
- 排序算法 (1)
- 开源软件 (1)
- Git 版本管理 (2)
最新评论
-
dongwei_6688:
cooler1217 写道最近迷失了,所以来看看你和月哥的博客 ...
怀念对我影响很大的一位领导 -
cooler1217:
最近迷失了,所以来看看你和月哥的博客~~ 收获颇丰,你们都是我 ...
怀念对我影响很大的一位领导 -
javatozhang:
不错!很是受用!
集合操作的利器:CollectionUtils -
dongwei_6688:
gudupiao 写道如果比较的不是String 是 ob ...
集合操作的利器:CollectionUtils -
gudupiao:
如果比较的不是String 是 object 怎么办? ...
集合操作的利器:CollectionUtils
*设置数据库缺省的临时表空间*/
alter database default temporary tablespace tablespace_name;
/*系统/临时/在线的undo表空间不能被offline*/
alter tablespace tablespace_name offline/online;
alter tablespace tablespace_name read only;
/*重命名用户表空间*/
alter tablespace tablespace_name rename datafile '$ORACLE_HOME/oradata/undo101.dbf' to '$ORACLE_HOME/oradata/undo102.dbf';
/*重命名系统表空间 ,但在重命名前必须将数据库shutdown,并重启到mount状态*/
alter database rename file '$ORACLE_HOME/oradata/system01.dbf' to '$ORACLE_HOME/oradata/system02.dbf';
drop tablespace userdata including contents and datafiles;---drop tablespce
/*resize tablespace,autoextend datafile space*/
alter database datafile '$ORACLE_HOME/oradata/undo102.dbf' autoextend on next 10m maxsize 500M;
/*resize datafile*/
alter database datafile '$ORACLE_HOME/oradata/undo102.dbf' resize 50m;
/*给表空间扩展空间*/
alter tablespace userdata add datafile '$ORACLE_HOME/oradata/undo102.dbf' size 10m;
/*将表空间设置成OMF状态*/
alter system set db_create_file_dest='$ORACLE_HOME/oradata';
create tablespace userdata;---use OMF status to create tablespace;
drop tablespace userdata;---user OMF status to drop tablespace;
select * from dba_tablespace/v$tablespace/dba_data_files;
/*将表的某分区移动到另一个表空间*/
alter table table_name move partition partition_name tablespace tablespace_name;
###### ORACLE storage structure and relationships #########
/*手工分配表空间段的分区(extend)大小*/
alter table kong.test12 allocate extent(size 1m datafile '$ORACLE_HOME/oradata/undo102.dbf');
alter table kong.test12 deallocate unused; ---释放表中没有用到的分区
show parameter db;
alter system set db_8k_cache_size=10m; ---配置8k块的内存空间块参数
select * from dba_extents/dba_segments/data_tablespace;
select * from dba_free_space/dba_data_file/data_tablespace;
/*数据对象所占用的字节数*/
select sum(bytes) from dba_extents where ōnwer='kong' and segment_name ='table_name';
############ UNDO Data ################
show parameter undo;
alter tablespace users offline normal;
alter tablespace users offline immediate;
recover datafile '$ORACLE_HOME/oradata/undo102.dbf';
alter tablespace users online ;
select * from dba_rollback_segs;
alter system set undo_tablespace=undotbs1;
/*忽略回滚段的错误提示*/
alter system set undo_suppress_errors=true;
/*在自动管理模式下,不会真正建立rbs1;在手工管理模式则可以建立,且是私有回滚段*/
create rollback segment rbs1 tablespace undotbs;
desc dbms_flashback;
/*在提交了修改的数据后,9i提供了旧数据的回闪操作,将修改前的数据只读给用户看,但这部分数据不会又恢复在表中,而是旧数据的一个映射*/
execute dbms_flashback.enable_at_time('26-JAN-04:12:17:00 pm');
execute dbms_flashback.disable;
/*回滚段的统计信息*/
select end_time,begin_time,undoblks from v$undostat;
/*undo表空间的大小计算公式: UndoSpace=[UR * (UPS * DBS)] + (DBS * 24)
UR :UNDO_RETENTION 保留的时间(秒)
UPS :每秒的回滚数据块
DBS:系统EXTENT和FILE SIZE(也就是db_block_size)*/
select * from dba_rollback_segs/v$rollname/v$rollstat/v$undostat/v$session/v$transaction;
show parameter transactions;
show parameter rollback;
/*在手工管理模式下,建立公共的回滚段*/
create public rollback segment prbs1 tablespace undotbs;
alter rollback segment rbs1 online;----在手工管理模式
/*在手工管理模式中,initSID.ora中指定 undo_management=manual 、rollback_segment=('rbs1','rbs2',...)、
transactions=100 、transactions_per_rollback_segment=10
然后 shutdown immediate ,startup pfile=....\???.ora */
########## Managing Tables ###########
/*char type maxlen=2000;varchar2 type maxlen=4000 bytes
rowid 是18位的64进制字符串 (10个bytes 80 bits)
rowid组成: object#(对象号)--32bits,6位
rfile#(相对文件号)--10bits,3位
block#(块号)--22bits,6位
row#(行号)--16bits,3位
64进制: A-Z,a-z,0-9,/,+ 共64个符号
dbms_rowid 包中的函数可以提供对rowid的解释*/
select rowid,dbms_rowid.rowid_block_number(rowid),dbms_rowid.rowid_row_number(rowid) from table_name;
create table test2
(
id int,
lname varchar2(20) not null,
fname varchar2(20) constraint ck_1 check(fname like 'k%'),
empdate date default sysdate)
) tablespace tablespace_name;
create global temporary table test2 on commit delete/preserve rows as select * from kong.authors;
create table user.table(...) tablespace tablespace_name storage(...) pctfree10 pctused 40;
alter table user.tablename pctfree 20 pctused 50 storage(...);---changing table storage
/*手工分配分区,分配的数据文件必须是表所在表空间内的数据文件*/
alter table user.table_name allocate extent(size 500k datafile '...');
/*释放表中没有用到的空间*/
alter table table_name deallocate unused;
alter table table_name deallocate unused keep 8k;
/*将非分区表的表空间搬到新的表空间,在移动表空间后,原表中的索引对象将会不可用,必须重建*/
alter table user.table_name move tablespace new_tablespace_name;
create index index_name on user.table_name(column_name) tablespace users;
alter index index_name rebuild;
drop table table_name [CASCADE CONSTRAINTS];
alter table user.table_name drop column col_name [CASCADE CONSTRAINTS CHECKPOINT 1000];---drop column
/*给表中不用的列做标记*/
alter table user.table_name set unused column comments CASCADE CONSTRAINTS;
/*drop表中不用的做了标记列*/
alter table user.table_name drop unused columns checkpoint 1000;
/*当在drop col是出现异常,使用CONTINUE,防止重删前面的column*/
ALTER TABLE USER.TABLE_NAME DROP COLUMNS CONTINUE CHECKPOINT 1000;
select * from dba_tables/dba_objects;
3`.}#w R&h t4@*B ](j I2s0
######## managing indexes ##########
/*create index*/
example:
/*创建一般索引*/
create index index_name on table_name(column_name) tablespace tablespace_name;
/*创建位图索引*/
create bitmap index index_name on table_name(column_name1,column_name2) tablespace tablespace_name;
/*索引中不能用pctused*/
create [bitmap] index index_name on table_name(column_name) tablespace tablespace_name pctfree 20 storage(inital 100k next 100k) ;
/*大数据量的索引最好不要做日志*/
create [bitmap] index index_name table_name(column_name1,column_name2) tablespace_name pctfree 20 storage(inital 100k next 100k) nologging;
/*创建反转索引*/
create index index_name on table_name(column_name) reverse;
/*创建函数索引*/
create index index_name on table_name(function_name(column_name)) tablespace tablespace_name;
/*建表时创建约束条件*/
create table user.table_name(column_name number(7) constraint constraint_name primary key deferrable using index storage(initial 100k next 100k) tablespace tablespace_name,column_name2 varchar2(25) constraint constraint_name not null,column_name3 number(7)) tablespace tablespace_name;
/*给创建bitmap index分配的内存空间参数,以加速建索引*/
show parameter create_bit;
/*改变索引的存储参数*/
alter index index_name pctfree 30 storage(initial 200k next 200k);
/*给索引手工分配一个分区*/
alter index index_name allocate extent (size 200k datafile '$ORACLE/oradata/..');
/*释放索引中没用的空间*/
alter index index_name deallocate unused;
/*索引重建*/
alter index index_name rebuild tablespace tablespace_name;
/*普通索引和反转索引的互换*/
alter index index_name rebuild tablespace tablespace_name reverse;
/*重建索引时,不锁表*/
alter index index_name rebuild online;
/*给索引整理碎片*/
alter index index_name COALESCE;
/*分析索引,事实上是更新统计的过程*/
analyze index index_name validate structure;
desc index_state;
drop index index_name;
alter index index_name monitoring usage;-----监视索引是否被用到
alter index index_name nomonitoring usage;----取消监视
/*有关索引信息的视图*/
select * from dba_indexes/dba_ind_columns/dbs_ind_expressions/v$object_usage;
########## 数据完整性的管理(Maintaining data integrity) ##########
alter table table_name drop constraint constraint_name;----drop 约束
alter table table_name add constraint constraint_name primary key(column_name1,column_name2);-----创建主键
alter table table_name add constraint constraint_name unique(column_name1,column_name2);---创建唯一约束
/*创建外键约束*/
alter table table_name add constraint constraint_name foreign key(column_name1) references table_name(column_name1);
/*不效验老数据,只约束新的数据[enable/disable:约束/不约束新数据;novalidate/validate:不对/对老数据进行验证]*/
alter table table_name add constraint constraint_name check(column_name like 'B%') enable/disable novalidate/validate;
/*修改约束条件,延时验证,commit时验证*/
alter table table_name modify constraint constraint_name initially deferred;
/*修改约束条件,立即验证*/
alter table table_name modify constraint constraint_name initially immediate;
alter session set constraints=deferred/immediate;
/*drop一个有外键的主键表,带cascade constraints参数级联删除*/
drop table table_name cascade constraints;
/*当truncate外键表时,先将外键设为无效,再truncate;*/
truncate table table_name;
/*设约束条件无效*/
alter table table_name disable constraint constraint_name;
alter table table_name enable novalidate constraint constraint_name;
/*将无效约束的数据行放入exception的表中,此表记录了违反数据约束的行的行号;在此之前,要先建exceptions表*/
alter table table_name add constraint constraint_name check(column_name >;15) enable validate exceptions into exceptions;
/*运行创建exceptions表的脚本*/
start $ORACLE_HOME/rdbms/admin/utlexcpt.sql;
/*获取约束条件信息的表或视图*/
select * from user_constraints/dba_constraints/dba_cons_columns;
################## managing password security and resources ####################
alter user user_name account unlock/open;----锁定/打开用户;
alter user user_name password expire;---设定口令到期
/*建立口令配置文件,failed_login_attempts口令输多少次后锁,password_lock_times指多少天后口令被自动解锁*/
create profile profile_name limit failed_login_attempts 3 password_lock_times 1/1440;
/*创建口令配置文件*/
create profile profile_name limit failed_login_attempts 3 password_lock_time unlimited password_life_time 30 password_reuse_time 30 password_verify_function verify_function password_grace_time 5;
/*建立资源配置文件*/
create profile prfile_name limit session_per_user 2 cpu_per_session 10000 idle_time 60 connect_time 480;
alter user user_name profile profile_name;
/*设置口令解锁时间*/
alter profile profile_name limit password_lock_time 1/24;
/*password_life_time指口令文件多少时间到期,password_grace_time指在第一次成功登录后到口令到期有多少天时间可改变口令*/
alter profile profile_name limit password_lift_time 2 password_grace_time 3;
/*password_reuse_time指口令在多少天内可被重用,password_reuse_max口令可被重用的最大次数*/
alter profile profile_name limit password_reuse_time 10[password_reuse_max 3];
alter user user_name identified by input_password;-----修改用户口令
drop profile profile_name;
/*建立了profile后,且指定给某个用户,则必须用CASCADE才能删除*/
drop profile profile_name CASCADE;
alter system set resource_limit=true;---启用自愿限制,缺省是false
/*配置资源参数*/
alter profile profile_name limit cpu_per_session 10000 connect_time 60 idle_time 5;
/*资源参数(session级)
cpu_per_session 每个session占用cpu的时间 单位1/100秒
sessions_per_user 允许每个用户的并行session数
connect_time 允许连接的时间 单位分钟
idle_time 连接被空闲多少时间后,被自动断开 单位分钟
logical_reads_per_session 读块数
private_sga 用户能够在SGA中使用的私有的空间数 单位bytes
(call级)
cpu_per_call 每次(1/100秒)调用cpu的时间
logical_reads_per_call 每次调用能够读的块数
*/
alter profile profile_name limit cpu_per_call 1000 logical_reads_per_call 10;
desc dbms_resouce_manager;---资源管理器包
/*获取资源信息的表或视图*/
select * from dba_users/dba_profiles;
###### Managing users ############
show parameter os;
create user testuser1 identified by kxf_001;
grant connect,createtable to testuser1;
alter user testuser1 quota 10m on tablespace_name;
/*创建用户*/
create user user_name identified by password default tablespace tablespace_name temporary tablespace tablespace_name quota 15m on tablespace_name password expire;
/*数据库级设定缺省临时表空间*/
alter database default temporary tablespace tablespace_name;
/*制定数据库级的缺省表空间*/
alter database default tablespace tablespace_name;
/*创建os级审核的用户,需知道os_authent_prefix,表示oracle和os口令对应的前缀,'OPS$'为此参数的值,此值可以任意设置*/
create user user_name identified by externally default OPS$tablespace_name tablespace_name temporary tablespace tablespace_name quota 15m on tablespace_name password expire;
/*修改用户使用表空间的限额,回滚表空间和临时表空间不允许授予限额*/
alter user user_name quota 5m on tablespace_name;
/*删除用户或删除级联用户(用户对象下有对象的要用CASCADE,将其下一些对象一起删除)*/
drop user user_name [CASCADE];
/*每个用户在哪些表空间下有些什么限额*/
desc dba_ts_quotas;select * from dba_ts_quotas where username='...';
/*改变用户的缺省表空间*/
alter user user_name default tablespace tablespace_name;
######## managing indexes ##########
/*create index*/
example:
/*创建一般索引*/
create index index_name on table_name(column_name) tablespace tablespace_name;
/*创建位图索引*/
create bitmap index index_name on table_name(column_name1,column_name2) tablespace tablespace_name;
/*索引中不能用pctused*/
create [bitmap] index index_name on table_name(column_name) tablespace tablespace_name pctfree 20 storage(inital 100k next 100k) ;
/*大数据量的索引最好不要做日志*/
create [bitmap] index index_name table_name(column_name1,column_name2) tablespace_name pctfree 20 storage(inital 100k next 100k) nologging;
/*创建反转索引*/
create index index_name on table_name(column_name) reverse;
/*创建函数索引*/
create index index_name on table_name(function_name(column_name)) tablespace tablespace_name;
/*建表时创建约束条件*/
create table user.table_name(column_name number(7) constraint constraint_name primary key deferrable using index storage(initial 100k next 100k) tablespace tablespace_name,column_name2 varchar2(25) constraint constraint_name not null,column_name3 number(7)) tablespace tablespace_name;
/*给创建bitmap index分配的内存空间参数,以加速建索引*/
show parameter create_bit;
/*改变索引的存储参数*/
alter index index_name pctfree 30 storage(initial 200k next 200k);
/*给索引手工分配一个分区*/
alter index index_name allocate extent (size 200k datafile '$ORACLE/oradata/..');
/*释放索引中没用的空间*/
alter index index_name deallocate unused;
/*索引重建*/
alter index index_name rebuild tablespace tablespace_name;
/*普通索引和反转索引的互换*/
alter index index_name rebuild tablespace tablespace_name reverse;
/*重建索引时,不锁表*/
alter index index_name rebuild online;
/*给索引整理碎片*/
alter index index_name COALESCE;
/*分析索引,事实上是更新统计的过程*/
analyze index index_name validate structure;
desc index_state;
drop index index_name;
alter index index_name monitoring usage;-----监视索引是否被用到
alter index index_name nomonitoring usage;----取消监视
/*有关索引信息的视图*/
select * from dba_indexes/dba_ind_columns/dbs_ind_expressions/v$object_usage;
########## 数据完整性的管理(Maintaining data integrity) ##########
alter table table_name drop constraint constraint_name;----drop 约束
alter table table_name add constraint constraint_name primary key(column_name1,column_name2);-----创建主键
alter table table_name add constraint constraint_name unique(column_name1,column_name2);---创建唯一约束
/*创建外键约束*/
alter table table_name add constraint constraint_name foreign key(column_name1) references table_name(column_name1);
/*不效验老数据,只约束新的数据[enable/disable:约束/不约束新数据;novalidate/validate:不对/对老数据进行验证]*/
alter table table_name add constraint constraint_name check(column_name like 'B%') enable/disable novalidate/validate;
/*修改约束条件,延时验证,commit时验证*/
alter table table_name modify constraint constraint_name initially deferred;
/*修改约束条件,立即验证*/
alter table table_name modify constraint constraint_name initially immediate;
alter session set constraints=deferred/immediate;
/*drop一个有外键的主键表,带cascade constraints参数级联删除*/
drop table table_name cascade constraints;
/*当truncate外键表时,先将外键设为无效,再truncate;*/
truncate table table_name;
/*设约束条件无效*/
alter table table_name disable constraint constraint_name;
alter table table_name enable novalidate constraint constraint_name;
/*将无效约束的数据行放入exception的表中,此表记录了违反数据约束的行的行号;在此之前,要先建exceptions表*/
alter table table_name add constraint constraint_name check(column_name >;15) enable validate exceptions into exceptions;
/*运行创建exceptions表的脚本*/
start $ORACLE_HOME/rdbms/admin/utlexcpt.sql;
/*获取约束条件信息的表或视图*/
select * from user_constraints/dba_constraints/dba_cons_columns;
################## managing password security and resources ####################
alter user user_name account unlock/open;----锁定/打开用户;
alter user user_name password expire;---设定口令到期
/*建立口令配置文件,failed_login_attempts口令输多少次后锁,password_lock_times指多少天后口令被自动解锁*/
create profile profile_name limit failed_login_attempts 3 password_lock_times 1/1440;
/*创建口令配置文件*/
create profile profile_name limit failed_login_attempts 3 password_lock_time unlimited password_life_time 30 password_reuse_time 30 password_verify_function verify_function password_grace_time 5;
/*建立资源配置文件*/
create profile prfile_name limit session_per_user 2 cpu_per_session 10000 idle_time 60 connect_time 480;
alter user user_name profile profile_name;
/*设置口令解锁时间*/
alter profile profile_name limit password_lock_time 1/24;
/*password_life_time指口令文件多少时间到期,password_grace_time指在第一次成功登录后到口令到期有多少天时间可改变口令*/
alter profile profile_name limit password_lift_time 2 password_grace_time 3;
/*password_reuse_time指口令在多少天内可被重用,password_reuse_max口令可被重用的最大次数*/
alter profile profile_name limit password_reuse_time 10[password_reuse_max 3];
alter user user_name identified by input_password;-----修改用户口令
drop profile profile_name;
/*建立了profile后,且指定给某个用户,则必须用CASCADE才能删除*/
drop profile profile_name CASCADE;
alter system set resource_limit=true;---启用自愿限制,缺省是false
/*配置资源参数*/
alter profile profile_name limit cpu_per_session 10000 connect_time 60 idle_time 5;
/*资源参数(session级)
cpu_per_session 每个session占用cpu的时间 单位1/100秒
sessions_per_user 允许每个用户的并行session数
connect_time 允许连接的时间 单位分钟
idle_time 连接被空闲多少时间后,被自动断开 单位分钟
logical_reads_per_session 读块数
private_sga 用户能够在SGA中使用的私有的空间数 单位bytes
(call级)
cpu_per_call 每次(1/100秒)调用cpu的时间
logical_reads_per_call 每次调用能够读的块数
*/
alter profile profile_name limit cpu_per_call 1000 logical_reads_per_call 10;
desc dbms_resouce_manager;---资源管理器包
/*获取资源信息的表或视图*/
select * from dba_users/dba_profiles;
###### Managing users ############
show parameter os;
create user testuser1 identified by kxf_001;
grant connect,createtable to testuser1;
alter user testuser1 quota 10m on tablespace_name;
/*创建用户*/
create user user_name identified by password default tablespace tablespace_name temporary tablespace tablespace_name quota 15m on tablespace_name password expire;
/*数据库级设定缺省临时表空间*/
alter database default temporary tablespace tablespace_name;
/*制定数据库级的缺省表空间*/
alter database default tablespace tablespace_name;
/*创建os级审核的用户,需知道os_authent_prefix,表示oracle和os口令对应的前缀,'OPS$'为此参数的值,此值可以任意设置*/
create user user_name identified by externally default OPS$tablespace_name tablespace_name temporary tablespace tablespace_name quota 15m on tablespace_name password expire;
/*修改用户使用表空间的限额,回滚表空间和临时表空间不允许授予限额*/
alter user user_name quota 5m on tablespace_name;
/*删除用户或删除级联用户(用户对象下有对象的要用CASCADE,将其下一些对象一起删除)*/
drop user user_name [CASCADE];
/*每个用户在哪些表空间下有些什么限额*/
desc dba_ts_quotas;select * from dba_ts_quotas where username='...';
/*改变用户的缺省表空间*/
alter user user_name default tablespace tablespace_name;
######## managing indexes ##########
/*create index*/
example:
/*创建一般索引*/
create index index_name on table_name(column_name) tablespace tablespace_name;
/*创建位图索引*/
create bitmap index index_name on table_name(column_name1,column_name2) tablespace tablespace_name;
/*索引中不能用pctused*/
create [bitmap] index index_name on table_name(column_name) tablespace tablespace_name pctfree 20 storage(inital 100k next 100k) ;
/*大数据量的索引最好不要做日志*/
create [bitmap] index index_name table_name(column_name1,column_name2) tablespace_name pctfree 20 storage(inital 100k next 100k) nologging;
/*创建反转索引*/
create index index_name on table_name(column_name) reverse;
/*创建函数索引*/
create index index_name on table_name(function_name(column_name)) tablespace tablespace_name;
/*建表时创建约束条件*/
create table user.table_name(column_name number(7) constraint constraint_name primary key deferrable using index storage(initial 100k next 100k) tablespace tablespace_name,column_name2 varchar2(25) constraint constraint_name not null,column_name3 number(7)) tablespace tablespace_name;
/*给创建bitmap index分配的内存空间参数,以加速建索引*/
show parameter create_bit;
/*改变索引的存储参数*/
alter index index_name pctfree 30 storage(initial 200k next 200k);
/*给索引手工分配一个分区*/
alter index index_name allocate extent (size 200k datafile '$ORACLE/oradata/..');
/*释放索引中没用的空间*/
alter index index_name deallocate unused;
/*索引重建*/
alter index index_name rebuild tablespace tablespace_name;
/*普通索引和反转索引的互换*/
alter index index_name rebuild tablespace tablespace_name reverse;
/*重建索引时,不锁表*/
alter index index_name rebuild online;
/*给索引整理碎片*/
alter index index_name COALESCE;
/*分析索引,事实上是更新统计的过程*/
analyze index index_name validate structure;
desc index_state;
drop index index_name;
alter index index_name monitoring usage;-----监视索引是否被用到
alter index index_name nomonitoring usage;----取消监视
/*有关索引信息的视图*/
select * from dba_indexes/dba_ind_columns/dbs_ind_expressions/v$object_usage;
########## 数据完整性的管理(Maintaining data integrity) ##########
alter table table_name drop constraint constraint_name;----drop 约束
alter table table_name add constraint constraint_name primary key(column_name1,column_name2);-----创建主键
alter table table_name add constraint constraint_name unique(column_name1,column_name2);---创建唯一约束
/*创建外键约束*/
alter table table_name add constraint constraint_name foreign key(column_name1) references table_name(column_name1);
/*不效验老数据,只约束新的数据[enable/disable:约束/不约束新数据;novalidate/validate:不对/对老数据进行验证]*/
alter table table_name add constraint constraint_name check(column_name like 'B%') enable/disable novalidate/validate;
/*修改约束条件,延时验证,commit时验证*/
alter table table_name modify constraint constraint_name initially deferred;
/*修改约束条件,立即验证*/
alter table table_name modify constraint constraint_name initially immediate;
alter session set constraints=deferred/immediate;
/*drop一个有外键的主键表,带cascade constraints参数级联删除*/
drop table table_name cascade constraints;
/*当truncate外键表时,先将外键设为无效,再truncate;*/
truncate table table_name;
/*设约束条件无效*/
alter table table_name disable constraint constraint_name;
alter table table_name enable novalidate constraint constraint_name;
/*将无效约束的数据行放入exception的表中,此表记录了违反数据约束的行的行号;在此之前,要先建exceptions表*/
alter table table_name add constraint constraint_name check(column_name >;15) enable validate exceptions into exceptions;
/*运行创建exceptions表的脚本*/
start $ORACLE_HOME/rdbms/admin/utlexcpt.sql;
/*获取约束条件信息的表或视图*/
select * from user_constraints/dba_constraints/dba_cons_columns;
################## managing password security and resources ####################
alter user user_name account unlock/open;----锁定/打开用户;
alter user user_name password expire;---设定口令到期
/*建立口令配置文件,failed_login_attempts口令输多少次后锁,password_lock_times指多少天后口令被自动解锁*/
create profile profile_name limit failed_login_attempts 3 password_lock_times 1/1440;
/*创建口令配置文件*/
create profile profile_name limit failed_login_attempts 3 password_lock_time unlimited password_life_time 30 password_reuse_time 30 password_verify_function verify_function password_grace_time 5;
/*建立资源配置文件*/
create profile prfile_name limit session_per_user 2 cpu_per_session 10000 idle_time 60 connect_time 480;
alter user user_name profile profile_name;
/*设置口令解锁时间*/
alter profile profile_name limit password_lock_time 1/24;
/*password_life_time指口令文件多少时间到期,password_grace_time指在第一次成功登录后到口令到期有多少天时间可改变口令*/
alter profile profile_name limit password_lift_time 2 password_grace_time 3;
/*password_reuse_time指口令在多少天内可被重用,password_reuse_max口令可被重用的最大次数*/
alter profile profile_name limit password_reuse_time 10[password_reuse_max 3];
alter user user_name identified by input_password;-----修改用户口令
drop profile profile_name;
/*建立了profile后,且指定给某个用户,则必须用CASCADE才能删除*/
drop profile profile_name CASCADE;
alter system set resource_limit=true;---启用自愿限制,缺省是false
/*配置资源参数*/
alter profile profile_name limit cpu_per_session 10000 connect_time 60 idle_time 5;
/*资源参数(session级)
cpu_per_session 每个session占用cpu的时间 单位1/100秒
sessions_per_user 允许每个用户的并行session数
connect_time 允许连接的时间 单位分钟
idle_time 连接被空闲多少时间后,被自动断开 单位分钟
logical_reads_per_session 读块数
private_sga 用户能够在SGA中使用的私有的空间数 单位bytes
(call级)
cpu_per_call 每次(1/100秒)调用cpu的时间
logical_reads_per_call 每次调用能够读的块数
*/
alter profile profile_name limit cpu_per_call 1000 logical_reads_per_call 10;
desc dbms_resouce_manager;---资源管理器包
/*获取资源信息的表或视图*/
select * from dba_users/dba_profiles;
###### Managing users ############
show parameter os;
create user testuser1 identified by kxf_001;
grant connect,createtable to testuser1;
alter user testuser1 quota 10m on tablespace_name;
/*创建用户*/
create user user_name identified by password default tablespace tablespace_name temporary tablespace tablespace_name quota 15m on tablespace_name password expire;
/*数据库级设定缺省临时表空间*/
alter database default temporary tablespace tablespace_name;
/*制定数据库级的缺省表空间*/
alter database default tablespace tablespace_name;
/*创建os级审核的用户,需知道os_authent_prefix,表示oracle和os口令对应的前缀,'OPS$'为此参数的值,此值可以任意设置*/
create user user_name identified by externally default OPS$tablespace_name tablespace_name temporary tablespace tablespace_name quota 15m on tablespace_name password expire;
/*修改用户使用表空间的限额,回滚表空间和临时表空间不允许授予限额*/
alter user user_name quota 5m on tablespace_name;
/*删除用户或删除级联用户(用户对象下有对象的要用CASCADE,将其下一些对象一起删除)*/
drop user user_name [CASCADE];
/*每个用户在哪些表空间下有些什么限额*/
desc dba_ts_quotas;select * from dba_ts_quotas where username='...';
/*改变用户的缺省表空间*/
alter user user_name default tablespace tablespace_name;CNOUG博客首页.T T w1@1B x#E l
发表评论
-
Mysql 远程登录及常用命令
2012-03-15 13:23 956第一招、mysql服务的启动和停止 net stop ... -
源码安装mysql可能遇到的问题及解决办法
2011-10-16 18:04 1516本文用来解决从源码安装mysql时,通常在运行configur ... -
一个关于mysql的text字段类型异常的解决方法
2011-08-02 12:08 2453下面是一段我在保存text类型的数据到mysql时遇到的问题, ... -
update多列的几种选择
2010-10-27 20:24 1146当update 多列 时有如下几种选择 1.)教科书式 ... -
oracle 数据事务锁处理【备忘】
2010-06-02 17:07 7991.用该语句查询当前正在进行的事务:select * from ... -
Oracle锁表查询语句【备忘】
2010-02-24 12:34 1687select t2.username, ... -
ORACLE数据库命名规范
2009-11-16 09:35 30261 目的 规范数据库各种对象的命名规则。 2 数据库命名原 ... -
oracle9i学习[备忘1]
2009-11-13 19:22 949create database db01 maxlogfi ... -
oracle decode nvl nvl2 sign(即sin) 函数用法
2009-02-16 15:19 2349decode select decode(p.xx,1,' ... -
从查询结果插入数据到另一个表[备忘]
2008-12-17 16:08 2545第一种: insert into destTbl selec ... -
Oracle开发--日期截取及四舍五入
2008-12-09 13:58 4540一、Oracle中的Round和Trunc: 如同对数字进 ... -
Oracle 10g绿色客户端与PL/SQL Developer-搭建的Oracle使用环境
2008-11-04 14:00 11931整个一个暑假都在做基于Oracle的一个数据处理程序。但是一 ... -
Oracle导出数据库结构到PowerDesigner
2008-08-05 19:26 3153打开PowerDesigner→菜单栏“Database”→D ... -
Oracle 从查询结果创建表【备忘】
2008-07-31 16:29 2397create table student_bak as sel ... -
Oracle 启动/关闭[备忘]
2008-07-23 12:32 12851.启动Oracle监听程序 ... -
oracle多数据库实例切换(备忘)
2008-06-19 16:08 4200[oracle@TEST ~]$ export ORACLE_ ... -
oracle集合操作函数(备忘)
2008-04-23 18:25 4319集合操作符专门用于合并多条select 语句的结 ...
相关推荐
Oracle9i学习精解版4是一本专注于Oracle数据库系统学习的深入解析教程,它涵盖了Oracle9i版本的主要特性和功能。Oracle9i是Oracle数据库的一个重要版本,它在当时引入了许多创新技术,对数据库管理、性能优化以及...
- [ship_9204_linux_disk1.cpio.gz](http://download.oracle.com/otn/linux/oracle9i/9204/ship_9204_linux_disk1.cpio.gz) - [ship_9204_linux_disk2.cpio.gz]...
1、本软件可作为简单的Oracle9i客户端使用,如用户对Oracle有更高的使用要求,请正式安装Oracle客户端或服务器。 2、本软件安装后,可使用自带的SQL Plus连接Oracle服务器,支持EXP、IMP命令。用户可以配合PLSQL ...
这份"Oracle9i学习资料(零基础)"显然是为了帮助初学者快速掌握Oracle数据库的基础知识和技能。 在学习Oracle9i之前,首先要了解数据库的基本概念。数据库是一个组织和存储数据的系统,它允许用户以结构化方式访问...
在“oracle9i310.msi”这个文件中,包含了Oracle 9i客户端的安装程序,用户只需运行此文件即可开始安装。 4. **使用说明.htm**:这个文件提供了关于如何使用客户端的指导,可能包括安装步骤、连接配置、基本操作等...
Oracle9i客户端精简版。 Oracle9i客户端精简版Oracle9i客户端精简版Oracle9i客户端精简版Oracle9i客户端精简版Oracle9i客户端精简版Oracle9i客户端精简版Oracle9i客户端精简版
Windows Server 2003 Oracle9i 安装指南 Windows Server 2003 是微软公司推出的服务器操作系统,而 Oracle9i 是 Oracle 公司推出的关系数据库管理系统。本文档将指导读者在 Windows Server 2003 上安装 Oracle9i ...
"oracle9i310.rar" 是一个压缩包,其中包含了Oracle 9i的简化客户端版本,适用于在虚拟机、老旧计算机或Windows XP系统上运行。由于其资源占用较小,因此特别适合这些环境下使用,同时也能连接到更高版本的Oracle...
总结来说,Oracle9i的学习笔记涵盖了数据库的基本创建与维护,数据字典的管理和查询,以及数据库状态控制和参数调整,这些都是数据库管理员必备的基础知识。虽然Oracle9i版本较为陈旧,但其核心概念和操作在新的...
通过深入学习《Oracle9i教程》,读者不仅能理解数据库的基本概念,还能掌握实际操作和管理Oracle数据库的技能,为成为合格的数据库管理员或开发者奠定坚实基础。无论是初学者还是经验丰富的专业人士,都能从这个教程...
本压缩包“oracle9i客户端精简免安装.rar”是专为Windows操作系统设计的Oracle9i客户端版本,旨在简化Oracle数据库的管理和操作,让用户无需进行复杂的安装过程即可快速使用。 Oracle9i客户端主要包括以下几个关键...
"游侠下载站使用说明.txt"可能是对获取和安装Oracle 9i的辅助指南,而"Oracle(CHM)"可能是一个包含Oracle 9i详细技术文档的离线帮助文件,用户可以通过查阅这个文件来学习和解决具体问题。 总的来说,Oracle 9i参考...
oracle9i下载地址, 分三个IOS文件, 加压即可安装.
Oracle9i的学习资料是深入理解数据库管理、SQL语言、PL/SQL编程以及数据库设计等核心概念的重要资源。 1. 数据库基础知识:Oracle9i基于关系模型,这意味着它以表格的形式存储数据,每个表格由列和行组成。学习...
Oracle 9i 物理结构是数据库管理系统的核心组成部分,它决定了数据如何在磁盘上存储、管理和访问。Oracle 9i 物理结构主要由以下几个关键组件构成: 1. **数据文件 (Data Files)**: 扩展名为 .DBF 的数据文件是...
### Oracle 9i 全备份导入到 11g 的处理方法 #### 一、问题背景 当将Oracle 9i的数据全备份导入到Oracle 11g版本时,经常会遇到由于`db_block_size`参数不一致导致的导入失败问题。这种情况下,如果直接进行导入...
Oracle 9i数据库系统是Oracle公司的一个重要版本,它提供了许多功能来支持数据管理,其中包括数据导入(IMP)和导出(EXP)工具。这两个工具是数据库管理员进行数据迁移、备份和恢复操作的关键组件。 **EXP(Export...
本教程“Oracle9i中文版基础培训教程”由赵松涛制作,旨在帮助初学者掌握Oracle 9i的基本操作和概念,对于那些从其他数据库系统(如MySQL)转而学习Oracle的人来说,这是一个宝贵的资源。 Oracle数据库系统的核心...
百度云盘下载地址https://pan.baidu.com/s/1iU5zzuVbm2-uJtzQGr98zw windows下安装Oracle9i