I'm looking at some code and I see that someone is writing the following pl/sql.
alter system set smtp_out_server = '123.345.134.123';
Since this is the mutator (setter), what's the accessor (getter) of this command?
SELECT what from where to view the SMTP_OUT_SERVER setting?
Thanks,
mj
Try:
select *
from V$PARAMETER
where NAME = 'smtp_out_server';
Or, in an sqlplus
session you can type:
show parameter smtp_out_server
select * from v$parameter
That should get the settings, add a where clause for the specific one you are after
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With