
Oracle
s2940086379
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
ORACLE触发器详细创建
--为cardInfo表创建insert事前触发器,实现添加账户信息时自动向userInfo表添加相应记录,需要判断改用户身份证号是否已存在,若存在则不添加,仅向cardInfo添加即可; create or replace trigger tri_insert before insert on cardInfo for each row begin declare card u原创 2015-05-22 13:31:08 · 530 阅读 · 0 评论 -
oracle简单的新闻发布管理系统之数据建立
drop table userinfo; create table userinfo ( uname varchar2(20) primary key, upass varchar2(20) not null, sex varchar2(20), birth date, score number(5,0) ); inse原创 2015-05-22 13:30:48 · 545 阅读 · 0 评论 -
Oracle索引及使用详解
一、索引的分类 序号 索引名称 中文含义 1 B*索引 最经典、最常用的索引 2 Primary Key 主键、也是也是一种索引 3 Unique Key 唯一索引 4 Function-Based Index 函数索引 5 Composite Index 多字段复合索引 6 Reverse原创 2015-05-22 13:31:05 · 1631 阅读 · 0 评论 -
有关自己javaweb项目常见问题汇总
1.你项目是怎样实现国际化的? java推荐用 XX.properties配置文件,比如lan_Zh_CN.properties里面放你程序的所有中文提示,lan_fr.properties里面放你策划年供需的所有法文提示(和上面的所有中文提示一一对应的),然后在程序里自己实现调用,就是用户在选择不同语言时,读取对应配置文件的提示。 2.Ajax与jquery区别? ajax一般用原创 2015-05-22 13:31:58 · 3560 阅读 · 0 评论 -
Java程序异常 open cussors查询 ORA-01000: maximum open cursors exceeded ORA-06512: at "××××××", line ×× 通
Java程序异常 open cussors查询 ORA-01000: maximum open cursors exceeded ORA-06512: at "××××××", line ×× 通过如下语句进行open cussors查询 select a.value, s.username, s.sid, s.serial# from v$sesstat原创 2017-12-09 16:16:51 · 580 阅读 · 0 评论