P*****f 发帖数: 2272 | 1 现在有一特长控制流程较复杂的MS SQL Server SP 需要改写.
简单来说就是使用标准的JDBC SQL,不使用Stored Procedure.
这样一来,似乎:
1.复杂的控制流程只能在客户端的Java代码实现
2.需要多次(执行SQL/处理结果)的iteration.似乎这样性能会比使用SP降低不少?
any comments are welcomed. thx |
a******8 发帖数: 46 | 2 可以考虑撰写CLR Stored Procedure替代传统复杂的SP.不过需要SQL Server2005以上版本. |
j*****n 发帖数: 1781 | 3 这么整安全问题能通过么?
【在 P*****f 的大作中提到】 : 现在有一特长控制流程较复杂的MS SQL Server SP 需要改写. : 简单来说就是使用标准的JDBC SQL,不使用Stored Procedure. : 这样一来,似乎: : 1.复杂的控制流程只能在客户端的Java代码实现 : 2.需要多次(执行SQL/处理结果)的iteration.似乎这样性能会比使用SP降低不少? : any comments are welcomed. thx
|
B*****g 发帖数: 34098 | 4 大牛说了:“sp没有java快”
【在 j*****n 的大作中提到】 : 这么整安全问题能通过么?
|
j*****n 发帖数: 1781 | 5 哈哈,joke 吧。一个编译执行,一个解释执行...
【在 B*****g 的大作中提到】 : 大牛说了:“sp没有java快”
|
B*****g 发帖数: 34098 | 6 请学习hibernate,据说是。
【在 j*****n 的大作中提到】 : 哈哈,joke 吧。一个编译执行,一个解释执行...
|
w*r 发帖数: 2421 | 7 sp is slow , java is fast. as long as you can keep the communication cost
down.
that's why there is java store proc.
【在 B*****g 的大作中提到】 : 请学习hibernate,据说是。
|
B*****g 发帖数: 34098 | 8 if the only thing sp doing DML, can java do better?
【在 w*r 的大作中提到】 : sp is slow , java is fast. as long as you can keep the communication cost : down. : that's why there is java store proc.
|
w*r 发帖数: 2421 | 9 well, if/else while-loop. definitely a killer
【在 B*****g 的大作中提到】 : if the only thing sp doing DML, can java do better?
|
B*****g 发帖数: 34098 | 10 one guy in oracle said oracle package will stored as C, maybe I heard it
wrong.
【在 w*r 的大作中提到】 : well, if/else while-loop. definitely a killer
|