Click here to Skip to main content
15,895,142 members
Home / Discussions / Database
   

Database

 
GeneralRe: What way of datastorage should be use for small aaplication Pin
David Skelly25-Jun-09 22:39
David Skelly25-Jun-09 22:39 
GeneralRe: What way of datastorage should be use for small aaplication Pin
Eddy Vluggen26-Jun-09 0:17
professionalEddy Vluggen26-Jun-09 0:17 
AnswerRe: What way of datastorage should be use for small aaplication Pin
Andy_L_J26-Jun-09 19:14
Andy_L_J26-Jun-09 19:14 
QuestionSplit table Pin
sujithkumarsl24-Jun-09 20:46
sujithkumarsl24-Jun-09 20:46 
AnswerRe: Split table Pin
WoutL24-Jun-09 21:55
WoutL24-Jun-09 21:55 
GeneralRe: Split table Pin
sujithkumarsl24-Jun-09 22:01
sujithkumarsl24-Jun-09 22:01 
GeneralRe: Split table Pin
J4amieC25-Jun-09 0:26
J4amieC25-Jun-09 0:26 
GeneralRe: Split table Pin
sujithkumarsl25-Jun-09 0:30
sujithkumarsl25-Jun-09 0:30 
GeneralRe: Split table Pin
Mycroft Holmes25-Jun-09 0:54
professionalMycroft Holmes25-Jun-09 0:54 
GeneralRe: Split table Pin
sujithkumarsl25-Jun-09 1:15
sujithkumarsl25-Jun-09 1:15 
QuestionSQL Profiler for Oracle? Pin
devvvy24-Jun-09 20:43
devvvy24-Jun-09 20:43 
AnswerRe: SQL Profiler for Oracle? Pin
r a m e s h25-Jun-09 0:25
r a m e s h25-Jun-09 0:25 
AnswerQuest tools Pin
David Mujica25-Jun-09 2:52
David Mujica25-Jun-09 2:52 
GeneralRe: Quest tools Pin
devvvy25-Jun-09 4:15
devvvy25-Jun-09 4:15 
GeneralQuery for finding high read SQL statements Pin
David Mujica25-Jun-09 4:34
David Mujica25-Jun-09 4:34 
Keep posting your questions here and I'm sure the folks will help you out. Thumbs Up | :thumbsup:

Try this query for finding SQL statements that have more than 10,000 reads:

select disk_reads,sql_text 
from v$sqlarea 
where disk_reads > 10000 
order by disk_reads desc


Oracle has a tremendous amount of views that you can use to find performance bottlenecks.
There are tons of books out there on the subject of Oracle tuning.

Good luck with your endeavors.
David
GeneralRe: Query for finding high read SQL statements Pin
devvvy25-Jun-09 4:35
devvvy25-Jun-09 4:35 
Questionhow to check duplicate Id record in table: Pin
LTMKH24-Jun-09 19:15
LTMKH24-Jun-09 19:15 
AnswerRe: how to check duplicate Id record in table: Pin
Mycroft Holmes24-Jun-09 19:28
professionalMycroft Holmes24-Jun-09 19:28 
GeneralRe: how to check duplicate Id record in table: Pin
WoutL24-Jun-09 20:19
WoutL24-Jun-09 20:19 
GeneralRe: how to check duplicate Id record in table: Pin
Mycroft Holmes24-Jun-09 20:37
professionalMycroft Holmes24-Jun-09 20:37 
GeneralRe: how to check duplicate Id record in table: Pin
LTMKH30-Jun-09 15:08
LTMKH30-Jun-09 15:08 
GeneralRe: how to check duplicate Id record in table: Pin
Mycroft Holmes30-Jun-09 17:47
professionalMycroft Holmes30-Jun-09 17:47 
GeneralRe: how to check duplicate Id record in table: Pin
LTMKH30-Jun-09 18:00
LTMKH30-Jun-09 18:00 
AnswerRe: how to check duplicate Id record in table: Pin
Niladri_Biswas24-Jun-09 20:19
Niladri_Biswas24-Jun-09 20:19 
QuestionSame Execution Plans / Different Actual Number of Rows [modified] Pin
Meysam Mahfouzi24-Jun-09 4:27
Meysam Mahfouzi24-Jun-09 4:27 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.