Feedback
Did this article resolve your question/issue?

   

Article

Incorrect Syntax error occurs when accessing SQL Server tables where table name begins with a number.

Information

 
TitleIncorrect Syntax error occurs when accessing SQL Server tables where table name begins with a number.
URL NameIncorrect-Syntax-error-occurs-when-accessing-SQL-Server-tables-where-table-name-begins-with-a-number
Article Number000125419
EnvironmentProduct: Progress DataDirect for ODBC for SQL Server Wire Protocol driver.
Version: All supported versions
OS: All support platforms
Database: SQL Server
Application: All supported applications
Question/Problem Description
Incorrect Syntax error occurs when accessing SQL Server tables where table name begins with a number while using the Progress DataDirect for ODBC for SQL Server Wire Protocol driver.
Steps to Reproduce
Clarifying Information
Error Message
Defect Number
Enhancement Number
Cause
This is expected behaior.
Resolution

 SQL Server table names should not start with numbers.

Excerpt from Microsoft's documentation:

The first character must be one of the following:

  • A letter as defined by the Unicode Standard 3.2. The Unicode definition of letters includes Latin characters from a through z, from A through Z, and also letter characters from other languages.

  • The underscore (_), at sign (@), or number sign (#).


2) Subsequent characters can include the following:

  • Letters as defined in the Unicode Standard 3.2.

  • Decimal numbers from either Basic Latin or other national scripts.

  • The at sign, dollar sign ($), number sign, or underscore.

Workaround
There are 2 work around
1) In the data source select "Enable Quoted Indetifiers" and then use quotes around the table name.
For example "1MyTableName"

2) Surrounding the tablename with brackets [ ] seems to allow the query to run.
For example  [1MyTableName]
Notes
Last Modified Date3/3/2020 8:57 PM
Files
Disclaimer The origins of the information on this site may be internal or external to Progress Software Corporation (“Progress”). Progress Software Corporation makes all reasonable efforts to verify this information. However, the information provided is for your information only. Progress Software Corporation makes no explicit or implied claims to the validity of this information.

Any sample code provided on this site is not supported under any Progress support program or service. The sample code is provided on an "AS IS" basis. Progress makes no warranties, express or implied, and disclaims all implied warranties including, without limitation, the implied warranties of merchantability or of fitness for a particular purpose. The entire risk arising out of the use or performance of the sample code is borne by the user. In no event shall Progress, its employees, or anyone else involved in the creation, production, or delivery of the code be liable for any damages whatsoever (including, without limitation, damages for loss of business profits, business interruption, loss of business information, or other pecuniary loss) arising out of the use of or inability to use the sample code, even if Progress has been advised of the possibility of such damages.