1

Is there a possibility to execute an SQL script that is located on the database server using SQLPlus?

For example, if I execute @@?/rdbms/admin/awrrpti.sql the SQL file located on the client machine is used (if existent). Can I tell SQLPlus to look the script up on the server itself (without SSHing into the remote machine)?

1 Answers1

1

Short answer: no, you cannot.

sqlplus is a client application, it has no way to access the server's filesystem.

Lukas
  • 36
  • 3