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.