If you live outside the United States, by submitting your email address you consent to having your personal data transferred to and processed in the United States.
SQL> update operator set char_REVOKFLG=’0′ where login like ‘ospprov’;
update operator set char_REVOKFLG=’0′ where login like ‘ospprov’
*
ERROR at line 1:
ORA-00904: “CHAR_REVOKFLG”: invalid identifier
the column Name= REVOKEFLG Type= (char(1) . Please note the above result.
SQL> update operator set char_REVOKFLG=’0′ where login like ‘ospprov’;
update operator set char_REVOKFLG=’0′ where login like ‘ospprov’
*
ERROR at line 1:
ORA-00904: “CHAR_REVOKFLG”: invalid identifier
the column Name= REVOKEFLG Type= (char(1) . Please note the above result.
If the column name is REVOKFLG, then you should use that column name and not char_REVOKFLG.