Top "Oracle" questions

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

hash value for sql statement

When we execute any sql statement in Oracle, a hash value is being assigned to that sql statement and stored …

sql oracle sql-execution-plan
Mapping a foreign key with a custom column name

I'm using Entity Framework 4.3 code-first with Oracle. I'm getting the following error: System.InvalidOperationException : The ForeignKeyAttribute on property 'WidgetSequence' on …

c# oracle ef-code-first entity-framework-4.3
PL/SQL: numeric or value error: character string buffer too small %ROWTYPE

I don't know if I am missing something but what I am doing is: I have a function that returns …

oracle plsql procedure
Truncate table in Oracle getting errors

I got the problem is when I run following command in Oracle, I encounter the error. Truncate table mytable; Errors: …

sql oracle plsql
Oracle unique constraint and unique index

Could someone clarify what is the purpose of having unique index without unique constraint (Oracle)? For example, create table test22(…

oracle unique-key
Optimizing Oracle CONNECT BY when used with WHERE clause

Oracle START WITH ... CONNECT BY clause is applied before applying WHERE condition in the same query. Thus, WHERE constraints won't …

sql performance oracle select query-optimization
Oracle Sql Loader skip option for multiple infiles

When using SQL Loader control file as following: OPTIONS(**skip=1**,bindsize=1048576,rows=1024) LOAD DATA INFILE 'C:\Documents and Settings\FIRST.…

oracle sql-loader
PL/SQL: how do I prompt user input in a procedure?

This is a question about a small part of a large project I'm doing. I tried the following but I …

sql oracle plsql user-input procedure
Using DBMS_LOB.SUBSTR on a BLOB results in ORA-06502

When I try to run the dbms_lob.substr function on a BLOB field, I get the following error: ORA-06502: …

oracle oracle11g ora-06502
JDBC ResultSet get columns with table alias

Imagine I have a query like SELECT * from table1 a, table2 b where (WHATEVER) Maybe both tables have the same …

java sql oracle jdbc resultset