• <small id='W3wRi'></small><noframes id='W3wRi'>

    <tfoot id='W3wRi'></tfoot>

      <i id='W3wRi'><tr id='W3wRi'><dt id='W3wRi'><q id='W3wRi'><span id='W3wRi'><b id='W3wRi'><form id='W3wRi'><ins id='W3wRi'></ins><ul id='W3wRi'></ul><sub id='W3wRi'></sub></form><legend id='W3wRi'></legend><bdo id='W3wRi'><pre id='W3wRi'><center id='W3wRi'></center></pre></bdo></b><th id='W3wRi'></th></span></q></dt></tr></i><div id='W3wRi'><tfoot id='W3wRi'></tfoot><dl id='W3wRi'><fieldset id='W3wRi'></fieldset></dl></div>
      <legend id='W3wRi'><style id='W3wRi'><dir id='W3wRi'><q id='W3wRi'></q></dir></style></legend>

        • <bdo id='W3wRi'></bdo><ul id='W3wRi'></ul>

      1. 如何在 SQL 存储过程中实现日志记录和错误报告?

        How to implement logging and error reporting in SQL stored procedures?(如何在 SQL 存储过程中实现日志记录和错误报告?)
        1. <small id='PXsSy'></small><noframes id='PXsSy'>

            <bdo id='PXsSy'></bdo><ul id='PXsSy'></ul>

                <legend id='PXsSy'><style id='PXsSy'><dir id='PXsSy'><q id='PXsSy'></q></dir></style></legend>

                <i id='PXsSy'><tr id='PXsSy'><dt id='PXsSy'><q id='PXsSy'><span id='PXsSy'><b id='PXsSy'><form id='PXsSy'><ins id='PXsSy'></ins><ul id='PXsSy'></ul><sub id='PXsSy'></sub></form><legend id='PXsSy'></legend><bdo id='PXsSy'><pre id='PXsSy'><center id='PXsSy'></center></pre></bdo></b><th id='PXsSy'></th></span></q></dt></tr></i><div id='PXsSy'><tfoot id='PXsSy'></tfoot><dl id='PXsSy'><fieldset id='PXsSy'></fieldset></dl></div>

                <tfoot id='PXsSy'></tfoot>
                  <tbody id='PXsSy'></tbody>
                • 本文介绍了如何在 SQL 存储过程中实现日志记录和错误报告?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  背景

                  我目前正在从事一个大量使用 SQL 存储过程的项目.有些表每天执行多达几十万个过程.因为该项目为我们的客户日志服务提供关键业务功能,快速错误检测至关重要.

                  I'm currently working on a project that heavily utilizes SQL stored procedures. Some tables have as many as few hundred thousand procedure executions every day. Because the project serves critical business function for our client logging and fast error detection is crucial.

                  问题

                  如何在 SQL 存储过程中实现既快速又可靠的日志记录和错误报告?

                  How to implement logging and error reporting in SQL stored procedures that is fast and reliable at the same time?

                  推荐答案

                  目前这对您没有帮助,但 SQL Server 2008 上的人可能会感兴趣.在 SQL Server 2008 上 XEvents 可用于记录所有错误详细信息(包括声明文本)到一个中心位置.

                  This won't help you at the moment but may be of interest to people on SQL Server 2008. On SQL Server 2008 XEvents can be used to log all error details (including statement text) to a central location.

                  IF EXISTS(SELECT * FROM sys.server_event_sessions WHERE name='ErrorLogger')
                      DROP EVENT SESSION [ErrorLogger] ON SERVER;
                  CREATE EVENT SESSION [ErrorLogger]
                  ON SERVER
                  ADD EVENT sqlserver.error_reported(
                       ACTION (sqlserver.sql_text)
                       WHERE (([severity]>(10))))
                  ADD TARGET package0.asynchronous_file_target(
                       SET filename='c:	emperror_logger.xel', metadatafile='c:	emperror_logger.xem')
                  WITH (MAX_MEMORY = 4096KB, EVENT_RETENTION_MODE = ALLOW_SINGLE_EVENT_LOSS, 
                  MAX_DISPATCH_LATENCY = 30 SECONDS, MAX_EVENT_SIZE = 0KB, 
                  MEMORY_PARTITION_MODE = NONE, TRACK_CAUSALITY = OFF, STARTUP_STATE = ON)
                  
                  ALTER EVENT SESSION [ErrorLogger] ON SERVER STATE = START
                  

                  并检查错误

                  SELECT CONVERT (XML, event_data) AS data
                          FROM sys.fn_xe_file_target_read_file ('C:Temperror_logger*.xel', 'C:Temperror_logger*.xem', NULL, NULL)
                  

                  这篇关于如何在 SQL 存储过程中实现日志记录和错误报告?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  Maximum stored procedure, function, trigger, or view nesting level exceeded (limit 32)(超出最大存储过程、函数、触发器或视图嵌套级别(限制 32))
                  How to View Oracle Stored Procedure using SQLPlus?(如何使用 SQLPlus 查看 Oracle 存储过程?)
                  How to debug stored procedure in VS 2015?(如何在 VS 2015 中调试存储过程?)
                  Set the variable result, from query(设置变量结果,来自查询)
                  What is dynamic SQL?(什么是动态 SQL?)
                  Mysql - How to quit/exit from stored procedure(Mysql - 如何退出/退出存储过程)
                  1. <tfoot id='LVnxi'></tfoot>

                    <small id='LVnxi'></small><noframes id='LVnxi'>

                      <legend id='LVnxi'><style id='LVnxi'><dir id='LVnxi'><q id='LVnxi'></q></dir></style></legend>

                          <tbody id='LVnxi'></tbody>
                        <i id='LVnxi'><tr id='LVnxi'><dt id='LVnxi'><q id='LVnxi'><span id='LVnxi'><b id='LVnxi'><form id='LVnxi'><ins id='LVnxi'></ins><ul id='LVnxi'></ul><sub id='LVnxi'></sub></form><legend id='LVnxi'></legend><bdo id='LVnxi'><pre id='LVnxi'><center id='LVnxi'></center></pre></bdo></b><th id='LVnxi'></th></span></q></dt></tr></i><div id='LVnxi'><tfoot id='LVnxi'></tfoot><dl id='LVnxi'><fieldset id='LVnxi'></fieldset></dl></div>
                        • <bdo id='LVnxi'></bdo><ul id='LVnxi'></ul>