Error Messages (T)
A B C D E F G H I J K L M N O P Q R S T U V W X Y Z #
Table/View/Synonym not found (7519)
This error often indicates a need to fully qualify the target table in your Progress queries. For example:
Incorrect: select * from Customer
Correct: select * from PUB.Customer
If your table contains special characters--most likely hyphens--you need to enclose your table names with double quotes. For example:
Incorrect: select * from PUB.cust-account
Correct: select * from "PUB"."cust-account"
If you are querying Progress SQL89 schema with OpenLink's SQL92 drivers, you need to ensure that all queries append the PUB schema to the table name.
This task can be automated.