DBA Data[Home] [Help]

APPS.EDW_SRC_DANG_RECOVERY dependencies on FND_STATS

Line 1038: FND_STATS.GATHER_TABLE_STATS (errbuf, retcode, l_owner, p_table,null,1);

1034: write_to_log_file_n('In analyze_table_stats. table is '||p_table||' and p_owner is '||p_owner);
1035: end if;
1036: l_owner:=p_owner;
1037: if g_src_parallel is null then
1038: FND_STATS.GATHER_TABLE_STATS (errbuf, retcode, l_owner, p_table,null,1);
1039: else
1040: FND_STATS.GATHER_TABLE_STATS (errbuf, retcode, l_owner, p_table,null,g_src_parallel);
1041: end if;
1042: if retcode <> '0' then

Line 1040: FND_STATS.GATHER_TABLE_STATS (errbuf, retcode, l_owner, p_table,null,g_src_parallel);

1036: l_owner:=p_owner;
1037: if g_src_parallel is null then
1038: FND_STATS.GATHER_TABLE_STATS (errbuf, retcode, l_owner, p_table,null,1);
1039: else
1040: FND_STATS.GATHER_TABLE_STATS (errbuf, retcode, l_owner, p_table,null,g_src_parallel);
1041: end if;
1042: if retcode <> '0' then
1043: write_to_log_file_n('FND_STATS.GATHER_TABLE_STATS status message is '||errbuf);
1044: end if;

Line 1043: write_to_log_file_n('FND_STATS.GATHER_TABLE_STATS status message is '||errbuf);

1039: else
1040: FND_STATS.GATHER_TABLE_STATS (errbuf, retcode, l_owner, p_table,null,g_src_parallel);
1041: end if;
1042: if retcode <> '0' then
1043: write_to_log_file_n('FND_STATS.GATHER_TABLE_STATS status message is '||errbuf);
1044: end if;
1045: Exception when others then
1046: g_status_message:=sqlerrm;
1047: write_to_log_file_n('Error in analyze_table_stats '||sqlerrm);