So, I have an auto-generated sql file I'm trying to run using sqlplus command but the problem is... there might be HTML entities (' in this case) that need to be replaced so it doesn't ask the user for any value, here's an example of what I have:
CREATE TABLE MY_TABLE (
TABLE_KEY CHAR(24) DEFAULT '' '' NOT NULL,
TABLE_FIELD CHAR(40) DEFAULT '' '' NOT NULL
)
I'm trying to run it using the following command:
sqlplus USER/PASSWORD @<path_to_sql_file>
Is there any way to get the actual apostrophe without sqlplus asking me for the "apos" value?
Thanks a lot for your help on this!