09 2018 档案

摘要:在 sqlPlus 中两种情况都可以使用 模板如下: exec pro_name(参数1,2....); call pro_name(参数1,2....); 区别: 1、exec 是sqlplus命令,只能在sqlplus中使用;call 为sql命令,没有限制。 2、存储过程没有参数时,exec可 阅读全文
posted @ 2018-09-28 14:17 *蓄势待发* 阅读(363) 评论(0) 推荐(0)
该文被密码保护。
posted @ 2018-09-27 23:12 *蓄势待发* 阅读(0) 评论(0) 推荐(0)
摘要:select * from SYS.USER_ERRORS where NAME = upper('存储过程名称'); 阅读全文
posted @ 2018-09-27 16:12 *蓄势待发* 阅读(111) 评论(0) 推荐(0)
该文被密码保护。
posted @ 2018-09-17 21:09 *蓄势待发* 阅读(5) 评论(0) 推荐(0)
该文被密码保护。
posted @ 2018-09-17 20:38 *蓄势待发* 阅读(3) 评论(0) 推荐(0)
摘要:select con_id,dbid,NAME,OPEN_MODE from v$pdbs; alter session set container=PDBORCL; create or replace type type_concat authid current_user as object ( curr_str varchar2(32767), static function o... 阅读全文
posted @ 2018-09-13 11:33 *蓄势待发* 阅读(168) 评论(0) 推荐(0)
摘要:实现流程:同步域账户用户名至项目数据库-》若是IE浏览器则通过ActiveXObject获取PC用户名-》根据用户名查询数据库-》存在则自动登陆 步骤1:通过定时任务同步AD域账户用户名,代码如下 步骤2:在IE浏览器下获取PC用户名并且提交登陆表单,代码如下: 步骤3:修改Controller,用 阅读全文
posted @ 2018-09-12 14:49 *蓄势待发* 阅读(2955) 评论(0) 推荐(0)
摘要:打开cmd命令行,进入到axis2 bin目录,执行命令 wsdl2java -uri http://localhost:8080/.../?wsdl -p 保存目录 -o 盘符:路径 如果生成目录中有空格可能会有问题; 参数解释:-p 是生成代码的包路径,-o 是代码的生成目录。 阅读全文
posted @ 2018-09-06 20:10 *蓄势待发* 阅读(565) 评论(0) 推荐(0)
摘要:select sys_context ('USERENV', 'CON_NAME') from dual; ---通过ALTER SESSION SET CONTAINER 指定其他容器 ---查看容器 select con_id,dbid,NAME,OPEN_MODE from v$pdbs; ---将Pdb open: alter pluggable database pdborcl ope... 阅读全文
posted @ 2018-09-06 09:28 *蓄势待发* 阅读(1542) 评论(0) 推荐(0)