BattleDroid42
Programmer
I'm trying to permanently change the NLS/Globalization Parameters for a new/empty database using Enterprise Manager (tried ALTER DATABASE command too):
NLS_DATE_FORMAT = 'MM/DD/YY'
NLS_TIME_FORMAT = 'HH12:MI:SS'
NLS_TIMESTAMP_FORMAT = 'MM/DD/YY HH12:MI:SS'
I DO NOT want to change for just the session or just for the instance. I want to mkae the change PERMANENTLY.
All attempts to change the parameter result in:
ORA-02096: specified initialization parameter is not modifiable with this option.
Changing the parameters in the pfile also doesn't work because the DB is running from the spfile (which is okay).
Is it neccessary to recreate the database (no big deal since it's a new database, but want to learn why this can't be changed and/or I can't find docs on this problem)? or is there a way to recreate/alter the spfile with these parameters enabled and then bounce the database?
Thanks!
NLS_DATE_FORMAT = 'MM/DD/YY'
NLS_TIME_FORMAT = 'HH12:MI:SS'
NLS_TIMESTAMP_FORMAT = 'MM/DD/YY HH12:MI:SS'
I DO NOT want to change for just the session or just for the instance. I want to mkae the change PERMANENTLY.
All attempts to change the parameter result in:
ORA-02096: specified initialization parameter is not modifiable with this option.
Changing the parameters in the pfile also doesn't work because the DB is running from the spfile (which is okay).
Is it neccessary to recreate the database (no big deal since it's a new database, but want to learn why this can't be changed and/or I can't find docs on this problem)? or is there a way to recreate/alter the spfile with these parameters enabled and then bounce the database?
Thanks!