Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.

SAP Sybase SQL Anywhere 16.0 (中文) » SQL Anywhere 服务器 - SQL 用法 » 性能提高、诊断和监控 » 性能监控和诊断工具 » 其它诊断工具和技术 » 使用系统过程进行过程分析

 

启用过程分析 (SQL)

可使用 sa_server_option 系统过程来启用过程分析。

前提条件

您必须具有 DIAGNOSTICS 系统角色和 MANAGE PROFILING 系统特权。

 任务
  1. 连接到数据库。

  2. 调用 sa_server_option 系统过程,将 ProcedureProfiling 选项设置为 ON。

    例如,执行以下 CALL 语句:

    CALL sa_server_option( 'ProcedureProfiling' , 'ON' );

结果

过程分析已启用。

 另请参见