I have this liquibase change set:
<changeSet author="Yong Wang" id="GRANT_TO_CS_APP_1" runOnChange="true">
<sqlFile
endDelimiter="\nGO"
path="SQL/grant_to_cs_app.sql"
splitStatements="true"
stripComments="true"
relativeToChangelogFile="true"
/>
</changeSet>
and in grant_to_cs_app.sql, I have two lines:
grant select,insert,update,delete on CS_EVENT_LOG to CS_APP;
grant select,insert,update,delete on EVENT_CATEGORY to CS_APP;
When I run liquibase, it keeps giving me "ORA-00911: invalid character" even though I can run those two lines fine in Toad. Please advise. Thank you