sp_helptext存储过程用于显示已编译对象的源代码。
sp_helptext是Sybase ASE内置的存储过程,可从任何位置调用。
但实际上,如果直接使用,常常会得到(令人头大的)错误提示:
Msg 17461
Object does not exist in this database.
究其原因,是因为Sybase ASE内置的存储过程均在sybsystemprocs数据库中。
如果希望用sp_helptext查看其源码,可使用如下方法:
(以查看sp_recompile内置存储过程的源码为例)
方法一:
use sybsystemprocs
go
sp_helptext sp_recompile
go
方法二:
sybsystemprocs..sp_helptext sp_recompile
go
Sybase官方手册中说的“The compiled object must be in the current database.”的意思,请根据前文提供的SQL语句自行领会……
参考来源:
sap ase - In Sybase ASE, sp_helptext shows suceeded but nothing else is displayed - Stack Overflowhttps://stackoverflow.com/questions/50708663/in-sybase-ase-sp-helptext-shows-suceeded-but-nothing-else-is-displayed