Top "Oracle" questions

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

Oracle PL/SQL: how to get the stack trace, package name and procedure name

Sometimes the exception returns something like: "ORA-06502: PL/SQL: numeric or value error: character string buffer too small". It's not …

oracle exception-handling plsql stack-trace
MODIFY COLUMN in oracle - How to check if a column is nullable before setting to nullable?

I'm trying to fill in for a colleague in doing some Oracle work, and ran into a snag. In attempting …

database oracle plsql schema
How to run Oracle query with begin/end in SQL*Plus?

I have created a query block with begin/end and want to run that in SQL*Plus. But how can …

oracle sqlplus
Oracle: sequence MySequence.currval is not yet defined in this session

What does this mean, and how can I get around it? SELECT MySequence.CURRVAL FROM DUAL; Result: ORA-08002: sequence MySequence.…

oracle sequence
Default row ordering for select query in oracle

In Oracle, what is the the default ordering of rows for a select query if no "order by" clause is …

oracle sql-order-by
how to create an insert script from a table using TOAD, oracle?

I used TOAD for oracle 11g, I want to create an insert script from a table. or I want to …

sql oracle toad
Unique constraint on multiple columns

I am using an oracle table and have created a unique constraint over four columns. Can these columns within the …

oracle unique-constraint
How do I use the current date in an HQL query with an Oracle database?

I'm trying to write this query using Hibernate 3 and Oracle 10. from Alert alert where alert.expiration > current_date() order …

oracle hibernate hql
Get VIEW ddl using query

For database re-architecture I need to get DDL of each table and view in the database(Oracle). I don't want …

sql oracle ddl dbms-metadata
How to get rightmost 10 places of a string in oracle

I am trying to fetch an id from an oracle table. It's something like TN0001234567890345. What I want is to …

sql oracle sorting oracle11g