It is necessary in the script to request data from the user and use as the name of the schema and space for DDL. What am I doing wrong?
var :cscheme varchar(20); var :ctspace varchar(20); exec :cscheme := &CUR_SCH; exec :ctspace := &CUR_TSPACE; CREATE TABLE :cscheme."TNABE" ( "V1" NUMBER, "V2" NUMBER, "V3" CHAR(10 BYTE) ) SEGMENT CREATION IMMEDIATE PCTFREE 10 PCTUSED 40 INITRANS 1 MAXTRANS 255 NOCOMPRESS LOGGING STORAGE(INITIAL 65536 NEXT 1048576 MINEXTENTS 1 MAXEXTENTS 2147483645 PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT FLASH_CACHE DEFAULT CELL_FLASH_CACHE DEFAULT) TABLESPACE :ctspace; Error: ORA-00903: invalid table name