【发布时间】:2023-03-17 15:33:01
【问题描述】:
我需要执行命令-
SELECT sbcm_ref.process_time_reports_direct_buf_portion(100)
process_time_reports_direct_buf_portion 是 sbcm_ref 架构中的 Routines 包类。
我该怎么做? 谢谢你的回答!
【问题讨论】:
我需要执行命令-
SELECT sbcm_ref.process_time_reports_direct_buf_portion(100)
process_time_reports_direct_buf_portion 是 sbcm_ref 架构中的 Routines 包类。
我该怎么做? 谢谢你的回答!
【问题讨论】:
我假设您已经在使用代码生成器。现在您可以像这样在生成的Routines 类中使用该生成的方法:
ctx.select(Routines.processTimeReportsDirectBufPortion(100)).fetch();
【讨论】: