Troubleshooting and Resolving “ORA-00904: string: invalid identifier” Error
smallwei
7:02 am on October 30, 2009
Here is the official Oracle explanation:
Cause: The column name entered is either missing or invalid.
Action: Enter a valid column name. A valid column name must begin with a letter, be less than or equal to 30 characters, and consist of only alphanumeric characters and the special characters $, _, and #. If it contains other characters, then it must be enclosed in double quotation marks. It may not be a reserved word.
Steps to troubleshoot:
Check the column names in your sql statement. Make sure there is no typo, and the format is valid according to the standard above.
smallwei 7:02 am on October 30, 2009
Here is the official Oracle explanation:
Cause: The column name entered is either missing or invalid.
Action: Enter a valid column name. A valid column name must begin with a letter, be less than or equal to 30 characters, and consist of only alphanumeric characters and the special characters $, _, and #. If it contains other characters, then it must be enclosed in double quotation marks. It may not be a reserved word.
Steps to troubleshoot: