oracle
Diagnosing Oracle I/O problems in AIX
Submitted by Matt Fleming on Mon, 2007-04-30 21:56.
Users started complaining about spotty application performance; sometimes it was good, sometimes it was horrible. The first thing came to my mind was some kind of database bottleneck. In my experience, CPU and I/O contention are usually the culprits but one time (not this time) it actually was a network problem. Here's how I broke it down...
How b-tree database indexes work and how to tell if they are efficient (100' level)
Submitted by Matt Fleming on Thu, 2007-02-22 17:20.
A team member thought we should add an index on a 90 million row table to improve performance. The field on which he wanted to create this index had only four possible values. To which I replied that an index on a low cardinality field wasn't really going to help anything. My boss then asked me why wouldn't it help? I sputtered around for a response but ended up telling him that I'd get back to him with a reasonable explanation.
Copy data between databases
Submitted by Matt Fleming on Thu, 2006-12-14 14:45.In oracle, you can copy data between linked databases via normal SQL.
insert into table select * from table@db_link
The databases can even be on different physical machines.
- 2 comments
- 1420 reads
