Re: how to optimise query for 10+ millions records
Hi Azhar,
Questions are:
- are tables out_route and in_route indexed by 'value' column ?
- is there a constraint "NOT NULL" on the 'value' column in these tables ?
If no, then change the structure of these tables:
alter IGNORE table out_route add constraint PRIMARY KEY ( value ) ;
alter IGNORE table in_route add constraint PRIMARY KEY ( value ) ;
Subject
Views
Written By
Posted
3237
February 09, 2012 03:30AM
1823
February 09, 2012 05:31AM
1513
February 09, 2012 05:38AM
1401
February 09, 2012 05:58PM
1357
February 11, 2012 11:26PM
1626
February 12, 2012 10:12PM
Re: how to optimise query for 10+ millions records
1490
February 13, 2012 02:18PM
1697
February 14, 2012 02:33AM
1507
February 14, 2012 07:24AM
1514
February 15, 2012 07:30AM
1976
February 16, 2012 03:54AM
1397
February 17, 2012 01:20AM
1368
February 17, 2012 03:57PM
1637
February 17, 2012 05:12PM
1469
February 18, 2012 07:18AM
1488
February 21, 2012 03:25AM
1522
February 24, 2012 10:45AM
1440
February 20, 2012 02:21AM
Sorry, you can't reply to this topic. It has been closed.
Content reproduced on this site is the property of the respective copyright holders.
It is not reviewed in advance by Oracle and does not necessarily represent the opinion
of Oracle or any other party.