CREATE INDEX i_audit_log_event_audit_table ON audit_log_event USING btree (audit_table); CREATE INDEX i_audit_log_event_user_id ON audit_log_event USING btree (user_id); CREATE INDEX i_audit_log_event_entity_id ON audit_log_event USING btree (entity_id); CREATE INDEX i_audit_log_event_audit_log_event_type_id ON audit_log_event USING btree (audit_log_event_type_id); CREATE INDEX i_audit_log_event_event_crf_id ON audit_log_event USING btree (event_crf_id); CREATE INDEX i_audit_log_event_study_event_id ON audit_log_event USING btree (study_event_id); CREATE INDEX i_audit_log_event_event_crf_version_id ON audit_log_event USING btree (event_crf_version_id); CREATE INDEX i_null_value_type_code ON null_value_type USING btree (code); CREATE INDEX i_rule_oc_oid ON rule USING btree (oc_oid); CREATE INDEX i_rule_rule_expression_id ON rule USING btree (rule_expression_id);
最近部署一个java项目,从官方下的sql文件,直接执行的时候提示确实确实左括号,在sqlplus里手敲还是同样的提示,请问上面的语句哪里有错?
楼主最好看一下官方给的sql文件是否是用在oracle数据库的。这个语法根本不是oracle的语法。
确实是sql文件有问题。