• <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 存储过程中实现日志记录和错误报告?

        时间:2023-10-26
        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 存储过程中实现日志记录和错误报告?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  上一篇:MySQL UDF sys_exec() 不起作用 下一篇:我可以在存储过程中有一个可选的 OUTPUT 参数吗?

                  相关文章

                  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>

                    <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>