Collectives™ on Stack Overflow
Find centralized, trusted content and collaborate around the technologies you use most.
Learn more about Collectives
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Learn more about Teams
Hi I am using a delete query in my shell script and I am facing this issue.
delete from WHITELIST_CLI where filecode like'%Line_Index_condense%';
Error:
ERROR:
ORA-01741: illegal zero-length identifier
–
ORA-01741: illegal zero-length identifier
Cause: An attempt was made to use two double quotes ("") as an
identifier. An identifier must be at least one character long.
Your query has nothing of the sort. This may be an interaction between ksh and Oracle. Or you may have used double quotes when you mean single quotes. Or, you may have oversimplified the query when you posted the question. Or another query may be the issue.
Here is a simple example of the error on SQL Fiddle.
–