Comments are available to members only. Sign up or Log in to view these comments.
Main Topics
Browse All TopicsI am testing a simple code using Dynamic Cursor. But it gives this run time error.
SQL> @Tr1.sql
WHERE STATUS IN ('I','N')
*
ERROR at line 34:
ORA-06550: line 34, column 20:
PLS-00103: Encountered the symbol "I" when expecting one of the following:
. ( * @ % & = - + ; < / > at in is mod not rem
<an exponent (**)> <> or != or ~= >= <= <> and or like
between ||
My code is
TYPE CUR_TYP IS REF CURSOR;
GETACCOUNTS CUR_TYP;
GETAC_QUERY VARCHAR2(1000);
GETAC_QUERY := 'SELECT
DOMAIN_ID,
COMPANY_ID,
BNKBCH_ID,
ACTNO_ID,
CUR_CD,
LAST_STMT_DT,
NO_OF_MONTHS,
SOURCE_DBI_SERVER,
HOME_DBI_SERVER,
STATUS
FROM EAI_ACCOUNT_PROCESS
WHERE STATUS IN ('I','N')
AND SOURCE_DBI_SERVER = :DBIServer
ORDER BY
DOMAIN_ID';
BEGIN
OPEN GETACCOUNTS FOR GETAC_QUERY
USING DBIServer;
LOOP
FETCH GETACCOUNTS INTO
CurrentDomainId,
CurrentCompanyId,
CurrentBankBranch,
CurrentAccountNo,
CurrentCurrency,
LastStmtDate,
NumberOfMonths,
SourceDbiServer,
HomeDbiServer,
CurDomainStatus;
EXIT WHEN GETACCOUNTS%NOTFOUND;
IF CurrentDomainId!=NULL THEN
DBMS_OUTPUT.PUT_LINE('Open
ELSE
DBMS_OUTPUT.PUT_LINE('NULL
END IF;
END LOOP;
CLOSE GETACCOUNTS;
END;
/
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Business Accounts
Answer for Membership
by: HenkaPosted on 2004-03-11 at 22:19:35ID: 10578481
Comments are available to members only. Sign up or Log in to view these comments.