我想查看xbase存储过程的代码。
我认识到表演程序给了我一系列的程序。
有人能告诉我如何获得存储过程的实际代码吗?
发布于 2013-06-12 13:33:02
在Sybase ASE:
sp_helptext sp_name
select * from sysobjects where type='P'
https://dba.stackexchange.com/questions/44350
相似问题