Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Getting the error ORA-06550: line 2, column 21: PLS-00103: Encountered the symbol "end-of-file" when

Status
Not open for further replies.

EM1107

IS-IT--Management
Apr 24, 2002
153
CA
Good day everyone!

I hope that you can help me on that one.
I am running Oracle 11G and I am not to familiar with the queries.
I am trying to run the following to search all tables and columns and I am getting an error.

here is the code:

DECLARE
match_count integer;
v_search_string varchar2(4000) := 'OPTX';
BEGIN
FOR t IN (SELECT owner,
table_name,
column_name
FROM all_tab_columns
WHERE data_type in ('CHAR', 'VARCHAR2', 'NCHAR', 'NVARCHAR2',
'CLOB', 'NCLOB') )
LOOP
BEGIN
EXECUTE IMMEDIATE
'SELECT COUNT(*) FROM '||t.owner || '.' || t.table_name||
' WHERE '||t.column_name||' = :1'
INTO match_count
USING v_search_string;
IF match_count > 0 THEN
dbms_output.put_line( t.owner || '.' || t.table_name ||' '||t.column_name||' '||match_count );
END IF;
EXCEPTION
WHEN others THEN
dbms_output.put_line( 'Error encountered trying to read ' ||
t.column_name || ' from ' ||
t.owner || '.' || t.table_name );
END;
END LOOP;
END;
/

Here is the error I get.

ORA-06550: line 2, column 21: PLS-00103: Encountered the symbol "end-of-file" when expecting one of the following: := . ( @ % ; not null range default character
 
perhaps you may need quotes around :1, as the SQL would read t.column_name = 'COLUMN_NAME'.

Also, you note that you are using Oracle 11, yet you posted in the Oracle 9i and earlier forum.

==================================
advanced cognitive capabilities and other marketing buzzwords explained with sarcastic simplicity


 
Thanks John for your reply.

I understand that the post if for Oracle 9 and older but I think that the post should continue to grow and should also include newer version of oracle.
I will give that a try and see if that resolve my issue.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top