When I try to execute the SQL statment below in Oracle SQL Developer:
CREATE TABLE Nrom1Tab ( Sig TEXT NOT NULL PRIMARY KEY,
DocSubject TEXT,
DocClassification TEXT,
DepName VARCHAR,
OrgName TEXT,
FromInf TEXT,
ToInf TEXT,
DateInf TEXT,
NoteInf TEXT );
It shows this error:

I’m not sure what the error message is, however
TEXTis not a valid data type in Oracle.VARCHARis a valid data type but you would need to specify the length (i.e.VARCHAR(10)) would allow up to 10 bytes of storage (assuming a defaultNLS_LENGTH_SEMANTICSofBYTE). It would generally be preferred to use theVARCHAR2data type rather thanVARCHARas well.