<docbook><section><title>TableViewSynonymNotFound7519</title><title>Progress Error Message: Table/View/Synonym not found (7519)</title>Progress Error Message: <computeroutput>Table/View/Synonym not found (7519)</computeroutput>
<para>The <computeroutput>Table/View/Synonym not found (7519)</computeroutput> error generally indicates a need to change how you identify the target <computeroutput>TABLE/VIEW/SYNONYM</computeroutput>.</para><itemizedlist mark="bullet" spacing="compact"><listitem> If your table name contains special characters (most commonly hyphens or underscores), you will need to enclose the table names with double quotes.
 For example: 
<table><title /><tgroup><thead /><tbody>
<row><entry> <emphasis>likely to succeed</emphasis>  </entry><entry> SELECT * FROM &quot;cust-account&quot;  </entry></row>
<row><entry> <emphasis>likely to error</emphasis>  </entry><entry> SELECT * FROM cust-account  </entry></row>
</tbody></tgroup></table>
</listitem>
</itemizedlist><itemizedlist mark="bullet" spacing="compact"><listitem> If you are now connecting to the Progress SQL-92 engine, you may need to ensure that all <computeroutput>TABLE/VIEW/SYNONYM</computeroutput> idnetifiers are more fully qualified.
 One of the following options will usually bring success. <itemizedlist mark="bullet" spacing="compact"><listitem> Explicitly set the connection to target the PUB schema.
 This can be <ulink url="SetThePUBSchemaForSQL92ConnectivityToSQL89Schemas">done through Single-Tier DSN and/or Multi-Tier Rulebook setup</ulink>. </listitem>
<listitem> Prepend &quot;PUB.&quot; to each object name, as -- 
<table><title /><tgroup><thead /><tbody>
<row><entry> <emphasis>likely to succeed</emphasis>  </entry><entry> SELECT * FROM PUB.Customer  </entry></row>
<row><entry> <emphasis>likely to error</emphasis>  </entry><entry> SELECT * FROM Customer  </entry></row>
</tbody></tgroup></table>
</listitem>
</itemizedlist></listitem>
</itemizedlist></section></docbook>