Can I convert this into 1 command line on bash in sqlplus? cause i want to automate it.
sqlplus / as sysdba
SQL> EXEC DBMS_XDB.SETLISTENERLOCALACCESS(FALSE);
exit
Can I convert this into 1 command line on bash in sqlplus? cause i want to automate it.
sqlplus / as sysdba
SQL> EXEC DBMS_XDB.SETLISTENERLOCALACCESS(FALSE);
exit
You won't need the exit with automation because it should exit on end of file anyway. So on one line you could do:
echo 'EXEC DBMS_XDB.SETLISTENERLOCALACCESS(FALSE);' | sqlplus / as sysdba
; or / (on a line of its own) to actually run the command. Just a guess, you'll need to provide more details for a better answersqlplus /nolog @your_script.sql
connect command into the script.