Oracle2.0 SQL-7.804.1737
Oracle SQL | |
|---|---|
Author : Arun Kumar(arunk@argos-labs.com), Sandeep Kumar(sandeepsharma@argos-labs.com) Primary Features
Dpendent modules The ORACLE SQL 2.0 plugin requires the ORACLE DLL to be downloaded in the ARGOS Virtual Environment if the python version is above 3.9 . (V-Env) The DLL file size is nearly 100 MB. Depending on your network speed, it might take a few minutes to set up the V-Env. Primary Features
Limitations
|
InPut(required)
Display Name | Input Method | Default Value | Description |
|---|---|---|---|
DB Host | IP Address | - | Specify IP address of the host. |
DB Port | Port No. | - | Specify the port no of the database. |
DB User | User ID(String) | - | Determine the specified user ID of the data base. |
DB Password | Password | - | Determine the specified password of the data base. |
DB Name | String | - | Specify the Database SID (e.g. XE) or Service Name (e.g. orcl). |
InPut(Optional)
Display Name | Input Method | Default Value | Description |
|---|---|---|---|
SQL string | String | - | SQL can be sent either as char String or from a text file |
SQL file | fileread | - | SQL from file. (Note, either one of SQL string or SQL file) |
CSV bulk input | fileread | - | Data input can be made from a CSV file in case of INSERT sql. |
Exc N Headers | int | - | If there is(are) header(s), you can use the Exclusion count option here. |
Character Set | String | - | The database also uses this character set for metadata such as table names, column names, and SQL statements. |
Encoding | - | utf-8 | By checking this the target strings will be encoded. |
As SYSDBA | - | - | Check this option to enable SYSDBA mode for User. |
Return Value
For SELECT SQL
Result will be the output records with CSV output
for otherwise SQL
Reuslt will the affected_row_count and integer value
Parameter setting examples
Example SQL file
--- insert static records
INSERT INTO foo (name, age)
values
(`nobody me`, 100),
(‘foobar`, 200)
Return Code
Code | Meaning |
|---|---|
0 | Execution successful |
9 | Execution failed |