Hi All,
Below is the table structure with two highlighted virtual columns expression associated, Now i want remove these expressions with virtual columns (But have to keep my columns VIRTUAL as it is).
Can this be done by Alter statement or i need to take back up of table, make a new structure and do copy back contents to newly structured table.......Pleae help!!!!
CREATE TABLE TEST_COL(
SAGE_TRADE_TYPE VARCHAR2(50 BYTE),
LOCAL_TZ VARCHAR2(20 BYTE),
GMT_CONV_ENTERED_DT_TS AS (SAGEDBO.FN_CONVERT_TIMEZONE(LOCAL_TZ,ENTERED_DT_TS)) VIRTUAL,
GMT_CONV_EXECUTION_DT_TS AS (SAGEDBO.FN_CONVERT_TIMEZONE(LOCAL_TZ,UPSTREAM_EXECUTION_TS)) VIRTUAL,
EOD_IND VARCHAR2(10 BYTE)
);
Many Thanks,
Arpit