0

平台:SQL Server 2012

我有两个存储过程,它们接收一个注册号,然后根据该注册号,它打印出一堆 HTML 和 XML。在 proc 中是一堆打印语句,当它在 SSMS 中运行时,它们会在 Messages 区域中吐出。

它工作得很好,我不太喜欢它是这样设计的,但我继承了它,他们希望它工作。

我希望此过程运行并将消息内容吐出到文件中。理想情况下,它还会在运行后将文件重命名为注册号。

长话短说,可以将 SQL 语句的消息部分输出到文件中。

西斯?还是一些简单的 BCP 存储过程命令?有人遇到这个吗?

4

2 回答 2

0

您可以使用execute spWriteStringToFile. 在这里找到这个:https ://www.simple-talk.com/code/WorkingWithFiles/spWriteStringTofile.txt

ALTER PROCEDURE spWriteStringToFile
 (
@String Varchar(max), --8000 in SQL Server 2000
@Path VARCHAR(255),
@Filename VARCHAR(100)

--
)
AS
DECLARE  @objFileSystem int
        ,@objTextStream int,
        @objErrorObject int,
        @strErrorMessage Varchar(1000),
        @Command varchar(1000),
        @hr int,
        @fileAndPath varchar(80)

set nocount on

select @strErrorMessage='opening the File System Object'
EXECUTE @hr = sp_OACreate  'Scripting.FileSystemObject' , @objFileSystem OUT

Select @FileAndPath=@path+'\'+@filename
if @HR=0 Select @objErrorObject=@objFileSystem , @strErrorMessage='Creating file "'+@FileAndPath+'"'
if @HR=0 execute @hr = sp_OAMethod   @objFileSystem   , 'CreateTextFile'
    , @objTextStream OUT, @FileAndPath,2,True

if @HR=0 Select @objErrorObject=@objTextStream, 
    @strErrorMessage='writing to the file "'+@FileAndPath+'"'
if @HR=0 execute @hr = sp_OAMethod  @objTextStream, 'Write', Null, @String

if @HR=0 Select @objErrorObject=@objTextStream, @strErrorMessage='closing the file "'+@FileAndPath+'"'
if @HR=0 execute @hr = sp_OAMethod  @objTextStream, 'Close'

if @hr<>0
    begin
    Declare 
        @Source varchar(255),
        @Description Varchar(255),
        @Helpfile Varchar(255),
        @HelpID int

    EXECUTE sp_OAGetErrorInfo  @objErrorObject, 
        @source output,@Description output,@Helpfile output,@HelpID output
    Select @strErrorMessage='Error whilst '
            +coalesce(@strErrorMessage,'doing something')
            +', '+coalesce(@Description,'')
    raiserror (@strErrorMessage,16,1)
    end
EXECUTE  sp_OADestroy @objTextStream
EXECUTE sp_OADestroy @objTextStream

关于它的完整文章:https ://www.simple-talk.com/sql/t-sql-programming/reading-and-writing-files-in-sql-server-using-t-sql/

于 2013-03-04T05:57:16.003 回答
0

将所有 PRINT 语句替换为 SELECT 语句,然后将每个 SELECT 语句发送到一个表。然后,我们拉取该表以使用 SSIS 正确构建 HTM 文件。

于 2013-03-16T03:56:10.513 回答