简体   繁体   中英

Access SAP Tables in DB2

I have a DB2 database, where few of the tablenames are starting with '/'. eg: /dev/r32

How can I query on the above table I have tried with the following approaches

select * from schemaname./dev/r32

select * from schemaname.'/dev/r32'

select * from schemaname."/dev/r32"

But I am getting the following error:

An error occurred when executing the SQL command:
select * from schemaname."/dev/r32"

[SQL0204] /dev/r32 in schemaname type *FILE not found. [SQL State=42704, DB Errorcode=-204]

describe schemaname."/dev/r32" works.

Any help would be appreciated

表名称已更改,问题已解决。

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM