有个空间

有个标题

10 2012 档案

如何在Oracle中复制表结构和表数据
     摘要: 1. 复制表结构及其数据:

create table table_name_new as select * from table_name_old  阅读全文

posted @ 2012-10-23 10:11 游雯 阅读(4645) | 评论 (0)  编辑

linux下如何启动和关闭weblogic
     摘要: nohup ./startWebLogic.sh &
tail -f nohup.out  阅读全文

posted @ 2012-10-17 14:52 游雯 阅读(233) | 评论 (0)  编辑

SELECT INTO 和 INSERT INTO SELECT 两种表复制语句
     摘要: Insert into Table2(a, c, d) select a,c,5 from Table1
select a,c INTO Table2 from Table1  阅读全文

posted @ 2012-10-17 14:47 游雯 阅读(169) | 评论 (0)  编辑

oracle 时间加减综合
     摘要: select sysdate,to_char(sysdate+1/24/60,'yyyy-mm-dd HH24:MI:SS') from dual; --加1分钟   阅读全文

posted @ 2012-10-17 14:45 游雯| 编辑