上一页 1 ··· 3 4 5 6 7 8 9 下一页
摘要: <select id="getMaxHitEventId" parameterType="string" resultType="int"> select max(app_hitEventID) from hits_tab_app where app_hitV=#{app_hitV} </selec 阅读全文
posted @ 2017-11-28 13:36 wumengjuan 阅读(7095) 评论(0) 推荐(0) 编辑
摘要: https://jingyan.baidu.com/article/ff4116259a1e7d12e48237ad.html 阅读全文
posted @ 2017-11-24 17:28 wumengjuan 阅读(112) 评论(0) 推荐(0) 编辑
摘要: 今天在Debug的时候报错了如下信息: 后来综合了网上的东西,总结如下: ORA-00001: 违反唯一约束条件 (.) 错误说明:当在唯一索引所对应的列上键入重复值时,会触发此异常。 ORA-00017: 请求会话以设置跟踪事件 ORA-00018: 超出最大会话数 ORA-00019: 超出最大 阅读全文
posted @ 2017-11-23 15:19 wumengjuan 阅读(4028) 评论(0) 推荐(0) 编辑
摘要: DB public int batchInsertOrg(@Param(value = "list") List<Org> list); <insert id="batchInsertJczdbOrg"> insert into DT_ORG( org_code, org_name ) values 阅读全文
posted @ 2017-11-22 13:50 wumengjuan 阅读(149) 评论(0) 推荐(0) 编辑
摘要: --0.表重命名alter table GH_ZD_SCJX rename to GH_ZD_SCJX_jx;--1.create table GH_ZD_SCJX as SELECT * FROM GH_ZD_SCJX_jx gz WHERE gz.id='1651'--2SELECT count 阅读全文
posted @ 2017-11-13 12:00 wumengjuan 阅读(143) 评论(0) 推荐(0) 编辑
摘要: 备份还原oracle数据库 Winserver 和 linxu 下的备份还原命令是相同的 基本格式: imp和exp不适合大文件备份,如果文件超过20个G,这种方式效率会很低,如果文件过大,可以采用Rman方式进行备份还原 exp bim_dev/bim_dev@ounion file=c:\bim 阅读全文
posted @ 2017-11-09 09:49 wumengjuan 阅读(164) 评论(0) 推荐(0) 编辑
摘要: A、oracle server 端 字符集查询 select userenv('language') from dual 其中NLS_CHARACTERSET 为server端字符集 NLS_LANGUAGE 为 server端字符显示形式 B、查询oracle client端的字符集 $echo 阅读全文
posted @ 2017-11-08 18:27 wumengjuan 阅读(126) 评论(0) 推荐(0) 编辑
摘要: IMP-00013: 给scott用户dba授权限 SQL> grant dba to scott scott用户导入 C:\Users\ZML>imp scott/zml file='D:\zml.dmp' log = 'D:\zml1.log' full = y IMP-00024: imp e 阅读全文
posted @ 2017-11-08 17:23 wumengjuan 阅读(232) 评论(0) 推荐(0) 编辑
摘要: create user wu identified by 123456; grant create session to 用户名; grant create table to 用户名; grant create tablespace to 用户名; grant create view to 用户名; 阅读全文
posted @ 2017-11-08 17:10 wumengjuan 阅读(442) 评论(0) 推荐(0) 编辑
摘要: 第一种方式: springMvc.xml中1.xmlns:task="http://www.springframework.org/schema/task" 2.http://www.springframework.org/schema/task http://www.springframework 阅读全文
posted @ 2017-11-05 16:48 wumengjuan 阅读(390) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 下一页