44
votes
22answers
2k views
What resources exist for Database performance-tuning?
What good resources exist for understanding database tuning on the major engines and advancing your knowledge in that area?
The idea of this question is to collect the shed load of resources that …
27
votes
13answers
3k views
Inner join vs Where
Is there a difference in performance (in oracle) between
Select * from Table1 T1
Inner Join Table2 T2 On T1.ID = T2.ID
And
Select * from Table1 T1, Table2 T2
Where T1.ID = T2.ID
?
17
votes
10answers
1k views
How to avoid storing credentials to connect to Oracle with JDBC?
Is it possible to setup a JDBC connection to Oracle without providing username/password information in a configuration file (or in any other standard readable location)?
Typically applications have a …
16
votes
9answers
2k views
Oracle to buy Sun. What will the future of Java be? [closed]
According to a sun press release Oracle will buy Sun: http://www.sun.com/third-party/global/oracle/index.jsp and http://www.oracle.com/sun/index.html.
What does this mean for the future of the Java …
16
votes
14answers
1k views
How many database indexes is too many?
I'm working on a project with a rather large Oracle database (although my question applies equally well to other databases). We have a web interface which allows users to search on almost any …
16
votes
7answers
737 views
How do you manage schema upgrades to a production database?
This seems to be an overlooked area that could really use some insight. What are your best practices for:
making an upgrade procedure
backing out in case of errors
syncing code and database changes
…
15
votes
16answers
2k views
Hidden features in Oracle
I enjoyed the answers and questions about hidden features in sql server
What can you tell us about Oracle?
Hidden tables, inner workings of ..., secret stored procs, package that has good utils...
14
votes
22answers
2k views
Alternatives to Toad
Hello.
I'm currently using Toad for my day-to-day work on our databases (queries, updates, small scripts, browsing of db objects, etc.).
My question is: since my version of Toad is old and buggy, …
14
votes
9answers
1k views
Get null == null in SQL
I wish to search a database table on a nullable column. Sometimes the value I'm search for is itself NULL. Since Null is equal to nothing, even NULL, saying
where MYCOLUMN=SEARCHVALUE
will fail. …
13
votes
5answers
3k views
Why does Oracle 9i treat an empty string as NULL?
I know that it does consider ' ' as NULL, but that doesn't do much to tell me why this is the case. As I understand the SQL specifications, ' ' is not the same as NULL -- one is a valid datum, and …
13
votes
20answers
14k views
SQL - fetch the row which has the Max value for a column
Table: UserId, Value, Date.
I want to get the UserId, Value for the max(Date) for each UserId. That is, the Value for each UserId that has the latest date. Is there a way to do this simply in SQL? …
12
votes
4answers
399 views
Why is (a | b ) equivalent to a - (a & b) + b?
I was looking for a way to do a BITOR() with an Oracle database and came across a suggestion to just use BITAND() instead, replacing BITOR(a,b) with a + b - BITAND(a,b).
I tested it by hand a few …
12
votes
3answers
1k views
How can I implement conditional inserting in Oracle?
I'm new to oracle and having a problem with one of my SQL Queries.
There are 2 Users: User1 and User2:
Tab1 Tab2
-------- --------
EmpNo EmpNo
…
12
votes
10answers
1k views
Is there a good alternative to SQL*PLUS for Oracle?
I am not a fan of using SQL*PLUS as an interface to Oracle. I usually use yasql, but it hasn't been updated since 2005 and can do with some improvements. A quick Google search shows yasql and …
11
votes
7answers
1k views
Is there a difference between commit and rollback in a transaction only having selects?
The in-house application framework we use at my company makes it necessary to put every SQL query into transactions, even though if I know that none of the commands will make changes in the database. …
