Thread: slow query issue [urgent]
- 08-13-2009 07:39 AM #1
slow query issue [urgent] dear all
I am working in Oracle 11i Apps, problem is
I am trying to JOIN two tables using the following criteria
GL_JE_LINES.GL_SL_LINK_ID = CST_AE_LINES.GL_SL_LINK_ID
but this take too much time to execute
please guide me....
- Club-Oracle Complementary E-Books and Magazines
Get your free Complementary Copy of Oracle Magazine
You can also browse the Free Magazines and E-Books section to see the complete list of free magazines, e-books and Whitepapers.
- 08-13-2009 07:59 AM #2
Re: slow query issue [urgent] hi
can we see the full query?Learn Oracle with Oracle forum. Check out The Technology Blog
- 08-13-2009 08:00 AM #3
Re: slow query issue [urgent] and did you see another member's response here?
GL to Inventory Mapping IssueLearn Oracle with Oracle forum. Check out The Technology Blog
- 08-13-2009 08:37 AM #4
Re: slow query issue [urgent] Code sql:SELECT gcc.segment1
|| '-'
|| gcc.segment2
|| '-'
|| gcc.segment3
|| '-'
|| gcc.segment4
|| '-'
|| gcc.segment5
|| '-'
|| gcc.segment6
|| '-'
|| gcc.segment7 AS gl_account,
NVL (cal.accounted_dr, 0) AS ac_dr, NVL (cal.accounted_cr, 0) AS ac_cr
FROM cst_ae_headers cah,
cst_ae_lines cal,
gl_code_combinations gcc,
gl_je_lines gjl,
gl_je_headers gjh
WHERE gcc.segment4 BETWEEN :p_acct_from AND :p_acct_to
AND TRUNC (gjl.effective_date) <= :p_date
AND gcc.code_combination_id = gjl.code_combination_id
AND gjh.je_header_id = gjl.je_header_id
AND gjh.je_source = 'Periodic Inventory'
AND gjl.STATUS = 'P'
AND gjl.gl_sl_link_id = NVL (cal.gl_sl_link_id, 0)
AND cah.ae_header_id = cal.ae_header_id
AND cah.period_name = gjh.period_name
AND cah.ae_category = gjh.je_category
- 08-13-2009 09:48 AM #5
Re: slow query issue [urgent] hi
It maybe an issue with the between clause. Try narrowing down on the accounts range and see.Learn Oracle with Oracle forum. Check out The Technology Blog
- 08-13-2009 12:22 PM #6
Re: slow query issue [urgent] huuuu... tried this ALSO but same problem
(( please help me.
- 08-13-2009 12:56 PM #7
- 08-13-2009 04:41 PM #8
Re: slow query issue [urgent] "Basically i want to perform mapping from GL to INVENTORY & PAYABLES "
I want to get transactional details (like po number, item description). I have GL account number and i want to route from GL to get the material transactional details.
- 08-13-2009 04:56 PM #9
Re: slow query issue [urgent] RIAZ did you check the view XLA_INV_AEL_GL_V. It might have everything you need. If not, pay special attention to the create view script for this view (or it's underlying view).
Learn Oracle with Oracle forum. Check out The Technology Blog
Similar Threads
-
Urgent Need Help on Oracle Auditing
By rahulkadam in forum GeneralReplies: 7Last Post: 01-22-2010, 04:53 AM -
Urgent PO Status
By rehan_syr in forum Oracle Apps TechnicalReplies: 1Last Post: 06-03-2009, 09:48 AM -
Urgent Help [po_accrual_reconcile_temp]
By RIAZ in forum Oracle Apps TechnicalReplies: 5Last Post: 05-20-2009, 02:30 PM -
ORA-24778: cannot open connections:URGENT
By pjsr in forum Server Administration and OptionsReplies: 6Last Post: 03-27-2009, 07:28 PM -
urgent need for Oracle DBA's in Woonsocket, RI
By JobsConnector in forum Jobs, Interviews and Business OppurtunitiesReplies: 0Last Post: 11-22-2008, 02:38 PM


LinkBack URL
About LinkBacks
Reply With Quote






