A solution can be found only when the table created in the Oracle database is enclosed in quotation marks.

Source: Internet
Author: User
Solution: CREATETABLEFAXSVR. SysParam (chParameterNamevarchar2 (64) NOTNULL, * PrimaryKey * chParamGroupvarchar2 (64) NULL, * parameter grouping

Create table faxsvr. create table faxsvr. sysParam (chParameterName varchar2 (64) not null,/* Primary Key */chParamGroup varchar2 (64) NULL,/* parameter group

Http://blog.csdn.net/yuanboitliuyuan/article/details/3963784

The solution is as follows:

Create table "FAXSVR". "SysParam "(
ChParameterName varchar2 (64) not null,/* Primary Key */
ChParamGroup varchar2 (64) NULL,/* parameter group ,*/
........
)
TABLESPACE "USERS"

The created table can only be used:

Select * from "SysParam" to query. Double quotation marks must be added to the table name;

Solution:

Method 1: change all table names to uppercase.

Create table "FAXSVR". "SYSPARAM "(......);

Method 2: No user name is added before the table name when the table is created.

Create table SysParam "(......);

Click the definition of this table. The column name must be enclosed in quotation marks. This is not harmful! Do not enclose column names in quotation marks. It is best to use uppercase characters when creating a table.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.