Proceso de Estadisticas Base de Datos EBS 12

You might also like

Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 3

Proceso de Estadísticas base de datos EBS 12

Gathering Statistics for the EBS 12


Oracle E-Business Suite provides concurrent programs that use the package
FND_STATS to gather statistics for your applications database objects. For information
on DBMS_STATS, see Oracle Supplied PL/SQL Packages Manual.

The following concurrent programs are available for collecting and maintaining
statistics:

 Gather Table Statistics


 Backup Table Statistics
 Restore Table Statistics
 Gather Schema Statistics
 Purge FND_STATS History Records

Gather Schema Statistics


This concurrent program gathers the specified schema level statistics.

Before gathering the statistics, this program can also create a backup of the current
statistics, depending on the value of the Backup Flag. If for some reason, the earlier
statistics need to be restored, that can be done using the Restore Schema Statistics
concurrent program. The STATID used for this backup is NULL.

This program also creates histograms on the columns seeded in the


FND_HISTOGRAM_COLS table.

For a detailed description of the procedure used by this concurrent program, see
information on the GATHER_SCHEMA_STATS procedure.
Entrar al servidor de la base de datos de la plataforma del EBS
Al servidor: 192.168.0.203

Una vez dentro del servidor de Base de datos del ESB


Tecleamos el comando: sqlplus / as sysdba y validamos la base de datos del EBS

Verificamos la programación de las estadísticas


Corres las estadísticas con los siguientes parámetros:
EXEC DBMS_STATS.GATHER_DATABASE_STATS(ESTIMATE_PERCENT => DBMS_STATS.AUTO_SAMPLE_SIZE,
METHOD_OPT => 'FOR ALL COLUMNS SIZE AUTO', DEGREE => 2, CASCADE => TRUE);

Salida del proceso

#!/bin/bash
/* _______________________________________________________ {COPYRIGHT-TOP} _____
* IBM Confidencial
* Materiales de origen OCO
*
* 5725-E59
*
* (C) Copyright IBM Corp. 2007, 2014 Reservados todos los derechos.
*
* El código fuente de este programa no está publicado o de otro modo
* despojado de sus secretos comerciales, independientemente de lo que
* se haya depositado en la Oficina de Copyrights de EE.UU.
* ________________________________________________________ {COPYRIGHT-END} _____*/

Resumen estadísticas
+---------------------------------------------------------------------------+
Application Object Library: Version : 12.0.0

Copyright (c) 1979, 1999, Oracle Corporation. All rights reserved.

FNDGSCST module: Recopilar Estadísticas de Esquema


+---------------------------------------------------------------------------+

Hora actual del sistema: 01-ABR-2023 21:38:11

+---------------------------------------------------------------------------+

**Starts**01-ABR-2023 21:38:11

You might also like