# oraplus-release **Repository Path**: csudata/oraplus-release ## Basic Information - **Project Name**: oraplus-release - **Description**: oraplus是一个把sqlplus命令包装的命令行工具。 - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2026-02-03 - **Last Updated**: 2026-02-03 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # oraplus-release ## 介绍 oraplus是一个把sqlplus命令包装的命令行工具。 把发布版本中的oraplus.x86_64.xz包下载到Linux主机中解压既可以使用,只有一个执行程序oraplus。 使用示例: ``` [root@rocky96-ai oraplus]# ./oraplus sys/oracle@csuora as sysdba Oraplus 1.0 Copyright (c) 2026, CSUDATA.COM. All rights reserved. SQL*Plus: Release 19.0.0.0.0 - Production on Tue Feb 3 07:50:38 2026 Version 19.9.0.0.0 Copyright (c) 1982, 2020, Oracle. All rights reserved. Connected to: Oracle Database 11g Enterprise Edition Release 11.2.0.4.0 - 64bit Production With the Partitioning, OLAP, Data Mining and Real Application Testing options SQL> show sga; Total System Global Area 1586708480 bytes Fixed Size 2253624 bytes Variable Size 922750152 bytes Database Buffers 654311424 bytes Redo Buffers 7393280 bytes SQL> select * from tang01; ---+---- ID | T ---+---- 2 | 222 1 | 111 2 | 222 ---+---- 3 rows selected. SQL> \d tang01; Name Null? Type ----------------------------------------- -------- ---------------------------- ID NUMBER(38) T VARCHAR2(40) SQL> desc tang01 Name Null? Type ----------------------------------------- -------- ---------------------------- ID NUMBER(38) T VARCHAR2(40) SQL> \ Unknown command: \ Type \? or \h for help. SQL> 、 SQL> \? Available commands: \d List all tables and views \d Describe table/view structure \dt List all tables \dv List all views \ds List sequences (user_sequences) \dS List synonyms (USER_SYNONYMS) \stbs Data Guard status (V$DATAGUARD_STATUS) \dg ASM diskgroup information (v$asm_diskgroup) \dgopr ASM operation information (v$asm_operation) \dga ASM attribute information (v$asm_attribute) \disk ASM disk information (v$asm_disk) \mrp Managed standby status (v$managed_standby) \x Toggle expanded display mode desc
Describe table/view structure / Execute SQL in buffer SQL; Execute SQL statement (end with semicolon) Type SQL statements directly and press Enter to execute. Use Ctrl+D to exit. ```