Top "Oracle" questions

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

What do the letter codes in Oracle user_contraints table's constraint_type column stand for?

select distinct constraint_type from user_constraints; C - C P R U Seems P means primary key and R …

oracle constraints oracleinternals
Default Schema in Oracle Connection URL

I'd like to set default database schema in Oracle Connection URL jdbc:oracle:thin:@<server>:<port1521>:&…

oracle jdbc connection-string
Oracle : select maximum value from different columns of the same row

The whole question is pretty much in the title. For each row of the table I'd like to select the …

sql oracle oracle8i
how to retrieve records which occurred more than twice in oracle?

I have this table create table student ( stu_id int, s_name nvarchar(max), s_subject nvarchar(max), ) and this …

sql oracle sqlplus
SQL join subquery

I tried searching for an answer to my problem but failed to get an answer that actually helped. I've written …

sql oracle join subquery
How to calculate the maximum of two numbers in Oracle SQL select?

This should be simple and shows my SQL ignorance: SQL> select max(1,2) from dual; select max(1,2) from dual * ERROR …

sql oracle max
Reason why oracle is case sensitive?

Is there a reason why Oracle is case sensitive and others like SQL Server, and MySQL are not by default? …

oracle database-design case-sensitive
Why does CONNECT BY LEVEL on a table return extra rows?

Using CONNECT BY LEVEL seems to return too many rows when performed on a table. What is the logic behind …

sql oracle connect-by
How can I enumerate the list of privileges granted to an Oracle role?

I have a homegrown Oracle role that was created long ago: create role MyRole; It's been granted the ability to …

oracle plsql roles
How to extract table definitions using SQL or Toad

Can somebody tell me how to extract my table definitions using SQL? I want to extract the datatypes of all …

sql oracle toad