When I describe开发者_C百科 an Oracle TYPE in SQL*Plus, what does SQL*Plus do \"under the bonnet\" - Is it calling DBMS_METADATA (or similar)?Or is it querying the data dictionary directly?
I\'m working with SQLPlus at the moment and whenever I query the Database, the result is in a complete mess. In other words, it is hard to read.I wonder if anyone knows how to format the output of que
I am new to Oracle. And I have come across a problem. Firstly,I want to check the privileges of the sysman account:
I have an sh script containing this: sqlplus -S $JDBC_URL <<EOF $1; EOF That works fine.开发者_Python百科 However, it doesn\'t pick my formatting preferences from login.sql. Those settings wo
I created a view that I make read only create view EMP_VU AS select ename employee_name, deptno, empno
How to read a text file from Oracle SQL*plus? If there is a way to read from a bat file and pass the variable as a single line of text file, and simultaneously called from SQL*plus sql file, this op
I tried to spool a CLOB to a CSV file using code that looks like below: set pagesize 0 set heading off set long 30000
I need the settings in SQL Developer while performing the action Run as Script -f5. Since, if I use sqlplus. it is not giving the exact result format what I want. But, in SQL Developer gives the neede
I am looking for a r开发者_JAVA技巧eal good explanation of a BLOB and CLOB data. I am looking for the great of that explains in plain English.BLOB\'s (Binary Large OBject) store binary files:pictures,
SQL> CREATE or REPLACE FUNCTION custord (custNo IN number) 2RETURN NUMBER 3IS cust_tot NUMBER(11,2);