是否可以在C#中查询从TSQL扩展存储过程中获取的记录?

时间:2012-03-15 15:33:24

标签: c# tsql

所以这是我在C#中尝试的代码,它没有给我我需要的结果。

SqlCommand comm = new SqlCommand("exec sys.xp_readerrorlog 0,1,'','',@StartDate,@EndDate,N'Desc'");, conn);
comm.Parameters.AddWithValue("@StartDate", "");
comm.Parameters.AddWithValue("@EndDate", "");

SqlDataReader dr = comm.ExecuteReader();

while (dr.Read())
{
    Console.WriteLine(dr.GetString(0));
}

基本上,我需要从这些日志中提取数据(通过这个存储过程从SQL Server中提取),似乎当我使用dataReader时,没有记录,如果我使用带有数据的数据集适配器,数据集中也没有表/记录。这些信息对我来说至关重要。

有没有办法让我仍然可以查询SQL Server错误日志而无需求助于存储过程?

另一个更新:

此扩展存储过程的参数是:

  • 您要阅读的错误日志文件的值:0 =当前,1 =存档,2 =等...

  • 日志文件类型:1或NULL =错误日志,2 = SQL代理日志

  • 搜索字符串1:您要搜索的字符串

  • 搜索字符串2:您要搜索的字符串2以进一步细化 结果

  • 从开始时间搜索

  • 搜索结束时间

  • 排序结果顺序:N'asc'=升序,N'desc'=降序

我尝试的另一种方法

SqlCommand comm = new SqlCommand(@"exec sys.xp_readerrorlog 0,1,'','',null,null,N'Desc'", conn);
SqlDataAdapter da = new SqlDataAdapter(comm);
DataSet ds = new DataSet();
Console.WriteLine(ds.Tables.Count); //0 returned: no data in dataset

如果我被允许使用存储过程来查询数据,我本可以使用以下提取,但是它会被部署太多并且难以维护和退役

    IF (EXISTS( SELECT * FROM sys.procedures where name = 'writelogs' ))
BEGIN
    DROP PROCEDURE Writelogs;
END
GO

CREATE PROCEDURE WriteLogs @Servername varchar(40),@InstanceName varchar(40),@Pattern varchar(max),@ParamBeginDate varchar(40), @ParamEndDate varchar(40) AS
BEGIN 

    DECLARE @BeginDate DateTime
    DECLARE @EndDate DateTime
    DECLARE @NextQueryID int

    --First we have to convert the timestamps EndDate and BeginDate to something usable
    IF (@ParamBeginDate = 'Beginning')
    BEGIN
        SET @BeginDate = null;  --null will cause sys.xp_readerrorlog to read from beginning
    END
    ELSE IF (@ParamBeginDate = 'Last')
    BEGIN
        SELECT TOP 1 @BeginDate = L.TimeLogged FROM LogTable L ORDER BY L.TimeLogged Desc
    END
    ELSE
    BEGIN
        BEGIN TRY   
            SET @BeginDate = CAST(@ParamBeginDate AS DATETIME);
        END TRY
        BEGIN CATCH
            SET @BeginDate = null;
        END CATCH
    END
    IF (@ParamEndDate = 'Now')
    BEGIN
        SET @EndDate = GETDATE();  --null will cause sys.xp_readerrorlog to read till now
    END
    ELSE
    BEGIN
        BEGIN TRY   
            SET @EndDate = CAST(@ParamEndDate AS DATETIME);
        END TRY
        BEGIN CATCH
            SET @EndDate = GETDATE();
        END CATCH
    END

    --Temporary Table to store the logs in the format it is originally written in
    CREATE TABLE TMP
                (LogDate DateTime2
                ,Processinfo varchar(40)
                ,[Text] varchar(max))

    --truncate the milliseconds (else ALL records will be retrieved)
    SET @EndDate= dateadd(millisecond, -datepart(millisecond, @EndDate),@EndDate);
    SET @BeginDate= dateadd(millisecond, -datepart(millisecond, @BeginDate),@BeginDate);

    INSERT INTO TMP exec sys.xp_readerrorlog 0,1,'','',@BeginDate,@EndDate,N'DESC';
    SELECT TOP 1 L.TimeLogged FROM LogTable L ORDER BY L.Timelogged desc
    INSERT INTO LogTable
    SELECT @Servername,@InstanceName,T.[text],T.LogDate,GETDATE(),0,0,null,@NextQueryID FROM TMP t WHERE PATINDEX(@Pattern,t.[Text]) > 0;
    DROP TABLE TMP;
END

1 个答案:

答案 0 :(得分:2)

您无法使用AddWithValue作为日期。

如果日期为空,则需要传递null作为值,而不是空字符串。那些意义完全不同。

要进行测试,请打开Management Studio并执行以下操作:

exec sys.xp_readerrorlog 0,1, '', '', '', ''

这将是零结果。但是,如果你这样做:

exec sys.xp_readerrorlog 0,1, '', '', null, null

你会收到很多记录。


顺便说一句,你的更新仍然是错误的。您拥有的数据集代码永远不会做任何事情。将其更改为:

SqlCommand comm = new SqlCommand(@"exec sys.xp_readerrorlog 0,1,'','',null,null,N'Desc'", conn);
SqlDataAdapter da = new SqlDataAdapter(comm);
DataSet ds = new DataSet();
da.Fill(ds, "sometablename");
Console.WriteLine(ds.Tables.Count); //0 returned: no data in dataset

注意填充命令......