摘要: 有两种方式可以解决该问题。 一使用RMAN清除归档日志。 二修改闪回恢复区的大小DB_RECOVERY_FILE_DEST_SIZE。 第一种使用RMAN清除归档日志。C:\Documents and Settings\Administrator>rmanRMAN> connect target s 阅读全文
posted @ 2016-03-18 10:38 来临 阅读(252) 评论(0) 推荐(0) 编辑
摘要: 创建表空间和用户create tablespace test_qbmbkloggingdatafile 'd:\oraData\SYSTEM10.DBF'size 32m autoextend on next 32m extent management local; create user qbmb 阅读全文
posted @ 2016-03-18 10:36 来临 阅读(1261) 评论(0) 推荐(0) 编辑
摘要: select chr(38) from dual 输出:&select ASCII('&') from dual 输出:38 阅读全文
posted @ 2016-03-18 10:35 来临 阅读(3754) 评论(0) 推荐(0) 编辑
摘要: E:\app\admin\product\11.2.0\dbhome_1\BIN\imp.exe 阅读全文
posted @ 2016-03-18 10:34 来临 阅读(142) 评论(0) 推荐(0) 编辑
摘要: <html><head> <title></title> <script src="jquery-1.7.2.min.js" type="text/javascript"></script> <script type="text/javascript"> function addCol() { $t 阅读全文
posted @ 2016-03-18 10:33 来临 阅读(254) 评论(0) 推荐(0) 编辑
摘要: java代码 String str = “字符串”.replaceAll("\\&[a-zA-Z]{1,10};", "").replaceAll("<[^>]*>", "").replaceAll("[(/>)<]", ""); sql代码 SUBSTR(REGEXP_REPLACE(字段,'(\ 阅读全文
posted @ 2016-03-18 10:30 来临 阅读(224) 评论(0) 推荐(0) 编辑
摘要: js /(^\d{15}$)|(^\d{18}$)|(^\d{17}(\d|X|x)$)/ 身份证/[1](3|5|8|4)+\d{9}$/ 手机正则 ^[a-zA-Z0-9_\u4e00-\u9fa5]+$ 用户名^[a-zA-Z0-9_.]+$ 密码 Java s.replaceAll("\\s 阅读全文
posted @ 2016-03-18 10:29 来临 阅读(104) 评论(0) 推荐(0) 编辑
摘要: <div style="margin-left:50px"> 正文字体大小: <select name="select" id="fontslt" onChange='NYSfont()'> <option selected='true'>选择阅读字体 </option> <option value 阅读全文
posted @ 2016-03-18 10:28 来临 阅读(428) 评论(0) 推荐(0) 编辑
摘要: 2.仅能绑定要插入 LONG 列的 LONG 值ORA-06512: 在 line 4 用PL/SQL"declare \n"+"v_clob clob :=?; \n"+"v_clob2 clob :=?; \n"+"begin \n"+"insert into QB_QBBS_QBXX(uuid 阅读全文
posted @ 2016-03-18 10:27 来临 阅读(5321) 评论(0) 推荐(0) 编辑
摘要: ORA-24816: 在实际的 LONG 或 LOB 列之后提供了扩展的非 LONG 绑定数据 在实际的 LONG 或 LOB 列之后提供了扩展的非 LONG 绑定数据错误,这个错误是因为在绑定参数时把数据库中字段类型为LONG的字段放置在其他字段前设置了,只要将类型为LONG的字段绑定参数时放在最 阅读全文
posted @ 2016-03-18 10:26 来临 阅读(1336) 评论(0) 推荐(0) 编辑
摘要: 1.windows-->preference-->MyEclipse-->Servers-->Tomcat-->Tomcatx.x-->JDK 在右边的Optional Java VM arguments里加上:-Xms256m -Xmx512m Windows下,在文件/bin/catalina. 阅读全文
posted @ 2016-03-18 10:25 来临 阅读(4215) 评论(0) 推荐(0) 编辑
摘要: Oracle 获取当前日期及日期格式 获取系统日期: SYSDATE() 格式化日期: TO_CHAR(SYSDATE(),'YY/MM/DD HH24:MI:SS) 或 TO_DATE(SYSDATE(),'YY/MM/DD HH24:MI:SS) 格式化数字: TO_NUMBER 注: TO_C 阅读全文
posted @ 2016-03-18 10:24 来临 阅读(672) 评论(0) 推荐(0) 编辑
摘要: rs = stmt.executeQuery(new_cxyj); ResultSetMetaData rsma = rs.getMetaData(); int size = rsma.getColumnCount(); JSONArray arr = new JSONArray(); while( 阅读全文
posted @ 2016-03-18 10:23 来临 阅读(400) 评论(0) 推荐(0) 编辑
摘要: window.location.href=window.location.href; window.location.reload; 重载页面 阅读全文
posted @ 2016-03-18 10:22 来临 阅读(285) 评论(0) 推荐(0) 编辑
摘要: package servlet.back;import java.io.*; import org.dom4j.Document;import org.dom4j.DocumentException;import org.dom4j.Element;import org.dom4j.io.SAXRe 阅读全文
posted @ 2016-03-18 10:21 来临 阅读(1681) 评论(0) 推荐(0) 编辑
摘要: click无响应第一种$.get("",{param:"topmenu"},function(data){ $(".menu dl").html(data); $(".menu dl dd:first-child a").click(); });ajax响应的数据还没回来$(".class").cl 阅读全文
posted @ 2016-03-18 10:20 来临 阅读(165) 评论(0) 推荐(0) 编辑
摘要: 浏览器的宽、高度alert($(window).height()); //浏览器时下窗口可视区域高度 alert($(document).height()); //浏览器时下窗口文档的高度 alert($(document.body).height());//浏览器时下窗口文档body的高度 ale 阅读全文
posted @ 2016-03-18 10:20 来临 阅读(139) 评论(0) 推荐(0) 编辑
摘要: 表格操作<table style='table-layout: fixed;'><td style="word-break:break-all"> 强制换行<td style="width:60px;overflow: hidden;white-space: nowrap;text-overflow 阅读全文
posted @ 2016-03-18 10:19 来临 阅读(306) 评论(0) 推荐(0) 编辑