DBA Data[Home] [Help]

APPS.MSD_ANALYZE_TABLES dependencies on FND_FILE

Line 135: fnd_file.put_line(fnd_file.log, l_messg);

131: for j IN l_table_type.FIRST..l_table_type.LAST LOOP
132: if p_table_name is not null and p_table_name = l_table_type(j).table_name then
133: l_messg := 'Analyzing table ' || p_table_name;
134: -- dbms_output.put_line(l_messg);
135: fnd_file.put_line(fnd_file.log, l_messg);
136: fnd_stats.gather_table_stats('MSD', p_table_name, 10, 4);
137:
138: elsif p_type = l_table_type(j).table_type or p_type = 0 then
139:

Line 143: fnd_file.put_line(fnd_file.log, l_messg);

139:
140: /* 09/17/2002 - Changed spelling in message - Pinamati */
141: l_messg := 'Analyzing table ' || l_table_type(j).table_name;
142: -- dbms_output.put_line(l_messg);
143: fnd_file.put_line(fnd_file.log, l_messg);
144: fnd_stats.gather_table_stats('MSD', l_table_type(j).table_name, 10, 4);
145: end if;
146: end loop;
147: