• Topic
  • Discussion
  • UdaWikiWeb.ProgressColumnCouldNotBeFound(Last) -- Owiki? , 2016-08-19 15:00:50 Edit owiki 2016-08-19 15:00:50

    Error Messages (C)

    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 #

    Column <column name> cannot be found or is not specified for query. (13865)

    This error occurs if the query contains a column name that does not appear in the target table. It can also occur, if you attempt to query Progress SQL 89 tables with our SQL 92 agent. Many SQL89 columns contain hyphens that the SQL 92 engine interprets as a mathematical operator, namely the minus sign. To eradicate the problem, enclose column names in double quotes. For example:

    INCORRECT: select cust-name from PUB.Customer
    CORRECT: select "cust-name" from PUB.Customer


    Referenced by...