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

Home -> Community -> Usenet -> c.d.o.server -> Re: Finding null values in a large table

Re: Finding null values in a large table

From: Billy Verreynne <vslabs_at_onwe.co.za>
Date: Fri, 06 Dec 2002 08:34:08 +0200
Message-ID: <aspggl$aj4$1@ctb-nnrp2.saix.net>


Tim Dry wrote:

> I have a fairly large table (millions of rows)

Under 10 million? That would be called a smallish table by some. :-)

> and I would like to be able to find rows that have a null value in a
> particular column.

<snipped>

I will leave the index and null discussion for someone else to get into. :-)

> Are there other solutions?

Yep. For a quick solution to find those "problem" rows. PQ. Something like this:

SELECT
  /*+ FULL(t) PARALLEL(t,10) */
  t.*
FROM my_big_table t
WHERE t.some_column IS NULL

--
Billy
Received on Fri Dec 06 2002 - 00:34:08 CST

Original text of this message

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