...
Input Name | Input Code | Required | Description |
---|---|---|---|
User |
| No | The username that will be used for database connection. This input takes precedence over the Target ORA User property. |
Password |
| No | Password for User specified in plugin input. This input takes precedence over the Target ORA Password property. |
Script File |
| Yes | Fully qualified or relative path to script file. If relative path is given, it will be assumed to be in the FD_ARTIFACTS_DIR. |
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 |
...
This operation will randomly execute on one of the endpoint identified during selection.
Special Considerations
login.sql
The script that you provided in the input FDSQLPLUS_INP_LOGIN_SQL_FILE
will be created as the login.sql file in the current working directory. The login.sql script file in SQLPlus is executed automatically whenever you start SQLPlus. It can be used to set up your SQL*Plus environment, including setting formatting options, environment variables, and other session settings.
below the is the example script . we can customize based on requirement
Code Block |
---|
-- Set the SQL*Plus environment settings
SET ECHO OFF
SET FEEDBACK ON
SET HEADING ON
SET LINESIZE 200
SET PAGESIZE 9999
SET SERVEROUTPUT ON
SET TERMOUT ON
SET TIMING ON
SET VERIFY OFF
-- Set default schema
ALTER SESSION SET CURRENT_SCHEMA=YOUR_SCHEMA_NAME;
-- Define common substitution variables
DEFINE my_variable = 'default_value'
-- Custom SQL*Plus prompt
SET SQLPROMPT "SQL> "
-- Display a welcome message
PROMPT Welcome to SQL*Plus |