Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.misc -> Re: algorithm DB problem

Re: algorithm DB problem

From: Eitan M <no_spam_please_at_nospam_please.com>
Date: Sun, 4 Jun 2006 18:01:27 +0200
Message-ID: <e5ushp$gkd$1@news2.netvision.net.il>


The fastest algorithm I found for now :

select decode(my_column_1, null, 0, 1), decode(my_column_2, null, 0, 1), ... from my_table_1
...
(the same for 100 tables).
and so there is one full table scan for each table.

Thanks :) Received on Sun Jun 04 2006 - 11:01:27 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US