Example to show the dead lock caused by lack of index on foreign key of child table. Session 1: create table p ( x int primary key );create table c ( x references p ); insert into p select rownum from all_users where rownum <= 2;insert into c select…
How to remove the key size restriction in Java JDK? Are you developing your beautiful application using the Java Cryptography Extension, and using a key length of more than 128 bits you encounter the following error? Caused by: java.security.InvalidK…
Oracle外键(Foreign Key)使用详细的说明(一) 1.目标 演示如何Oracle使用外键数据库 2.什么是外键? 1)在Oracle数据库中,外键是用来实现參照完整性的方法之中的一个.打个形象的比喻.外键是指定义外键的表的列的值必须在还有一个表中出现. 2)被參照的表称之为父表(parent table),创建外键的表称之为子表(child table).子表中的外键关联了父表中的主键. 3)外键能够在创建表时定义或者通过ALTER TABLE语句创建. 3.创建表时定义外键 语法…
Oracle外键(Foreign Key)之级联删除(DELETE CASCADE) 目标 演示样例解说怎样在Oracle外键中使用级联删除 什么是级联删除(DELETE CASCADE)? 级联删除是指当主表(parent table)中的一条记录被删除.子表中关联的记录也对应的自己主动删除. 外键的级联删除能够在创建表时定义,也能够使用ALTER TABLE语法定义. 创建表时定义级联删除 语法: CREATE TABLE table_name ( column1 datatype null…
java.lang.IllegalStateException: Failed to load property source from location 'classpath:/application.yaml' at org.springframework.boot.context.config.ConfigFileApplicationListener$Loader.load(ConfigFileApplicationListener.java:537) at org.springfram…
1)foreign key 是个约束,意思是说如果你给A字段设置了外键约束,以后你要往A字段插入数据,这个数据一定是要在foreign key 后面跟的那个字段中存在的值.这个的意义就是约束了数据的完整性,不会插入错误的数据. 修改添加t_topic外键约束: ALTER TABLE t_topic ADD CONSTRAINT fk_userTopics FOREIGN KEY (user_id) REFERENCES t_users(id) 删除表t_topic外键: ALTER TABLE…
主要介绍一下个人对主键(primary key).外键(foreign key).候选键(Candidate key).超键(super key).references的总结 概念: 主键:用户选择元组标识的一个候选键,主键不允许为空 外键:来描述两个表的关系,外键可为空 超键:能唯一的标识元组的属性集 候选键:不含有多余属性的超键 实例: 假如有以下学生和教师两个表: Student(student_no,student_name,student_age,student_sex,student…
Basic operation su - oracle sqlplus / as sysdba show parameter background show parameter user_dump_dest background_dump_dest: path_to_trace_file deadlook error code is: ORA-00060 Refer to dead lock article http://asktom.oracle.com/pls/asktom/f?p=100:…
Get the directory of alert log sqlplus / as sysdba show parameters udmp SQL> show parameters dump "NAME                                 TYPE        VALUE------------------------------------ ----------- ------------------------------background_core…
---oracle versionSQL> select * from v$version where rownum=1;BANNER--------------------------------------------------------------------------------Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production ---session 241SQL> select…