ORA-01775: looping chain of synonyms but there are no synonyms - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T23:56:03Z http://stackoverflow.com/feeds/question/253881 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/253881/ora-01775-looping-chain-of-synonyms-but-there-are-no-synonyms 0 ORA-01775: looping chain of synonyms but there are no synonyms tony 2008-10-31T15:15:49Z 2008-10-31T17:20:22Z <p>Can't figure out why I'm getting 'SQL Statement ignored' and 'ORA-01775: looping chain of synonyms' on line 52 of this stored procedure. Got any ideas?</p> <p>Thanks, Tony</p> <p>CREATE OR REPLACE PACKAGE PURGE_LOG_BY_EVENT_DAYS AS</p> <p>TYPE dual_cursorType IS REF CURSOR RETURN dual%ROWTYPE;</p> <p>PROCEDURE log_master_by_event_days (event_id NUMBER, purge_recs_older_than NUMBER, result_cursor OUT dual_cursorType);</p> <p>END PURGE_LOG_BY_EVENT_DAYS;</p> <p>/</p> <p>CREATE OR REPLACE PACKAGE BODY PURGE_LOG_BY_EVENT_DAYS AS</p> <p>err_msg VARCHAR2(4000);</p> <p>PROCEDURE log_master_by_event_days (event_id NUMBER, purge_recs_older_than NUMBER, result_cursor OUT dual_cursorType) IS</p> <p>TYPE type_rowid IS TABLE OF ROWID INDEX BY BINARY_INTEGER; TYPE type_ref_cur IS REF CURSOR;</p> <p>l_rid type_rowid; c1 type_ref_cur;</p> <p>l_sql_stmt VARCHAR2(4000); proc_start_time DATE := sysdate; purge_date DATE;</p> <p>l_bulk_collect_limit NUMBER := 1000; retry NUMBER := 5; retry_count NUMBER := 0; loop_count NUMBER := 0;</p> <p>err_code VARCHAR2(10);</p> <p>BEGIN</p> <p>purge_date := to_date(sysdate - purge_recs_older_than);</p> <p>l_sql_stmt := ''; l_sql_stmt := l_sql_stmt ||' SELECT rowid FROM LOG_MASTER '; l_sql_stmt := l_sql_stmt ||' WHERE last_changed_date &lt; :purge_date'; l_sql_stmt := l_sql_stmt ||' AND event_id = :event_id';</p> <p>-- The following while loop -- executes the purge code -- 'retry' number of times in case of ORA-01555</p> <p>WHILE retry > 0 LOOP</p> <pre><code>BEGIN -- START of purge code OPEN c1 FOR l_sql_stmt USING purge_date, event_id; LOOP FETCH c1 BULK COLLECT into l_rid LIMIT l_bulk_collect_limit; FORALL i IN 1..l_rid.COUNT DELETE from log_master WHERE rowid = l_rid(i); COMMIT; loop_count := loop_count + 1; EXIT WHEN c1%NOTFOUND; END LOOP; CLOSE c1; -- End of purge code -- if processing reached this point -- Process completed successfuly, set retry = 0 to exit loop retry := 0; EXCEPTION WHEN OTHERS THEN -- ==================================== -- Get error msg -- ==================================== ROLLBACK; err_code := sqlcode; dbms_output.put_line(err_code); -- ==================================== -- Check if it is 01555 -- if so retry, else exit loop -- ==================================== retry := retry - 1; if err_code = '-1555' and retry &gt; 0 THEN CLOSE c1; retry_count := retry_count + 1; else err_msg := sqlerrm; exit; end if; END; </code></pre> <p>END LOOP;</p> <p>IF err_msg IS NULL THEN</p> <pre><code>open result_cursor for select '1 - PURGE_LOG_BY_EVENT_DAYS ran successfully (event_id : '||event_id||', loop_count : '||loop_count||', bulk_limit : '||l_bulk_collect_limit||', retries : '||retry_count||') ' from dual; </code></pre> <p>ELSE</p> <pre><code>open result_cursor for select '2 - PURGE_LOG_BY_EVENT_DAYS After (event_id : '||event_id||', loop_count : '||loop_count||', bulk_limit : '||l_bulk_collect_limit||', retries : '||retry_count||') with Error: ' || err_msg from dual; </code></pre> <p>END IF;</p> <p>END log_master_by_event_days;</p> <p>END PURGE_LOG_BY_EVENT_DAYS;</p> <p>/</p> http://stackoverflow.com/questions/253881/ora-01775-looping-chain-of-synonyms-but-there-are-no-synonyms/253889#253889 1 Answer by warren for ORA-01775: looping chain of synonyms but there are no synonyms warren 2008-10-31T15:18:23Z 2008-10-31T15:18:23Z <p>Do the answers from here: <a href="http://stackoverflow.com/questions/247090/how-to-debug-ora-01775-looping-chain-of-synonyms">http://stackoverflow.com/questions/247090/how-to-debug-ora-01775-looping-chain-of-synonyms</a> help?</p> http://stackoverflow.com/questions/253881/ora-01775-looping-chain-of-synonyms-but-there-are-no-synonyms/253909#253909 0 Answer by tony for ORA-01775: looping chain of synonyms but there are no synonyms tony 2008-10-31T15:27:29Z 2008-10-31T15:27:29Z <p>SELECT table_owner, table_name, db_link FROM dba_synonyms WHERE owner = 'PUBLIC' and db_link is not null</p> <p>returns 0 rows as far as i know, there are no synonyms.</p> http://stackoverflow.com/questions/253881/ora-01775-looping-chain-of-synonyms-but-there-are-no-synonyms/254275#254275 1 Answer by Dave Costa for ORA-01775: looping chain of synonyms but there are no synonyms Dave Costa 2008-10-31T17:20:22Z 2008-10-31T17:20:22Z <p>I have no idea why you're getting the synonym error. But that's a lot of code for something that should be a single DELETE statement. I assume you've changed it to commit-every-n to avoid rollback errors. It would be nice if you could get your DBA to increase the undo space so you can actually do the work you need to do. Failing that, I think you can still make it much simpler:</p> <pre><code>LOOP DELETE FROM log_master WHERE last_changed_date &lt; :purge_date AND event_id = :event_id AND rownum &lt;= :batch_delete_limit USING purge_date, event_id, l_bulk_collect_limit; EXIT WHEN SQL%NOTFOUND; END LOOP; </code></pre> <p>And you can throw your retry logic around that if you want.</p> <p>Apologies if I've missed some subtlety that makes this different from what you're doing.</p>