- 浏览: 56989 次
最新评论
-
keepgoing:
update b set b.xqdm=(select a.x ...
sql 更新语句 关联两张表 -
ale0512:
没有效果,完全没有反应
PowerDesigner模型的Name/Code自动转换 -
azheng270:
没有任何效果,生成还是生成中文code
PowerDesigner模型的Name/Code自动转换
文章列表
public class PrintWords {
public static void main(String[] args) {
System.out.println(Words.FIRST + " " +
Words.SECOND + " " +
Words.THIRD);
}
}
public class Words {
private Words() { }; // Un ...
- 2008-06-06 06:16
- 浏览 885
- 评论(0)
--查进程
select object_id,session_id,locked_mode from v$locked_object;
select t2.username,t2.sid,t2.serial#,t2.logon_time
from v$locked_object t1,v$session t2
where t1.session_id=t2.sid order by t2.logon_time;
-- 查看数据库中表、索引占用的数据库空间大小
SELECT * FROM user_segments;
- 2008-05-11 07:45
- 浏览 1440
- 评论(0)
exp mobile/mobile@net_192.168.2.112 file=d:\daochu.dmp
imp mobile/mobile@ora9i file=d:\daochu.dmp
- 2008-05-11 07:39
- 浏览 1108
- 评论(0)
用远程登陆客户端登陆linux
进入tomcat/logs/文件夹下
键入指令:tail -f catalina.out
这样就可以与本地电脑一样查看TOMCAT的控制台了
- 2008-05-11 07:38
- 浏览 6785
- 评论(0)
Tree C: /F >C:\TXT\Filelist.txt,可以将 C 盘上所有文件夹中的文件列表保存到“C:\TXT\Filelist.txt”文件中
- 2008-05-11 07:38
- 浏览 1984
- 评论(0)
var str = '100';
var num = Number(100);
alert(typeof(num) + ': ' + num);
var obj = Object(str);
alert(typeof(obj) + ': ' + obj);
var bool = Boolean(str);
alert(typeof(bool) + ': ' + bool);
var num = 100;
var str = String(num);
alert(typeof(str) + ': ' + ...
- 2008-05-11 07:14
- 浏览 2099
- 评论(0)
sql 两表关联 更新
update set from 语句格式
Sybase和SQL SERVER:UPDATE...SET...FROM...WHERE...的语法,实际上从源表获取更新数据。
在 SQL 中:
Update A SET A.dept =B.name
FROM A LEFT JOIN B ON B.ID=A.dept_ID
- 2008-05-11 07:09
- 浏览 10938
- 评论(1)
PowerDesigner 模型的 Name/Code自动转换
在使用 PowerDesigner建模时我们经常用英文字母作为代码 (Code)而用中文作为名称 (Name)以方便阅读理解,而 PowerDesigner自动的 Name/Code转换是简单的将 Name复制到 Code,使用起来不太方便,幸好 PD提供了一个自定义 Name/Code转换的机制可以让我们编写脚本来实现定制的转换。下面是一个简单的转换脚本,通过在 Name 栏目同时输入中文和英文,中/ 英文之间用 "#"作为分隔来自动输入 Code栏目的内容。
.set_value(_First, true ...
- 2008-05-11 07:01
- 浏览 4070
- 评论(2)
java.sql.Date stores only date information, not times. Simply converting a java.util.Date into a java.sql.Date will silently set the time to midnight. So, to store date/times to be manipulated as java.util.Date objects, don’t do this:
// BUG: loses time of day
preparedStatement.setDate(1, new java.s ...
- 2008-05-11 06:59
- 浏览 1961
- 评论(0)
把鼠标停在sql所在行,然后ctrl+Enter直接执行当前sql。
解决Toad对中文显示乱码问题:
系统环境变量加 NLS_LANG=AMERICAN_AMERICA.WE8ISO8859P1
toad中自动提示功能,就像plsql developer那样:
输入表名前几个字母,然后用Ctrl + .就可以弹出,如你输入select * from emp t where t. 这时候停顿一下,会弹出emp的字段来供你选择
- 2008-05-11 06:56
- 浏览 1797
- 评论(0)