Top "Oracle" questions

Oracle Database is a Multi-Model Database Management System created by Oracle Corporation.

Oracle find a constraint

I have a constraint called users.SYS_C00381400. How do I find what that constraint is? Is there a way …

sql oracle constraints
How to use Oracle ORDER BY and ROWNUM correctly?

I am having a hard time converting stored procedures from SQL Server to Oracle to have our product compatible with …

sql oracle sql-order-by rownum
Declaring a variable and setting its value from a SELECT query in Oracle

In SQL Server we can use this: DECLARE @variable INT; SELECT @variable= mycolumn from myTable; How can I do the …

oracle plsql
ORA-01950: no privileges on tablespace 'USERS'

I'm getting this error: ORA-01950: no privileges on tablespace 'USERS' I have a default tablespace and I'm able to create …

oracle privileges tablespace
Get a list of all functions and procedures in an Oracle database

I'm comparing three Oracle schemas. I want to get a list of all the functions and procedures used in each …

oracle plsql oracle9i
How to execute an .SQL script file using c#

I'm sure this question has been answered already, however I was unable to find an answer using the search tool. …

c# sql oracle scripting
how to increase sqlplus column output length?

I have some queries to find out the ddl of some objects from a schema. The result columns I am …

sql oracle sqlplus column-width
Is there any difference between "!=" and "<>" in Oracle Sql?

I would like to know if there are any differences in between the two not equal operators <> and != …

sql oracle
Oracle Error ORA-06512

Just can't figure out why it gives me ORA-06512 Error PROCEDURE PX(pNum INT,pIdM INT,pCv VARCHAR2,pSup FLOAT) …

oracle stored-procedures plsql ora-06512
How to redirect the output of DBMS_OUTPUT.PUT_LINE to a file?

I need to debug in pl/sql to figure times of procedures, I want to use: SELECT systimestamp FROM dual …

oracle plsql oracle-sqldeveloper dbms-output