Click here to Skip to main content
15,887,135 members
Home / Discussions / Database
   

Database

 
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 
AnswerRe: Same Execution Plans / Different Actual Number of Rows Pin
DoctorMick24-Jun-09 5:54
DoctorMick24-Jun-09 5:54 
GeneralRe: Same Execution Plans / Different Actual Number of Rows Pin
Meysam Mahfouzi24-Jun-09 20:28
Meysam Mahfouzi24-Jun-09 20:28 
Questionconnection string and dynamic connection string Pin
Phumlani Kunene24-Jun-09 3:55
Phumlani Kunene24-Jun-09 3:55 
AnswerRe: connection string and dynamic connection string Pin
J4amieC24-Jun-09 5:50
J4amieC24-Jun-09 5:50 
AnswerRe: connection string and dynamic connection string Pin
Niladri_Biswas24-Jun-09 17:16
Niladri_Biswas24-Jun-09 17:16 
QuestionWhat is code for log_In in ASP Pin
Phumlani Kunene24-Jun-09 3:49
Phumlani Kunene24-Jun-09 3:49 
AnswerRe: What is code for log_In in ASP Pin
J4amieC24-Jun-09 5:51
J4amieC24-Jun-09 5:51 

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.