07 2010 档案

摘要:user_cons_columnsselect * from user_cons_columns bbwhere table_name='SETT_GLENTRY' ; 结果: select * from user_constraints; 注:2个是是VIEW, Owner 约束的所有者 Constraint_ Name 约束名 Table_Name 与约束关联的表名 Column_Name 与约束关联的列名 Position 约束定义中列的顺序 阅读全文
posted @ 2010-07-21 16:37 0707 阅读(1461) 评论(0) 推荐(0)
摘要:select distinct b.ID BranchID,nSubjectType, b.sCode BranchNo, b.sName BranchName, b.sBankAccountCode BranchAccountNo, b.NBANKTYPE BranchTypeID, TO_CHAR(decode(ba.status, 2, ... 阅读全文
posted @ 2010-07-21 10:05 0707 阅读(519) 评论(1) 推荐(0)
摘要: 阅读全文
posted @ 2010-07-21 06:15 0707 阅读(252) 评论(0) 推荐(0)
摘要:1.jdk(java development kit)是开发工具包,相当于是一个编译器.里面包含了各种类库和工具(如javac.exe、jar.exe等)。 所用到的类库都放在了/lib/tools.jar中。如果先将tools.jar改名为tools1.jar,然后运行javac.exe,显示如下结果: Exception in thread "main" java.lang.NoClassDefFoundError: com/sun/tools/javac /Main。javac.exe只是一个包装器(Wrapper),其实包含很多动作,而javac.exe就是用jav 阅读全文
posted @ 2010-07-15 19:04 0707 阅读(297) 评论(0) 推荐(0)
摘要:select name.nextval from dual;这里的name是一个sequence的名字 nextval表示下一个值,每次使用nextval的时候,sequenct的 value都要按照建立sequence 时指定的[INCREMENT BY {1|integer}]增加。如果想查看当前的sequence的VALUE,可执行select name.currval from dual; 阅读全文
posted @ 2010-07-06 14:08 0707 阅读(144) 评论(0) 推荐(0)