vote up 1 vote down star

Hello all,

is it possible to retrieve statistics about the minimal or maximal value of a numeric column in Oracle 10g? I have found the table USER_TAB_COL_STATISTICS having a LOW_VALUE and HIGH_VALUE column, but I am not sure whether those are the values I am looking for.

I need to find an efficient way to ask the DBS for those statistics. Using a regular MIN(a) and MAX(a) query would be too slow on large tables.

Thanks in advance.

flag

3 Answers

vote up 2 vote down check

Yes, LOW_VALUE and HIGH_VALUE will tell you the minimum and maximum values in the column but:

  • they are stored as RAW(32) columns, so the meaning will not be immediately apparent
  • they will be as of the last time statistics were gathered for the table, so may not be accurate (unless you explicitly gather stats before using them)

If you index the column then MIN(a) and MAX(a) should be very fast as in this example where T1 has 50000 rows and is indexed on OBJECT_ID:

SQL> select min(object_id) from t1;

MIN(OBJECT_ID)
--------------
           100

------------------------------------------------------------------------------------
| Id  | Operation                  | Name  | Rows  | Bytes | Cost (%CPU)| Time     |
------------------------------------------------------------------------------------
|   0 | SELECT STATEMENT           |       |     1 |     5 |     2   (0)| 00:00:01 |
|   1 |  SORT AGGREGATE            |       |     1 |     5 |            |          |
|   2 |   INDEX FULL SCAN (MIN/MAX)| T1_ID | 53191 |   259K|     2   (0)| 00:00:01 |
------------------------------------------------------------------------------------

Statistics
----------------------------------------------------------
          1  recursive calls
          0  db block gets
          2  consistent gets
          0  physical reads
          0  redo size
        419  bytes sent via SQL*Net to client
        380  bytes received via SQL*Net from client
          2  SQL*Net roundtrips to/from client
          0  sorts (memory)
          0  sorts (disk)
          1  rows processed

The result is the same if you select the MAX instead of the MIN. However, if you select the MIN and MAX in a single select statement the result is different:

SQL> select min(object_id), max(object_id) from t1;

MIN(OBJECT_ID) MAX(OBJECT_ID)
-------------- --------------
           100          72809


-------------------------------------------------------------------------------
| Id  | Operation             | Name  | Rows  | Bytes | Cost (%CPU)| Time     |
-------------------------------------------------------------------------------
|   0 | SELECT STATEMENT      |       |     1 |     5 |    34   (0)| 00:00:01 |
|   1 |  SORT AGGREGATE       |       |     1 |     5 |            |          |
|   2 |   INDEX FAST FULL SCAN| T1_ID | 53191 |   259K|    34   (0)| 00:00:01 |
-------------------------------------------------------------------------------


Statistics
----------------------------------------------------------
          0  recursive calls
          0  db block gets
        125  consistent gets
          0  physical reads
          0  redo size
        486  bytes sent via SQL*Net to client
        380  bytes received via SQL*Net from client
          2  SQL*Net roundtrips to/from client
          0  sorts (memory)
          0  sorts (disk)
          1  rows processed

This suggests that it may be better to get them separately, though I haven't conclusively proved that.

link|flag
Thanks Tony, that helps quite a lot :-). – Kage Jul 9 at 10:35
@Tony, What is the explain plan if you query both the min and the max? This is a halfway test. – Theo Jul 9 at 11:31
@Tony: Woah, ok. I have to change my implementation then. I tried to retrieve both at the same time... I'd vote you up, but I can't do that yet, but please accept my symbolic vote up :-). – Kage Jul 9 at 12:42
@Theo, I have updated my answer. Thanks. – Tony Andrews Jul 9 at 12:47
@kage: yes, it makes a big difference. I just found a 15M row table and tried it - 0.1 secs to select MIN or MAX separately, 8 seconds to select both at once! – Tony Andrews Jul 9 at 12:52
show 2 more comments
vote up 1 vote down

An example with a table containing numbers from 1 up to 1234:

SQL> create table t (nr) as select level from dual connect by level <= 1234
  2  /

Tabel is aangemaakt.

SQL> select min(nr)
  2       , max(nr)
  3    from t
  4  /

   MIN(NR)    MAX(NR)
---------- ----------
         1       1234

1 rij is geselecteerd.

If you analyze the table, the low_value and high_value columns contain the right numbers.

SQL> exec dbms_stats.gather_table_stats(user,'t')

PL/SQL-procedure is geslaagd.

SQL> select low_value
  2       , high_value
  3    from user_tab_columns
  4   where table_name = 'T'
  5     and column_name = 'NR'
  6  /

LOW_VALUE                                                        HIGH_VALUE
---------------------------------------------------------------- ----------------
C102                                                             C20D23

1 rij is geselecteerd.

They are raw, so they cannot be read easily. Using the utl_raw.cast_to_number function makes them readable:

SQL> select utl_raw.cast_to_number(low_value)
  2       , utl_raw.cast_to_number(high_value)
  3    from user_tab_columns
  4   where table_name = 'T'
  5     and column_name = 'NR'
  6  /

UTL_RAW.CAST_TO_NUMBER(LOW_VALUE) UTL_RAW.CAST_TO_NUMBER(HIGH_VALUE)
--------------------------------- ----------------------------------
                                1                               1234

1 rij is geselecteerd.

However, be careful: the numbers may be inaccurate when updates have taken place between the time the statistics were gathered and the time the query ran.

Regards, Rob.

link|flag
Thanks Rob, that helps too! Mmh, how would I determine which of the two methods (MIN/MAX vs. gather_table_stats) is more efficient? – Kage Jul 9 at 12:50
I would only consider gather_table_stats if I had a situation where new data is incoming only once a week and min/max values are selected several times every minute. If you have a situation where data changes more often - use indexes. – jva Jul 9 at 14:20
Indices need to be updates like statistics, don't they? I'm not really sure which one will be the case. The database middleware I'm developing should be pretty generic and I don't really know how often data will arrive in advance. But maybe one benefit of the MIN/MAX method is that it should work on any SQL-bases DBS whereas the gather statistics method is Oracle only. I am currently working with Oracle 10 below the middleware, but in the long run the system should work on any DBS. At the moment I only need the best solution for Oracle. – Kage Jul 9 at 14:28
@Rob van Wijk, Is it possible to solve this problem with a fast refreshed materialized view? – Theo Jul 9 at 14:28
In a normal database production environment, you'll already have a statistics gathering job that runs on a regular basis. I'm not suggesting to gather statistics each time before your query. In short: If you need to be accurate, use Tony's solution. If not, use the data dictionary's low and high value columns. – Rob van Wijk Jul 10 at 7:20
show 6 more comments
vote up 1 vote down

The other answers here (using an index fast full scan; or examining the user_tab_columns statistics) are excellent.

Here's another method that might be suitable - if you're only interested in a rough estimate, you can use the SAMPLE clause (and adjust the sample size up or down depending on how accurate you need it):

SELECT max(value), min(value) FROM t SAMPLE(1);

This takes a 1% sample from the table. It will generally sample different rows each time it is run, so don't expect the results to be identical run-to-run. If you want it to run quicker, you can have lower sample sizes, e.g. SAMPLE(0.01), or if you want to sample half the table, SAMPLE(50).

The advantage of this approach over the "analyze, then-query-user-tab-cols" approach is that the analyze runs queries like this anyway in order to generate the statistics - so doing it this way may mean less work overall.

link|flag
This sounds great too! The good thing is that I don't have to rely on the admin being smart enough to create and update the table stats regularily. Thanks Jeffrey! – Kage Jul 27 at 14:13
Another question about this: I tried to run this on a small table and it seems to me that if the percentage is too low then I won't get any results. – Kage Jul 27 at 14:16
Yes, that's very likely. Think of it this way: SAMPLE(50) means that a coin will be flipped for each row: if it comes up heads, the row is returned; if it comes up tails, the row will be ignored. The lower the percentage, the higher the chances are that no rows will be selected. You have to adjust the SAMPLE percentage according to the expected number of rows in the table. – Jeffrey Kemp Jul 28 at 0:23

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.