祝愿大家身体健康!

 站点注册  找回密码
 站点注册

QQ登录

只需一步,快速开始

查看: 3795|回复: 2

请问怎么保存sp_的结果啊?

[复制链接]

请问怎么保存sp_的结果啊?

[复制链接]
jueljust

主题

0

回帖

3

积分

新手上路

积分
3
贡献
在线时间
小时
2006-4-30 10:03:45 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。

您需要 登录 才可以下载或查看,没有账号?站点注册

×
请问各位大虾,怎么保存sp_XXX之类的系统过程,分类存储过程的结果?比如保存在数据表内,或者赋给变量
共享共进共赢Sharing And Win-win Results
SYBASEBBS - 免责申明1、欢迎访问“SYBASEBBS.COM”,本文内容及相关资源来源于网络,版权归版权方所有!本站原创内容版权归本站所有,请勿转载!
2、本文内容仅代表作者观点,不代表本站立场,作者自负,本站资源仅供学习研究,请勿非法使用,否则后果自负!请下载后24小时内删除!
3、本文内容,包括但不限于源码、文字、图片等,仅供参考。本站不对其安全性,正确性等作出保证。但本站会尽量审核会员发表的内容。
4、如本帖侵犯到任何版权问题,请立即告知本站 ,本站将及时删除并致以最深的歉意!客服邮箱:admin@sybasebbs.com
ehxz

主题

0

回帖

58万

积分

管理员

积分
586500
贡献
在线时间
小时
2006-5-11 11:15:33 | 显示全部楼层

SP有什么结果?存储过程就是标准的TXT文本,存成TXT或SQL就行了,用记事本可以直接打开或编辑。

共享共进共赢Sharing And Win-win Results
JohnPhan

主题

0

回帖

228

积分

注册会员

积分
228
贡献
在线时间
小时
2006-5-11 14:37:31 | 显示全部楼层

以sp_help为例子:获得了sp_help的源代码.可以自己分析改造

sp_helptext sp_help

/* Sccsid = "%Z% generic/sproc/%M% %I% %G%" */
/* 4.8 1.1 06/14/90 sproc/src/help */
/*
** Messages for "sp_help"               17570
**
** 17460, "Object must be in the current database."
** 17461, "Object does not exist in this database."
** 17570, "Operating System File"
** 17571, "---------------------"
** 17573, "Object is Remote/External"
** 17574, "-------------------------"
** 17575, "Object existed prior to Omni"
** 17576, "Lock scheme is Allpages"
** 17577, "Lock scheme is Datapages"
** 17578, "Lock scheme is Datarows"
** 17579, "Lock scheme Unknown or Corrupted"
** 17581, "Trigger is disabled."
** 17582, "Trigger is enabled."
** 18571, "The attribute '%1!' is not applicable to tables with allpages lock scheme."
*/

/*
** IMPORTANT NOTE:
** This stored procedure uses the built-in function object_id() in the
** where clause of a select query. If you intend to change this query
** or use the object_id() or db_id() builtin in this procedure, please read the
** READ.ME file in the $DBMS/generic/sproc directory to ensure that the rules
** pertaining to object-id's and db-id's outlined there, are followed.
*/

create procedure sp_help
@objname varchar(92) = NULL   /* object name we're after */
as

declare @typeid int    /* type of object in systyp
es */
declare @sysstat smallint   /* the type of the object */
declare @OS_file varchar(255)   /* physical file for ext tab */
declare @msg varchar(250)
declare @sptlang int
declare @len1 int, @len2 int, @len3 int, @len4 int, @sysstat2 int
declare @sqltex
t varchar(255)   /* SQL to execute using execute
      ** immediate. */

if @@trancount = 0
begin
 set chained off
end

set transaction isolation level 1

select @sptlang = @@langid

if @@langid != 0
begin
 if not exists ( select * from master.dbo.sysmessages where error
  between 17100 and 17109 and langid = @@langid)
     select @sptlang = 0
end

set nocount on
略.

共享共进共赢Sharing And Win-win Results
您需要登录后才可以回帖 登录 | 站点注册

本版积分规则

免责声明:
本站所发布的一切破解补丁、注册机和注册信息及软件的解密分析文章仅限用于学习和研究目的;不得将上述内容用于商业或者非法用途,否则,一切后果请用户自负。本站信息来自网络,版权争议与本站无关。您必须在下载后的24个小时之内,从您的电脑中彻底删除上述内容。如果您喜欢该程序,请支持正版软件,购买注册,得到更好的正版服务。如有侵权请邮件与我们联系处理。

Mail To:Admin@SybaseBbs.com

QQ|Archiver|PowerBuilder(PB)BBS社区 ( 鲁ICP备2021027222号-1 )

GMT+8, 2024-11-1 14:33 , Processed in 0.033285 second(s), 8 queries , MemCached On.

Powered by Discuz! X3.5

© 2001-2024 Discuz! Team.

快速回复 返回顶部 返回列表