{"id":243329,"date":"2025-09-04T13:27:00","date_gmt":"2025-09-04T20:27:00","guid":{"rendered":"https:\/\/virtual-dba.com\/?p=243329"},"modified":"2025-10-01T11:10:07","modified_gmt":"2025-10-01T18:10:07","slug":"using-analyzer-for-ebs-performance-and-statistics","status":"publish","type":"post","link":"https:\/\/virtual-dba.com\/blog\/using-analyzer-for-ebs-performance-and-statistics\/","title":{"rendered":"Using Analyzer for EBS Performance and Statistics"},"content":{"rendered":"\n<h2 class=\"wp-block-heading\" id=\"h-summary\">SUMMARY: <\/h2>\n\n\n\n<p>Oracle&#8217;s EBS Performance and Statistics Analyzer is a crucial support utility that helps Database Administrators (DBAs) diagnose and enhance the performance of an Oracle E-Business Suite (EBS) database by generating detailed health reports and actionable recommendations. This guide explains how to prepare the environment, download and run the tool, and interpret the results to resolve issues proactively.<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>The analyzer must be run from the application tier, not the database tier, and requires the APPS user to have specific grants to access internal data dictionary views.<\/li>\n\n\n\n<li>The output is an HTML dashboard that categorizes findings by criticality, allowing users to focus on errors and warnings related to database parameters, WebLogic servers, and other configurations.<\/li>\n\n\n\n<li>Beyond diagnostics, the tool collects valuable point-in-time data, including JDBC connection metrics, recent EBS program performance, and installed product patch levels.<\/li>\n<\/ul>\n\n\n\n<p>By running this analyzer regularly, such as quarterly or bi-annually, DBAs can stay ahead of performance degradation and maintain a healthy, optimized E-Business Suite environment.<\/p>\n\n\n\n<div class=\"wp-block-yoast-seo-table-of-contents yoast-table-of-contents\"><h2>Table of contents<\/h2><ul><li><a href=\"#h-summary\" data-level=\"2\">SUMMARY:<\/a><\/li><li><a href=\"#h-preparing-the-apps-user-for-analyzer-access\" data-level=\"2\">Preparing the APPS User for Analyzer Access<\/a><\/li><li><a href=\"#h-steps-to-use-the-analyzer\" data-level=\"2\">Steps to Use the Analyzer<\/a><ul><li><a href=\"#h-1-download-analyzer\" data-level=\"3\">1. Download Analyzer<\/a><\/li><li><a href=\"#h-2-validate-version\" data-level=\"3\">2. Validate Version<\/a><\/li><li><a href=\"#h-3-prepare-ebs-environment\" data-level=\"3\">3. Prepare EBS Environment<\/a><\/li><li><a href=\"#h-4-unzip-analyzer\" data-level=\"3\">4. Unzip Analyzer<\/a><\/li><li><a href=\"#h-5-check-database-connectivity\" data-level=\"3\">5. Check Database Connectivity<\/a><\/li><li><a href=\"#h-6-run-analyzer\" data-level=\"3\">6. Run Analyzer<\/a><\/li><li><a href=\"#h-7-transfer-and-review-output\" data-level=\"3\">7. Transfer and Review Output<\/a><\/li><\/ul><\/li><li><a href=\"#h-important-notes\" data-level=\"2\">Important Notes<\/a><\/li><li><a href=\"#h-analyzer-results\" data-level=\"2\">Analyzer Results<\/a><\/li><li><a href=\"#h-data-view\" data-level=\"2\">Data View<\/a><\/li><li><a href=\"#h-conclusion\" data-level=\"2\">Conclusion<\/a><\/li><li><a href=\"#h-related-links\" data-level=\"2\">Related Links<\/a><\/li><\/ul><\/div>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-\"><\/h2>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-preparing-the-apps-user-for-analyzer-access\">Preparing the APPS User for Analyzer Access<\/h2>\n\n\n\n<p>After our initial test run, we discovered that the analyzer expects the APPS user to have specific access to various internal data dictionary views. These grants should be applied in advance:<\/p>\n\n\n\n<pre class=\"wp-block-code\"><code> CREATE OR REPLACE PUBLIC SYNONYM \"V$SYSTEM_PARAMETER2\" FOR \"SYS\".\"V_$SYSTEM_PARAMETER2\";\n GRANT SELECT ON sys.V_$SYSTEM_PARAMETER2 TO apps;\n GRANT SELECT ON sys.aux_stats$ TO apps;\n GRANT SELECT ON DBA_STAT_EXTENSIONS TO apps;\n GRANT SELECT ON dba_tables TO apps;\n GRANT SELECT ON WRI$_OPTSTAT_TAB_HISTORY TO apps;\n GRANT SELECT ON WRI$_OPTSTAT_IND_HISTORY TO apps;\n GRANT SELECT ON DBA_INDEXES TO apps;\n GRANT SELECT ON DBA_OBJECTS TO apps;\n GRANT SELECT ON sys.V_$CELL_STATE TO apps;<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-steps-to-use-the-analyzer\">Steps to Use the Analyzer<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-1-download-analyzer\">1. Download Analyzer<\/h3>\n\n\n\n<p>Navigate to Doc ID 2126712.1 and download the latest version of fndperf_analyzer_&lt;version&gt;.zip. Transfer it to your EBS Application Server.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-2-validate-version\">2. Validate Version<\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>unzip -p fndperf_analyzer_200.67.zip HAF\/resource\/fndperf_analyzer.xml | base64 -d -i | grep '&lt;version&gt;'<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-3-prepare-ebs-environment\">3. Prepare EBS Environment<\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>. EBSapps.env run<br>env<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-4-unzip-analyzer\">4. Unzip Analyzer<\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>mkdir \/tmp\/ebs_analyzer\nmv fndperf_analyzer_200.67.zip \/tmp\/ebs_analyzer\/\ncd \/tmp\/ebs_analyzer\nunzip fndperf_analyzer_200.67.zip<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-5-check-database-connectivity\">5. Check Database Connectivity<\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>tnsping &#91;hostname]:&#91;port:default:1521]\/&#91;db_service_name]<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-6-run-analyzer\">6. Run Analyzer<\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>cd HAF\n bash run_analyzer.sh -Danalyzer=\"fndperf_analyzer.xml\" -DappsCredentials=\"apps\/&#91;password]\"<\/code><\/pre>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-7-transfer-and-review-output\">7. Transfer and Review Output<\/h3>\n\n\n\n<pre class=\"wp-block-code\"><code>ls -latrh FND*.zip\n cp FNDPERF_*.zip \/home\/&#91;username]\n unzip FNDPERF_&lt;date&gt;.zip -d \/your\/local\/dir\n open FNDPERF_&lt;date&gt;.html<\/code><\/pre>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-important-notes\">Important Notes<\/h2>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Do not run this from the database tier. It must be executed from the application tier due to context file requirements.<\/li>\n\n\n\n<li>Make sure Java is available and your APPS environment is sourced.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-analyzer-results\">Analyzer Results<\/h2>\n\n\n\n<p>Once you open <code>FNDPERF_&lt;date&gt;.html<\/code>, you will be presented with this Dashboard.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"577\" height=\"229\" src=\"https:\/\/virtual-dba.com\/wp-content\/uploads\/1-Using-Analyzer-for-EBS-Performance-and-Statistics-Dashboard.png\" alt=\"Using Analyzer for EBS Performance and Statistics Dashboard\" class=\"wp-image-243337\" srcset=\"https:\/\/virtual-dba.com\/wp-content\/uploads\/1-Using-Analyzer-for-EBS-Performance-and-Statistics-Dashboard.png 577w, https:\/\/virtual-dba.com\/wp-content\/uploads\/1-Using-Analyzer-for-EBS-Performance-and-Statistics-Dashboard-480x191.png 480w\" sizes=\"(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) 577px, 100vw\" \/><\/figure>\n\n\n\n<p>The <strong>Executive Summary<\/strong> presents all findings by Criticality, allowing you to navigate and focus on <strong>Errors<\/strong> and <strong>Warnings<\/strong>.<\/p>\n\n\n\n<p>In our example, we have four errors and seven warnings, divided into categories of :<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Installation General<\/li>\n\n\n\n<li>Database<\/li>\n\n\n\n<li>Database Parameters<\/li>\n\n\n\n<li>WebLogic Managed Servers Validation<\/li>\n\n\n\n<li>Critical Alerts<\/li>\n\n\n\n<li>Script Outputs<\/li>\n<\/ul>\n\n\n\n<p>Clicking on <strong>Errors<\/strong> under Executive Summary takes us to the Errors Signature page.<\/p>\n\n\n\n<p>The Menu bar on the left will present the categories of issues to be addressed.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"148\" height=\"295\" src=\"https:\/\/virtual-dba.com\/wp-content\/uploads\/2-Using-Analyzer-for-EBS-Performance-and-Statistics-Errors.png\" alt=\"Using Analyzer for EBS Performance and Statistics Errors\" class=\"wp-image-243338\"\/><\/figure>\n\n\n\n<p>You will see this image on the various screens. This indicates a closed\/collapsed section, and you should click it to expand and get more information.<\/p>\n\n\n\n<p>Let&#8217;s look at our <strong>Mandatory Database Parameters for RDBMS 19.26.0.0<\/strong>.<\/p>\n\n\n\n<p>As you can see, the tool takes into consideration the whole patch level of both the database and EBS, as indicated by the message:<\/p>\n\n\n\n<p><strong><mark style=\"background-color:rgba(0, 0, 0, 0)\" class=\"has-inline-color has-vivid-red-color\">Error: <\/mark><\/strong>Not all mandatory database parameters are properly set for RDBMS <mark style=\"background-color:#00d084\" class=\"has-inline-color\">19.26.0.0.0<\/mark> and EBS release <mark style=\"background-color:#00d084\" class=\"has-inline-color\">12.2.14<\/mark>.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"577\" height=\"208\" src=\"https:\/\/virtual-dba.com\/wp-content\/uploads\/3-Using-Analyzer-for-EBS-Performance-and-Statistics-Error-Signatures.png\" alt=\"Using Analyzer for EBS Performance and Statistics Error Signatures\" class=\"wp-image-243340\" srcset=\"https:\/\/virtual-dba.com\/wp-content\/uploads\/3-Using-Analyzer-for-EBS-Performance-and-Statistics-Error-Signatures.png 577w, https:\/\/virtual-dba.com\/wp-content\/uploads\/3-Using-Analyzer-for-EBS-Performance-and-Statistics-Error-Signatures-480x173.png 480w\" sizes=\"(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) 577px, 100vw\" \/><\/figure>\n\n\n\n<p>When you first navigate to this page, you cannot see the details as it is collapsed. <\/p>\n\n\n\n<p>Click on the carrot to expand information and view all version-specific issues.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"576\" height=\"364\" src=\"https:\/\/virtual-dba.com\/wp-content\/uploads\/4-Using-Analyzer-for-EBS-Performance-and-Statistics-Error-Signatures-Version-Specific-Issues.png\" alt=\"Using Analyzer for EBS Performance and Statistics Error Signatures Version-Specific Issues\" class=\"wp-image-243339\" srcset=\"https:\/\/virtual-dba.com\/wp-content\/uploads\/4-Using-Analyzer-for-EBS-Performance-and-Statistics-Error-Signatures-Version-Specific-Issues.png 576w, https:\/\/virtual-dba.com\/wp-content\/uploads\/4-Using-Analyzer-for-EBS-Performance-and-Statistics-Error-Signatures-Version-Specific-Issues-480x303.png 480w\" sizes=\"(min-width: 0px) and (max-width: 480px) 480px, (min-width: 481px) 576px, 100vw\" \/><\/figure>\n\n\n\n<p>On all findings, Oracle Support has provided the source for the information under <strong>Findings and Recommendations<\/strong>.<\/p>\n\n\n\n<p>In this case, Review Doc ID 396009.1 for parameters listed in the &#8220;Common Database Initialization Parameters For All Releases&#8221; section.<\/p>\n\n\n\n<p>Now we know that out of our 4 Errors on the Executive Summary Page, One Error is related to improperly configured Mandatory Database parameters for EBS. We see that we have 11 parameters that need correction to fix this one error.<\/p>\n\n\n\n<p>To get back to the Dashboard, click the Home button on the top menu bar.<\/p>\n\n\n\n<p>All Errors and Warnings pages work the same way.<\/p>\n\n\n\n<p>You will see the summary of issues in the left menu pane. Select each one to access its page, and then expand the information. Use the <strong>Findings and Recommendations<\/strong> to get to the source documentation that validates these findings.<\/p>\n\n\n\n<p>You should validate and correct these issues until you get a clean dashboard with no errors and warnings, except for any exceptions unique to your environment that might override.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-data-view\">Data View<\/h2>\n\n\n\n<p>It turns out that the tool not only analyzes your environment but also collects a large amount of point-in-time data about it, along with backup copies of critical configuration files, including the Context File and WLS config.xml.<\/p>\n\n\n\n<p>A few HIDDEN GEMS in Data View:<\/p>\n\n\n\n<p>It runs and captures results from <strong><code>monitor_jdbc_conn.sql<\/code><\/strong>, which provides extensive details on your environment&#8217;s JDBC Connections. Here are just a few of the performance metrics it collects on the JDBC:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>Connection Usage Per Module<\/li>\n\n\n\n<li>Idle connections for more than 3 hours<\/li>\n\n\n\n<li>Active connections that are taking more than 10 minutes to run<\/li>\n\n\n\n<li>Statements from JDBC connections taking more than 10 minutes to run<\/li>\n<\/ul>\n\n\n\n<p>It gathers <strong>EBS Program information for the last 15 day<\/strong>s, including Maximum Time (in minutes) and execution counts. You can evaluate this to determine where the EBS application performance issues are.<\/p>\n\n\n\n<p>It captures <strong>Installed Products<\/strong> with Patch Level and status.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-conclusion\">Conclusion<\/h2>\n\n\n\n<p>The Oracle EBS Performance and Statistics Analyzer is a powerful diagnostic utility. When combined with proactive tuning and the proper privileges, it provides actionable insights for E-Business Suite database optimization.<\/p>\n\n\n\n<p><em>XTIVIA recommends adding this analyzer to your quarterly or bi-annual maintenance checklist to stay ahead of performance degradation and support requirements.<\/em><\/p>\n\n\n\n<p><em>For help running the analyzer or interpreting its results, contact our Oracle EBS experts.<\/em><\/p>\n\n\n\n<p><strong>Please contact us for any questions.<\/strong><\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-related-links\">Related Links<\/h2>\n\n\n\n<ul class=\"wp-block-yoast-seo-related-links yoast-seo-related-links\">\n<li><a href=\"https:\/\/virtual-dba.com\/oracle-ebs-services\/\">Oracle EBS Services<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/virtual-dba.com\/platforms\/oracle\/oracle-ebs\/\">Oracle e-business suite (EBS) Services<\/a><\/li>\n<\/ul>\n","protected":false},"excerpt":{"rendered":"<p>This blog will walk you through how to prepare your EBS environment, run the analyzer, and provide an overview of the results. We&#8217;ll also share XTIVIA&#8217;s hands-on experience running this analyzer in a test EBS instance.<\/p>\n","protected":false},"author":72,"featured_media":243362,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_et_pb_use_builder":"off","_et_pb_old_content":"","_et_gb_content_width":"","content-type":"","footnotes":""},"categories":[4166,3918,23],"tags":[4204,1145,1146,4147],"class_list":["post-243329","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-blog","category-database","category-oracle","tag-database","tag-oracle","tag-oracle-database","tag-oracle-performance-tuning"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.1 (Yoast SEO v27.1.1) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Using Analyzer for EBS Performance and Statistics - VDBA<\/title>\n<meta name=\"description\" content=\"Optimize EBS performance with Oracle&#039;s EBS Performance Analyzer. Get expert insights and best practices. Learn more!\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/virtual-dba.com\/blog\/using-analyzer-for-ebs-performance-and-statistics\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Using Analyzer for EBS Performance and Statistics\" \/>\n<meta property=\"og:description\" content=\"Optimize EBS performance with Oracle&#039;s EBS Performance Analyzer. Get expert insights and best practices. Learn more!\" \/>\n<meta property=\"og:url\" content=\"https:\/\/virtual-dba.com\/blog\/using-analyzer-for-ebs-performance-and-statistics\/\" \/>\n<meta property=\"og:site_name\" content=\"Virtual-DBA Remote DBA Services &amp; Support - Certified Database Experts\" \/>\n<meta property=\"article:published_time\" content=\"2025-09-04T20:27:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-10-01T18:10:07+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/virtual-dba.com\/wp-content\/uploads\/Using-Analyzer-for-EBS-Performance-and-Statistics.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"557\" \/>\n\t<meta property=\"og:image:height\" content=\"291\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Jeremy Perkins\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@virtual_dba\" \/>\n<meta name=\"twitter:site\" content=\"@virtual_dba\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Jeremy Perkins\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":[\"Article\",\"BlogPosting\"],\"@id\":\"https:\/\/virtual-dba.com\/blog\/using-analyzer-for-ebs-performance-and-statistics\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/virtual-dba.com\/blog\/using-analyzer-for-ebs-performance-and-statistics\/\"},\"author\":{\"name\":\"Jeremy Perkins\",\"@id\":\"https:\/\/virtual-dba.com\/#\/schema\/person\/b4e695aa96fc9b49581379938c82c822\"},\"headline\":\"Using Analyzer for EBS Performance and Statistics\",\"datePublished\":\"2025-09-04T20:27:00+00:00\",\"dateModified\":\"2025-10-01T18:10:07+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/virtual-dba.com\/blog\/using-analyzer-for-ebs-performance-and-statistics\/\"},\"wordCount\":910,\"publisher\":{\"@id\":\"https:\/\/virtual-dba.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/virtual-dba.com\/blog\/using-analyzer-for-ebs-performance-and-statistics\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/virtual-dba.com\/wp-content\/uploads\/Using-Analyzer-for-EBS-Performance-and-Statistics.jpg\",\"keywords\":[\"database\",\"Oracle\",\"Oracle Database\",\"oracle performance tuning\"],\"articleSection\":[\"Blog\",\"Database\",\"Oracle\"],\"inLanguage\":\"en-US\",\"accessibilityFeature\":[\"tableOfContents\"]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/virtual-dba.com\/blog\/using-analyzer-for-ebs-performance-and-statistics\/\",\"url\":\"https:\/\/virtual-dba.com\/blog\/using-analyzer-for-ebs-performance-and-statistics\/\",\"name\":\"Using Analyzer for EBS Performance and Statistics - VDBA\",\"isPartOf\":{\"@id\":\"https:\/\/virtual-dba.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/virtual-dba.com\/blog\/using-analyzer-for-ebs-performance-and-statistics\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/virtual-dba.com\/blog\/using-analyzer-for-ebs-performance-and-statistics\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/virtual-dba.com\/wp-content\/uploads\/Using-Analyzer-for-EBS-Performance-and-Statistics.jpg\",\"datePublished\":\"2025-09-04T20:27:00+00:00\",\"dateModified\":\"2025-10-01T18:10:07+00:00\",\"description\":\"Optimize EBS performance with Oracle's EBS Performance Analyzer. Get expert insights and best practices. Learn more!\",\"breadcrumb\":{\"@id\":\"https:\/\/virtual-dba.com\/blog\/using-analyzer-for-ebs-performance-and-statistics\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/virtual-dba.com\/blog\/using-analyzer-for-ebs-performance-and-statistics\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/virtual-dba.com\/blog\/using-analyzer-for-ebs-performance-and-statistics\/#primaryimage\",\"url\":\"https:\/\/virtual-dba.com\/wp-content\/uploads\/Using-Analyzer-for-EBS-Performance-and-Statistics.jpg\",\"contentUrl\":\"https:\/\/virtual-dba.com\/wp-content\/uploads\/Using-Analyzer-for-EBS-Performance-and-Statistics.jpg\",\"width\":557,\"height\":291,\"caption\":\"Using Analyzer for EBS Performance and Statistics\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/virtual-dba.com\/blog\/using-analyzer-for-ebs-performance-and-statistics\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/virtual-dba.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Using Analyzer for EBS Performance and Statistics\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/virtual-dba.com\/#website\",\"url\":\"https:\/\/virtual-dba.com\/\",\"name\":\"Virtual-DBA Remote DBA Services &amp; Support - Certified Database Experts\",\"description\":\"Remote Database Administration\",\"publisher\":{\"@id\":\"https:\/\/virtual-dba.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/virtual-dba.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/virtual-dba.com\/#organization\",\"name\":\"Virtual-DBA: Remote DBA | Remote Database Administration\",\"alternateName\":\"Virtual-DBA powered by XTIVIA\",\"url\":\"https:\/\/virtual-dba.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/virtual-dba.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/virtual-dba.com\/wp-content\/uploads\/V-DBA-Database-Services-and-Support-Featured-Logo.jpg\",\"contentUrl\":\"https:\/\/virtual-dba.com\/wp-content\/uploads\/V-DBA-Database-Services-and-Support-Featured-Logo.jpg\",\"width\":557,\"height\":291,\"caption\":\"Virtual-DBA: Remote DBA | Remote Database Administration\"},\"image\":{\"@id\":\"https:\/\/virtual-dba.com\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/x.com\/virtual_dba\",\"https:\/\/www.linkedin.com\/showcase\/36220649\/\",\"https:\/\/www.youtube.com\/channel\/UCx3AIeUQ2ziTLKZSJDZ-SEg\"],\"description\":\"Eliminate database downtime and spiraling costs with XTIVIA\u2019s Virtual-DBA. In today\u2019s always-on business world, gaps in 24x7 on-call DBA support, neglected maintenance and security, or a stretched team struggling with overwhelming workloads can lead to costly disruptions and threaten business continuity. XTIVIA\u2019s Virtual-DBA provides the immediate, expert database administration you need, exactly when you need it, ensuring optimal performance, ironclad security, and significant cost savings without the burden of expanding your in-house team. The goal of Virtual-DBA is to provide a cost-effective solution for organizations seeking to optimize the security, management, maintenance, availability, and performance of their critical business systems, whether self-managed or cloud-managed (e.g., AWS RDS, Azure SQL Database). We accomplish this through a comprehensive remote DBA service offering designed specifically to meet the Oracle\u00ae, DB2\u00ae, Informix\u00ae, MySQL\u2122, PostgreSQL\u00ae, MongoDB\u00ae, MariaDB, and Microsoft SQL Server\u00ae, CockroachDB, Databricks, AWS, and Azure needs of our clients.\",\"email\":\"info@xtivia.com\",\"telephone\":\"8886853101\",\"legalName\":\"XTIVIA, Inc\",\"foundingDate\":\"1992-05-01\",\"numberOfEmployees\":{\"@type\":\"QuantitativeValue\",\"minValue\":\"201\",\"maxValue\":\"500\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/virtual-dba.com\/#\/schema\/person\/b4e695aa96fc9b49581379938c82c822\",\"name\":\"Jeremy Perkins\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/virtual-dba.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/a029bd365aa1915eb28375baac151005d1db6be13a68d374fb2a9855c928e1f9?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/a029bd365aa1915eb28375baac151005d1db6be13a68d374fb2a9855c928e1f9?s=96&d=mm&r=g\",\"caption\":\"Jeremy Perkins\"},\"url\":\"https:\/\/virtual-dba.com\/author\/jeremy-perkins\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Using Analyzer for EBS Performance and Statistics - VDBA","description":"Optimize EBS performance with Oracle's EBS Performance Analyzer. Get expert insights and best practices. Learn more!","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/virtual-dba.com\/blog\/using-analyzer-for-ebs-performance-and-statistics\/","og_locale":"en_US","og_type":"article","og_title":"Using Analyzer for EBS Performance and Statistics","og_description":"Optimize EBS performance with Oracle's EBS Performance Analyzer. Get expert insights and best practices. Learn more!","og_url":"https:\/\/virtual-dba.com\/blog\/using-analyzer-for-ebs-performance-and-statistics\/","og_site_name":"Virtual-DBA Remote DBA Services &amp; Support - Certified Database Experts","article_published_time":"2025-09-04T20:27:00+00:00","article_modified_time":"2025-10-01T18:10:07+00:00","og_image":[{"width":557,"height":291,"url":"https:\/\/virtual-dba.com\/wp-content\/uploads\/Using-Analyzer-for-EBS-Performance-and-Statistics.jpg","type":"image\/jpeg"}],"author":"Jeremy Perkins","twitter_card":"summary_large_image","twitter_creator":"@virtual_dba","twitter_site":"@virtual_dba","twitter_misc":{"Written by":"Jeremy Perkins","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":["Article","BlogPosting"],"@id":"https:\/\/virtual-dba.com\/blog\/using-analyzer-for-ebs-performance-and-statistics\/#article","isPartOf":{"@id":"https:\/\/virtual-dba.com\/blog\/using-analyzer-for-ebs-performance-and-statistics\/"},"author":{"name":"Jeremy Perkins","@id":"https:\/\/virtual-dba.com\/#\/schema\/person\/b4e695aa96fc9b49581379938c82c822"},"headline":"Using Analyzer for EBS Performance and Statistics","datePublished":"2025-09-04T20:27:00+00:00","dateModified":"2025-10-01T18:10:07+00:00","mainEntityOfPage":{"@id":"https:\/\/virtual-dba.com\/blog\/using-analyzer-for-ebs-performance-and-statistics\/"},"wordCount":910,"publisher":{"@id":"https:\/\/virtual-dba.com\/#organization"},"image":{"@id":"https:\/\/virtual-dba.com\/blog\/using-analyzer-for-ebs-performance-and-statistics\/#primaryimage"},"thumbnailUrl":"https:\/\/virtual-dba.com\/wp-content\/uploads\/Using-Analyzer-for-EBS-Performance-and-Statistics.jpg","keywords":["database","Oracle","Oracle Database","oracle performance tuning"],"articleSection":["Blog","Database","Oracle"],"inLanguage":"en-US","accessibilityFeature":["tableOfContents"]},{"@type":"WebPage","@id":"https:\/\/virtual-dba.com\/blog\/using-analyzer-for-ebs-performance-and-statistics\/","url":"https:\/\/virtual-dba.com\/blog\/using-analyzer-for-ebs-performance-and-statistics\/","name":"Using Analyzer for EBS Performance and Statistics - VDBA","isPartOf":{"@id":"https:\/\/virtual-dba.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/virtual-dba.com\/blog\/using-analyzer-for-ebs-performance-and-statistics\/#primaryimage"},"image":{"@id":"https:\/\/virtual-dba.com\/blog\/using-analyzer-for-ebs-performance-and-statistics\/#primaryimage"},"thumbnailUrl":"https:\/\/virtual-dba.com\/wp-content\/uploads\/Using-Analyzer-for-EBS-Performance-and-Statistics.jpg","datePublished":"2025-09-04T20:27:00+00:00","dateModified":"2025-10-01T18:10:07+00:00","description":"Optimize EBS performance with Oracle's EBS Performance Analyzer. Get expert insights and best practices. Learn more!","breadcrumb":{"@id":"https:\/\/virtual-dba.com\/blog\/using-analyzer-for-ebs-performance-and-statistics\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/virtual-dba.com\/blog\/using-analyzer-for-ebs-performance-and-statistics\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/virtual-dba.com\/blog\/using-analyzer-for-ebs-performance-and-statistics\/#primaryimage","url":"https:\/\/virtual-dba.com\/wp-content\/uploads\/Using-Analyzer-for-EBS-Performance-and-Statistics.jpg","contentUrl":"https:\/\/virtual-dba.com\/wp-content\/uploads\/Using-Analyzer-for-EBS-Performance-and-Statistics.jpg","width":557,"height":291,"caption":"Using Analyzer for EBS Performance and Statistics"},{"@type":"BreadcrumbList","@id":"https:\/\/virtual-dba.com\/blog\/using-analyzer-for-ebs-performance-and-statistics\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/virtual-dba.com\/"},{"@type":"ListItem","position":2,"name":"Using Analyzer for EBS Performance and Statistics"}]},{"@type":"WebSite","@id":"https:\/\/virtual-dba.com\/#website","url":"https:\/\/virtual-dba.com\/","name":"Virtual-DBA Remote DBA Services &amp; Support - Certified Database Experts","description":"Remote Database Administration","publisher":{"@id":"https:\/\/virtual-dba.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/virtual-dba.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/virtual-dba.com\/#organization","name":"Virtual-DBA: Remote DBA | Remote Database Administration","alternateName":"Virtual-DBA powered by XTIVIA","url":"https:\/\/virtual-dba.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/virtual-dba.com\/#\/schema\/logo\/image\/","url":"https:\/\/virtual-dba.com\/wp-content\/uploads\/V-DBA-Database-Services-and-Support-Featured-Logo.jpg","contentUrl":"https:\/\/virtual-dba.com\/wp-content\/uploads\/V-DBA-Database-Services-and-Support-Featured-Logo.jpg","width":557,"height":291,"caption":"Virtual-DBA: Remote DBA | Remote Database Administration"},"image":{"@id":"https:\/\/virtual-dba.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/x.com\/virtual_dba","https:\/\/www.linkedin.com\/showcase\/36220649\/","https:\/\/www.youtube.com\/channel\/UCx3AIeUQ2ziTLKZSJDZ-SEg"],"description":"Eliminate database downtime and spiraling costs with XTIVIA\u2019s Virtual-DBA. In today\u2019s always-on business world, gaps in 24x7 on-call DBA support, neglected maintenance and security, or a stretched team struggling with overwhelming workloads can lead to costly disruptions and threaten business continuity. XTIVIA\u2019s Virtual-DBA provides the immediate, expert database administration you need, exactly when you need it, ensuring optimal performance, ironclad security, and significant cost savings without the burden of expanding your in-house team. The goal of Virtual-DBA is to provide a cost-effective solution for organizations seeking to optimize the security, management, maintenance, availability, and performance of their critical business systems, whether self-managed or cloud-managed (e.g., AWS RDS, Azure SQL Database). We accomplish this through a comprehensive remote DBA service offering designed specifically to meet the Oracle\u00ae, DB2\u00ae, Informix\u00ae, MySQL\u2122, PostgreSQL\u00ae, MongoDB\u00ae, MariaDB, and Microsoft SQL Server\u00ae, CockroachDB, Databricks, AWS, and Azure needs of our clients.","email":"info@xtivia.com","telephone":"8886853101","legalName":"XTIVIA, Inc","foundingDate":"1992-05-01","numberOfEmployees":{"@type":"QuantitativeValue","minValue":"201","maxValue":"500"}},{"@type":"Person","@id":"https:\/\/virtual-dba.com\/#\/schema\/person\/b4e695aa96fc9b49581379938c82c822","name":"Jeremy Perkins","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/virtual-dba.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/a029bd365aa1915eb28375baac151005d1db6be13a68d374fb2a9855c928e1f9?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/a029bd365aa1915eb28375baac151005d1db6be13a68d374fb2a9855c928e1f9?s=96&d=mm&r=g","caption":"Jeremy Perkins"},"url":"https:\/\/virtual-dba.com\/author\/jeremy-perkins\/"}]}},"_links":{"self":[{"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/posts\/243329","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/users\/72"}],"replies":[{"embeddable":true,"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/comments?post=243329"}],"version-history":[{"count":0,"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/posts\/243329\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/media\/243362"}],"wp:attachment":[{"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/media?parent=243329"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/categories?post=243329"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/virtual-dba.com\/wp-json\/wp\/v2\/tags?post=243329"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}