摘要: 总结一下自己写的 工具类之一1 jar包位置E:\F\UtilJars\ExcelWrite_fat.jarhttp://www.cnblogs.com/cici-new/admin/Files.aspx/ExcelWrite_fat.jar2 使用先编辑excel 文件 写入信息在运行如下命令C:\Users\Administrator.cici-THINK>java -jar E:\F\UtilJars\ExcelWrite_fat.jarPlease insert the Source File :F:\\AIT\\Lottes\\DB\\初始化数据库语句\\TABLE NAMES 阅读全文
posted @ 2013-01-19 16:46 王超_cc 阅读(172) 评论(0) 推荐(0) 编辑
摘要: 1打开输出set serveroutput on;2 设置输出缓存set serveroutput on size 100000; 阅读全文
posted @ 2013-01-13 23:13 王超_cc 阅读(163) 评论(0) 推荐(0) 编辑
摘要: create or replace package PAGEQUERY_PACK is -- Author : ADMINISTRATOR -- Created : 2013/1/13 15:47:30 -- Purpose : FEN YE CHA XUN -- Public type declarations TYPE CUR IS REF CURSOR; -- Public function and procedure declarations PROCEDURE PAGINATING_all_objects_P( P_CURSOR OUT CUR... 阅读全文
posted @ 2013-01-13 17:28 王超_cc 阅读(326) 评论(0) 推荐(0) 编辑
摘要: 问题场景运行包体时候 出现上述错误错误原因将包体的 声明游标的语句注释掉(Line3)运行成功 阅读全文
posted @ 2013-01-13 16:17 王超_cc 阅读(565) 评论(0) 推荐(0) 编辑
摘要: 要用dbms_output.put_line来输出语句,遇到以下错误:ERROR 位于第 1 行:ORA-20000: ORU-10027: buffer overflow, limit of 10000 bytesORA-06512: 在"SYS.DBMS_OUTPUT", line 32ORA-06512: 在"SYS.DBMS_OUTPUT", line 97ORA-06512: 在"SYS.DBMS_OUTPUT", line 112ORA-06512: at line 12View program sources of er 阅读全文
posted @ 2013-01-13 02:45 王超_cc 阅读(466) 评论(0) 推荐(0) 编辑
摘要: create or replace procedure BATCH_CHECK_DDL_P(in_username in varchar2 ) is /*************************************************************** *NAME : BATCH_INSERT_TABLEA_P *PURPOSE : --批量查询数据库内某个用户的建表语句 *IMPUT : -- 表名子 *OUTPUT : -- N/A *Author : -- CICI *CreateDate : -- 2012、12、24 *UpdateDate... 阅读全文
posted @ 2013-01-13 02:41 王超_cc 阅读(988) 评论(0) 推荐(0) 编辑
摘要: http://blog.csdn.net/yywzgh/article/details/7636299 阅读全文
posted @ 2013-01-13 02:36 王超_cc 阅读(536) 评论(0) 推荐(0) 编辑
摘要: 1 select * from A where A.name like 'TEST';上面的SQL 不能查出任何结果===>select * from A where A.name = 'TEST';2 SELECT * FROM BWHERE B.NAME not like 'b2';===========>无效限定符 应该修改为SELECT * FROM BWHERE B.NAME != 'b2'; 阅读全文
posted @ 2013-01-10 22:48 王超_cc 阅读(114) 评论(0) 推荐(0) 编辑
摘要: 1 截取字符串//lastIndexOf();http://www.w3school.com.cn/js/jsref_lastIndexOf.asp//substring();http://www.w3school.com.cn/js/jsref_substring.asp2 字符串中查找指定字符串search() http://www.w3school.com.cn/js/jsref_search.asp 阅读全文
posted @ 2013-01-08 03:30 王超_cc 阅读(1279) 评论(0) 推荐(0) 编辑
摘要: 1 截取字符串//lastIndexOf();http://www.w3school.com.cn/js/jsref_lastIndexOf.asp//substring();http://www.w3school.com.cn/js/jsref_substring.asp 2 查询指定字符串var str="Hello world!"document.write(str.search("H") + "<br />")document.write(str.search("World") + " 阅读全文
posted @ 2013-01-08 03:15 王超_cc 阅读(246) 评论(0) 推荐(0) 编辑