0

I have already a table in oracle defined as below:

CREATE TABLE GENERAL_STATISTICS.PPLP_LOAD_GENSTAT3
(
  NAME   VARCHAR2(100 BYTE),
  START_TIME  DATE,
  END_TIME    DATE
)

What I would like to achieve is add an extra column at the end (as 4th column to the table). I execute:

ALTER TABLE PPLP_LOAD_GENSTAT3
ADD
(
ROWS_LOADED varchar2(100 BYTE)
);

I receive an error "ORA-01735: invalid ALTER TABLE option"

What would be the correct way to achieve this?

Thank you,

Best Regards

tln_jupiter
  • 153
  • 2
  • 8

1 Answers1

0

its for the type of field, you must try to change to another type of data

jcamt
  • 1