ITPUB个人空间 »
hanpengxp26的个人空间
欢迎访问 hanpengxp26 的个人空间
我的论坛主题
-
2008-09-05 15:27:29 / IBM数据库产品
如何写这条语句?现有一张财务的凭证表:公司凭证号年月编号摘要科目借方贷方客户收支项目研发项目部门现金流量科技1200831TEST管理费用100餐车贴科技1200831TEST管理费用100公共项目
查看(65)
评论(3)
-
2008-09-05 15:25:39 / Oracle开发
现有一张财务的凭证表:公司 凭证号 年 月 编号 摘要 科目 借方 贷方 客户 收支项目 研发项目 部门 现金流量科技 1 2008 3 1 TEST 管理费用 100餐车贴科技 1 2008 3 1 TEST 管理费用 100公共项目科技 1 2008 3 1 TEST 管理费用 100总经理室科技 1 2008 3 1 TEST 银行存款100其他前三行,其实是一个会计科目设置了三个辅助核算项,所以数据库里存了三行。我现在想把这三行合并成一行,即:公司 凭证号 年 月 编号 摘要 科目 借方 贷方 客户 收支项目 研发项目 部门 现金流量科技 1 2008
查看(189)
评论(7)
-
2008-08-03 20:18:43 / IBM数据库产品
我需要在触发器中,通过SELECT INTO语句将从表句查询出来的值赋值给在触发器中定义的变量。在调试时一直出错,是不是在触发器中不能使用SELECT INTO语句赋值?如果不能,应该用什么方法?谢谢各位!
查看(220)
评论(5)
-
2008-06-11 15:48:11 / IBM数据库产品
本人初次接触OLAP,感觉很强大很新鲜。但这方面的资料较少。哪位可以提供这方面的资料?谢谢!
查看(400)
评论(3)
-
2008-06-01 14:00:57 / IBM数据库产品
大家好,小生侥幸通过DB2 730认证考试。IBM发邮件确认了。我登录IBM网站,可以看到认证信息。按邮件要求,点击 "Member Services" 、 "Certificate Requests" ,有两个选项,E和P(即电子档和打印档),但打印档的无法选择,下面解释说:如果打印无法选择,说明本认证不提供打印副本,或者你已经选择过了这个选项。但我没有选择过,这是第一次登录。请问这个有没有纸质证书?如何获取?多谢各位了!!!~~~
查看(406)
评论(2)
-
2008-05-21 15:44:27 / IBM数据库产品
A savepoint lets you selectively roll back a subset of actions that make up a UOWwithout losing the entire transaction. You can nest savepoints and have severalsavepoint levels active at the same time; this allows your application to roll backto a specific savepoint, as necessary. Suppose you have three savepoints (A, B,and C) defined within a particular UOW:do some work; savepoint A; do some more work; savepoint B; &
查看(451)
评论(2)
-
2008-05-16 18:50:56 / IBM数据库产品
如题。谢谢!~~~~
查看(387)
评论(4)
-
2008-05-15 09:06:54 / IBM数据库产品
以下是官方文档中的文字:When updating key values in the parent table, there are two rules that can bespecified: RESTRICT and NO ACTION. RESTRICT does not allow a key value tobe updated if there are dependent rows in a dependent table. NO ACTIONcauses the update operation on a parent key value to be rejected if, at theend of the update, there are dependent rows in a dependent table that do nothave a parent key in the parent table.请问如何理解?可否举一个例子?谢谢!~~~~~~~
查看(464)
评论(4)