`
tanlingcau
  • 浏览: 135879 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论
文章列表
1,打开PL/SQL Developer的sql window窗口; 2,输入select * from tablename for update; 3,按F8执行; 4,把表内容置为全选状态,然后粘贴excel数据; 5,commit提交。 注意:excel中的第一列可能为自动增长列,可将第一列复制,然后插入列前面,然后再全选粘贴。

鼠标形状样式

style="cursor:default" 默认 style="cursor:auto" 自动 style="cursor:hand" 手形(IE only) style="cursor:pointer" 手形 style="cursor:crosshair" 十字形 style="cursor:text"文本形 style="cursor:wait" 沙漏形 style="cursor:move" 十字箭头形 style=" ...
有三种方法:     一、在HTML页面中加入META标记:       <HEAD>       <META   HTTP-EQUIV="Pragma"   CONTENT="no-cache">       <META   HTTP-EQUIV="Cache-Control"   CONTENT="no-cache">       <META   HTTP-EQUIV="Expires"   CONTENT="0"> ...
http://www.oracle.com/technology/oramag/oracle/06-sep/o56asktom.html   Consider a query with this structure:   select ..., ROWNUM from t where <where clause> group by <columns> having <having clause> order by <columns>; Think of it as being processed in ...
借鉴http://www.w3school.com.cn/js/pro_js_variables.asp 类型                                 前缀         示例 数组                                 a             aValues 布尔型                              b             bFound 浮点型(数字)                  f              fValue 函数                               ...
错误最后查出来是因为store的root没有写正确。因为项目的代码比较混乱而导致json串的返回也各自为营,没想到会是这个错误。 解决的方式是加了一个异常侦听 listeners : { beforeload : function(){ alert("beforeload."); }, load : function() { alert("load" +secondGridStore.getCount()); }, loadexception : function(proxy, options, ...
页面按正常思路写的,但出不来。 和别人的页面对比了一下,发现GridPanel的columns是直接写在里面的,后面拿出来单独定义,然后在GridPanel里引用,结果可以正常加载页面了。 具体原因没分析出来。。。
Extjs版本2.0 问题:Ext.form的timeout设置不起作用。 原因:文档解释是timeout : Number The number of milliseconds to wait for a server response before failing with the failureType as CONNECT_FAILURE.但在我的开发环境中实际是以秒为单位的。于是出现timeout不工作的假象。 处理:把timeout:3000改为timeout:3即可。。。。
表现为在IE下数据显示正常,在FF下数据不显示,查看后台发现并未发送数据请示。 解决方案:路径中localhost与127.0.0.1要与程序配置的一致。
Clob字段在SQL语句中一般可当作字符串处理。 但当字符串的长度>4000时,会出现errorORA-01704: string literal too long错误。 因为SQL语句超过了允许的长度,在PL/SQL中可能限制更短。 处理方法: java中可引用preparedStatement。PL/SQL中则可使用变量。 tomcat6.0和weblogic9.2下测试通过 /** * @param conn * 连接 * @param table * 表名 * @param idColumn * ...
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; public class MyEclipseGen { private static final String LL = "Decompiling this copyrighted software is a violation of both your license agreement and the Digital Millenium Copyright Act of 1998 ...
<html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> <title></title> </head> <body scroll=no style="text-align: center"> ...
date 显示当前时间 date -s 按字符串方式修改时间 如:     date -s 2012-01-01     date -s 15:15:00     date -s "2012-01-01 15:15:00" 修改完后输入:clock -w把系统时间写入CMOS
ps -ef | grep keywords | grep -v grep 在ps结果中查找包含keywords的,然后在结果中去掉包含grep关键字的,如果存在,则表示keywords程序已启动。 之所以要加上grep -v grep,是因为不管有没有启动keywords, ps -ef | grep keywords总是有返回,返回的这个就是grep keywords命令所占的线程,所以在结果中应该把包含grep命令的这个结果去掉。如果去掉之后还有,则表示keywords程序已经启动。
Ctrl+1 快速修复 Ctrl+D: 删除当前行 Ctrl+Alt+↓ 复制当前行到下一行(复制增加) Ctrl+Alt+↑ 复制当前行到上一行(复制增加) Alt+↓ 当前行和下面一行交互位置 Alt+↑ 当前行和上面一行交互位置 Alt+← 前一个编辑的页面 Alt+→ 下一个编辑的页面(当然是针对上面那条来说了) Alt+Enter 显示当前选择资源的属性 Shift+Enter 在当前行的下一行插入空行(这时鼠标可以在当前行的任一位置,不一定是最后) Shift+Ctrl+Enter 在当前行插入空行(同上条) Ctrl+Q 定位到最后编辑的地方 Ctrl+L 定位在某行 (对 ...
Global site tag (gtag.js) - Google Analytics