...
Input Name | Input Code | Required | Description |
---|---|---|---|
User |
| No | The username that will be used to connect with. This input takes precedence over the target scoped |
Password |
| No | The password for |
Script File |
| Yes | Fully qualified or relative path to script file. If relative path is given, it will be assumed to be in the |
User Profile (login.sql) |
| No | User Profile (login.sql) is intended to allow users to specifically customize their session. (see the Special Considerations section for examples) |
Generate SQL Spool File |
| No | Check to generate report (Spool file) of SQL statement executions. |
Show DBMS Output |
| No | Print DBMS output in the log. |
Fix SQL Syntax |
| No | Check to fix common SQL syntax issues. |
Ignore Compilation Warnings |
| No | If checked, sql compilation warnings will be ignored. Otherwise, they will cause the execution to be marked as fail. |
...
The script provided in the input FDSQLPLUS_INP_LOGIN_SQL_FILE
will be created as the login.sql file in the current working directory and will be deleted after execution. The login.sql script in SQLPlus SqlPlus is automatically executed whenever you start SQLPlusSqlPlus. It can be used to set up your SQL*Plus environment, including formatting options, environment variables, and other session settings.
...