- 浏览: 198529 次
- 性别:
- 来自: 苏州
最新评论
-
hyqaxxs:
果然如此
jQuery UI dialog插件出错信息:$(this).dialog is not a function -
Rhao:
厉害 我的也是这样子 终于好了
jQuery UI dialog插件出错信息:$(this).dialog is not a function -
ruyi0127:
三炮 被你骗了
oracle sqldeveloper设置自动提示 -
lt26i:
有问题,删除了当前页面的引用其他需要引用的地方报错,用了这个方 ...
jQuery UI dialog插件出错信息:$(this).dialog is not a function -
353386051:
...
禁用密码文本框的粘贴复制功能
文章列表
http://www.ibm.com/developerworks/cn/java/j-lo-jetty/
http://tortoisesvn.net/docs/nightly/TortoiseSVN_zh_CN/index.html
一、 java内存结构
1. Heap(堆):实例分配的地方,通过-Xms与-Xmx来设置
2. MethodArea(方法区域):类的信息及静态变量。 对应是Permanet Generation, 通过-XX:PermSize来设置
3. JavaStack(java的栈):虚拟机只会直接对Javastack执 ...
如果我们编译运行下面这个程序会看到什么?
public class Test{
public static void main(String args[]){
System.out.println(0.05+0.01);
System.out.println(1.0-0.42);
System.out.println(4.015*100);
System.out.println(123.3/100);
}
}
你没有看错!结果确实是
0.060000000000000005
0.5800000 ...
http://www.fanshu.com/fanshustaticnews/moren/2009-11-13/091113134324718/1.html
什么是Scrum?
◎ Scrum在英语的意思是橄榄球里的争球
◎ 在程序开发中它是一个敏捷开发框架
◎ 它是一个增量迭代的开发过程
◎ 在这个框架整个开发周期由若干个小的迭代周期,每个小的的迭代周期称为一个Sprint,每个Sprint的长度2到4周
◎ 在每个Sprint中,Scrum的开发团队拿到一个排列好优先级的需求列表,我们称它为用户故事或者叫Sprint backlog
◎ 在每个迭代结束后,都会开发完成可交付的产品。
Scr ...
mutually exclusive
互相排斥的
Function attach a client and attach an employee are mutually exclusive.
javap -c package.ClassName
//...
349: iconst_0
350: iload 11
352: iload 4
354: iadd
355: invokestatic #427; //Method java/lang/System.arraycopy:(Ljava/lang/Ob
ject;ILjava/lang/Object;II)V
358: aload 13
360: astore_3
361: iconst_0
362: istore 13
36 ...
vice versa 源于拉丁语
"Vice" 的意思是代替、接替、副的等等 比如"The Vice-President". 副总统,所以词根"vice" 意思就是更换、改变。
而"Versa" 是由拉丁语动词"vertere" 变化来的,是 分词形式. "Vertere" 意思是"to turn"即转动、改变。
因此"vice versa" 就是"the position being reversed".反过来 ...
--向表中加字段
ALTER TABLE tsn_tndr_tndr_count ADD correction_amt NUMBER(17,6);
--修改表字段
ALTER TABLE tsn_tndr_tndr_count MODIFY correction_amt NUMBER(1) default 0;
--删除表字段
ALTER TABLE tsn_tndr_tndr_count DROP COLUMN correction_amt;
[Oracle]解锁
- 博客分类:
- Database
--log in using sysdba role
ALTER USER dtv UNLOCK;
COMMIT;
imp system/sa@orcl file=D:\MyFiles\x_code\SAQ\db\SAQ.dmp full=y ignore=y
--只复制表结构
SELECT * INTO new_table FROM old_table WHERE 1=2
--复制表结构和数据
SELECT * INTO new_table FROM old_table
--向已知表中插入数据
INSERT INTO new_table SELECT * FROM old_table
splash screen
We take this opportunity to display the splash screen .
我们用这个机会显示启动画面。
Open the configuration panel for the selected splash screen .
打开选定飞溅屏幕的配置面板。
You will see a splash screen ; click next . Now you will be asked what you want to do .
你将会看见一个弹出窗口;点下一步。现在你将会被询问“你想做什么”。
sp_columns itm_item
sp_help itm_item
sp_helpconstraint itm_item
select * from INFORMATION_SCHEMA.COLUMNS where table_name = 'itm_item'
select * from sysconstraints where id=object_id('itm_item') and (status &1)=1