contiunally getting ORA-00907: missing right parenthesis error when trying to insert data in my star scheme using the code:
INSERT INTO account_dim (account_id, account_name) SELECT (acc_seq.nextval, lds_account.acc_name) FROM lds_account;
INSERT INTO account_dim (account_id, acount_name) SELECT (acc_seq.nextval, mch_account.acc_name) FROM mch_account;
Can anyone make any suggestions?