Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> RE: Prevent FTS
col_1 and col_2 are primary key columns in all 3 tables.
There is no implicit data type conversion.
col_1 is varchar2 and col_2 is varchar2 in all 3 tables.
col width is also same in all 3 tables.
-----Original Message-----
Sent: Monday, January 06, 2003 11:52 PM
To: Gurnani, Manoj
If an implicit data type conversion occurs within the WHERE clause, a Full
Table Scan will always results.
It is equivalent to placing a function on an index.
Are all the columns involved indexed?
manoj.gurnani_at_orb itech.co.in To: Multiple recipients of list ORACLE-L <ORACLE-L_at_fatcity.com> Sent by: cc: root_at_fatcity.com Subject: Prevent FTS 01/06/2003 09:39 AM Please respond to ORACLE-L Hi All, I've 3 tables table x,y,z
where clause is :
where x.col_1 = y.col_1
and x.col_2 = y.col_2 and x.col_1 = z.col_1 and x.col_2 = z.col_2 and y.col_1 = z.col_1 and y.col_2 = z.col_2
Explain plan shows that there is a FTS of table z . what can be the reason for this and how to prevent this.
Thanks
Manoj
-- Please see the official ORACLE-L FAQ: http://www.orafaq.net -- Author: INET: manoj.gurnani_at_orbitech.co.in Fat City Network Services -- 858-538-5051 http://www.fatcity.com San Diego, California -- Mailing list and web hosting services --------------------------------------------------------------------- To REMOVE yourself from this mailing list, send an E-Mail message to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-LReceived on Mon Jan 06 2003 - 12:30:31 CST
(or the name of mailing list you want to be removed from). You may
also send the HELP command for other information (like subscribing). -- Please see the official ORACLE-L FAQ: http://www.orafaq.net -- Author: INET: manoj.gurnani_at_orbitech.co.in Fat City Network Services -- 858-538-5051 http://www.fatcity.com San Diego, California -- Mailing list and web hosting services --------------------------------------------------------------------- To REMOVE yourself from this mailing list, send an E-Mail message to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from). You may
also send the HELP command for other information (like subscribing).
![]() |
![]() |