problema con CREATE
Recien acabo de instalar el Oracle 10g y entre al Sql*plus, pero no me deja crear nisiquiera una tabla,
pongo esto:
CREATE TABLE DEPT (DEPTNO NUMBER(2),
DNAME CHAR(14),
LOC CHAR (13));
y me dice:
ERROR en lÃnea 1:
ORA-01918: el usuario 'DEPT' no existe
Yo soy principiante realmente no se si estoy haciendo algo mal, por favor alguien ayudeme.
pongo esto:
CREATE TABLE DEPT (DEPTNO NUMBER(2),
DNAME CHAR(14),
LOC CHAR (13));
y me dice:
ERROR en lÃnea 1:
ORA-01918: el usuario 'DEPT' no existe
Yo soy principiante realmente no se si estoy haciendo algo mal, por favor alguien ayudeme.
No vaciles, la sintaxis del DDL es corracta, he hecho un copy-paste de lo que has puesto y este es el resultado :
Connected to:
Oracle8i Enterprise Edition Release 8.1.7.4.0 - 64bit Production
With the Partitioning option
JServer Release 8.1.7.4.0 - 64bit Production
SQL> connect XXXXXXX@XXXXXXX
Enter password: *********
Connected.
SQL> CREATE TABLE DEPT (DEPTNO NUMBER(2),
2 DNAME CHAR(14),
3 LOC CHAR (13));
Table created.
SQL>
SQL>
SQL> drop table DEPT ;
Table dropped.
SQL>
Connected to:
Oracle8i Enterprise Edition Release 8.1.7.4.0 - 64bit Production
With the Partitioning option
JServer Release 8.1.7.4.0 - 64bit Production
SQL> connect XXXXXXX@XXXXXXX
Enter password: *********
Connected.
SQL> CREATE TABLE DEPT (DEPTNO NUMBER(2),
2 DNAME CHAR(14),
3 LOC CHAR (13));
Table created.
SQL>
SQL>
SQL> drop table DEPT ;
Table dropped.
SQL>