DBA Data[Home] [Help]

PACKAGE: APPS.MSD_ANALYZE_TABLES

Source


1 PACKAGE MSD_ANALYZE_TABLES AUTHID CURRENT_USER AS
2 /* $Header: msdaztbs.pls 115.0 2002/05/06 14:50:28 pkm ship        $ */
3 
4 
5     Type table_type is RECORD (
6         table_name            varchar2(30),
7         table_type            number );
8 
9     Type table_type_list is TABLE of table_type index by binary_integer;
10 
11     PROCEDURE analyze_table( p_table_name       IN VARCHAR2,
12                              p_type             IN NUMBER );
13 
14 END MSD_ANALYZE_TABLES;