- + P A

- 在表中插入列_2008年1月18日13点34分

      数据库 2008-1-18 13:38

-- Start of DDL Script for Table AAS.GPASFMTAB
-- Generated 2008-01-15 17:20:56 from AAS@DEVDB.HAIERNEWYORKLIFE.COM.CN

ALTER TABLE gpasfmtab add
    (
     agtfmt                         NUMBER(10,0),
     appagt                         NUMBER(10,0),
     appmgrt                        NUM

标签集:TAGS:SQL PL/SQL Alter
我要留言To Comment 阅读全文Read All | 回复Comments() 点击Count()

- 口译教程第9单元

      外语学习 2007-12-28 12:3

in their broad outlines 
approach
a great deal in common

linguistic unit
infinite
well-formed
grammatical

complex - intricacy

a devil's bargain
capacity
deapression

subtle aspects
human aging
figured out
rigid

distributing
customer base

coverage
coverage

标签集:TAGS:中级口译
我要留言To Comment 阅读全文Read All | 回复Comments() 点击Count()

- 中口复习有感

      外语学习 2007-12-27 14:20
中级口译考试到记时80天的感想。
标签集:TAGS:中口
我要留言To Comment 阅读全文Read All | 回复Comments() 点击Count()

- 彻底删除Oracle的方法

      JAVA 2007-5-15 16:40

Deinstalling Components with Oracle Universal Installer
This section describes how to use Oracle Universal Installer to deinstall Oracle
components (which deinstalls them from the installer inventory) instead of
removing them manually.
Do not delete an Oracle home manually (for example, by deleting the directory
structure with Windows Explorer or MS-DOS command prompt) because the
components in that Oracle home remain registered in the Oracle Universal Installer
inventory. If you then attempt an installation in the same Oracle home, some or all
of the components selected may not be installed because the installer determines
they are already installed.
Oracle Universal Installer creates Windows services for Oracle compo

标签集:TAGS:删除Oracle
我要留言To Comment 阅读全文Read All | 回复Comments() 点击Count()

- 自考外语这门科目终于考完了

      外语学习 2006-11-13 14:39
说实话,自学考试的确能培养人的自学能力,仅上海,今年又有14万考生参加了这次考试。我也是其中之一。抱着纯粹提高一下自己外语水平的心态去报考其实还有很有意思的,每篇文章都会告诉你不同领域的一些事情,从天文地理到人情世故,多多少少都接触到一点,到最后几天又突击做了几套试卷,前几天在看老美写的电子邮件时自我感觉仿佛有所进步^^,特别是看到刚复习过的单词时感到好有成就感哦。和参加培训班的那种心态不同,参加培训班老师必定会让你多做题目,分析考点,划重点,课文只是一种为了帮助理解考点而被使用的辅助工具罢了。和学生时代不同的是上班族可以放弃闲暇时间泡上一杯咖啡然后翻开书本,坐在舒适座椅上紧凑却又享受地度过自己的学习时光。 ...
标签集:TAGS:
我要留言To Comment 阅读全文Read All | 回复Comments() 点击Count()

- Your Gay Friend is Ugly

      外语学习 2005-11-23 17:30
Nov 22, 2005 ...
标签集:TAGS:
我要留言To Comment 阅读全文Read All | 回复Comments() 点击Count()

- What Is a Decition

      外语学习 2005-11-20 23:10
A decision is a choice made from among alternative courses of
action that are available.
标签集:TAGS:
我要留言To Comment 阅读全文Read All | 回复Comments() 点击Count()

- 11月计划

      计划和安排 2005-11-1 15:17
Mars_Plan ...
标签集:TAGS:
我要留言To Comment 阅读全文Read All | 回复Comments() 点击Count()

- 团队开发利器CVS

      经验 2005-10-27 14:23
CVS(Concurrent Version System)简介 ...
标签集:TAGS:
我要留言To Comment 阅读全文Read All | 回复Comments() 点击Count()

- DIV使用基础

      JAVA 2005-10-12 13:45
DIV元素是用来为HTML文档内大块(block-level)的内容提供结构和背景的元素。
标签集:TAGS:
我要留言To Comment 阅读全文Read All | 回复Comments() 点击Count()

- 格式化显示数据,java.util.Vector的使用。

      JAVA 2005-9-30 14:12
标签集:TAGS:
我要留言To Comment 阅读全文Read All | 回复Comments() 点击Count()

- db.execute(sql)与db.executeQuery(sql)的区别

      数据库 2005-9-29 14:1
    在使用这2个方法时由于搞不清楚差别着实吃了不少苦头,但是俗话说得好,吃一堑长一智,吃过亏的事情往往会记得比较牢.
    这两个变量都是用来在JSP中调用实行SQL语句并且返回一个记录集的:
  CDatabaseOra db = new CDatabaseOra();
  db.InitOraDB();
  ResultSet rs = null;
           String sql,sql2;
  pt.initDB();

  sql = "select to_char(add_months(to_date("+LDATE.substring(0,6)+"01,'yyyymmdd'),-4'yyyymmdd') from dual ";
  rs = db.execute(sql);
  while(rs.next()){Statement;}
   首先db.execute和db.executeQuery不能在同一个循环中重复调用例如:
  rs = db.execute(sql);
  while(rs.next()){
           Statement;
           rs2 = db.execute(sql2);}
   是会出错的,应该将其中一个方法修改为db.executeQuery
   第二个要注意的地方就是db.executeQuery只能支持被调用255次,所以一般放在最外层被较少重复调用的循环使用.
   最后,在同一个循环下的子循环中可以重复调用例如:
  rs = db.execute(sql);
  while(rs.next()){
           Statement;
           rs2 = db
标签集:TAGS:
我要留言To Comment 阅读全文Read All | 回复Comments() 点击Count()

- JSP 内部对象

      JAVA 2005-9-28 9:53
Mars_Plan
标签集:TAGS:
我要留言To Comment 阅读全文Read All | 回复Comments() 点击Count()

- session的使用原则

      JAVA 2005-9-27 15:35
在什么时候传递session? ...
标签集:TAGS:
我要留言To Comment 阅读全文Read All | 回复Comments() 点击Count()

- Vector 类提供了实现可增长数组的功能

      数据库 2005-9-26 17:26
Vector 类提供了实现变长数组的功能,随着更多元素加入其中,数组变的更大。
删除一些元素之后,数组变小。 ...
标签集:TAGS:
我要留言To Comment 阅读全文Read All | 回复Comments() 点击Count()

- 更新测试环境或者生产环境数据的方法

      经验 2005-9-26 10:11
由于在SubmitApp中已经包含了所有其他的项目程序所以只要右击SubmitApp选择导出ear包就可以了,在选择了一个保存文件的目录之后有可能会出现在服务器上不能找到某些文件之类的错误提示,遇到这种情况只需要在“搜索文件”中找到这个文件,然后删除就可以了。 ...
标签集:TAGS:
我要留言To Comment 阅读全文Read All | 回复Comments() 点击Count()

- 数据库的读写操作

      JAVA 2005-9-22 9:15
在JSP中对Oracle数据库读写操作的代码如下: ...
标签集:TAGS:
我要留言To Comment 阅读全文Read All | 回复Comments() 点击Count()

-
表单+gerParameter()方法在JSP网页中传递值

      JAVA 2005-9-20 22:25
表单 ...
标签集:TAGS:
我要留言To Comment 阅读全文Read All | 回复Comments() 点击Count()

- 将数据写入Excel|将查询结果显示为Excel的方法

      JAVA 2005-9-19 11:5
查询结果显示为网页文件后将有一个按钮提示导出为Excel文件 ...
标签集:TAGS:
我要留言To Comment 阅读全文Read All | 回复Comments() 点击Count()

- Oracal常用指令

      数据库 2005-9-17 11:10
ORACLE 常用的SQL语法和数据对象 ...
标签集:TAGS:
我要留言To Comment 阅读全文Read All | 回复Comments() 点击Count()