vote up 3 vote down star

I wrote a PL/SQL script to set a sequence's value to the maximum value of a table's primary key:

DECLARE
  max_idn NUMERIC(18, 0);
  seq_nextval NUMERIC(18, 0);
  increment_amount NUMERIC(18, 0);
BEGIN
  SELECT MAX(mbr_idn)
  INTO max_idn
  FROM mbr;

  SELECT mbr_seq.nextval
  INTO seq_nextval
  FROM DUAL;

  increment_amount := max_idn - seq_nextval;

  EXECUTE IMMEDIATE 
    'ALTER SEQUENCE mbr_seq
     increment by ' || increment_amount;
END;

However, I get an error if the sequence's MINVALUE is greater than the max primary key:

ORA-08004: sequence MBR_SEQ.NEXTVAL goes below MINVALUE and cannot be instantiated

ORA-06512: at line 10

What's the easiest way to say "increment the sequence by increment_amount, but don't go below MINVALUE"?

flag

1  
Erm, is there any chance your current sequence value is higher than the max value from the table column? You might want to change the script to only alter the sequence, if that is not the case. – jhartelt Sep 3 at 17:38
1  
The other thing is, remember to reset the INCREMENT BY after selecting NEXTVAL once. – APC Sep 4 at 8:41

1 Answer

vote up 2 vote down check

You can query the DBA_SEQUENCES table to get the MIN_VALUE

SELECT min_value
  INTO l_min_value
  FROM all_sequences
 WHERE sequence_name = 'MBR_SEQ'
   AND owner = <<sequence owner>>

You could then incorporate that into your code, i.e.

increment_amount := GREATEST( max_idn, l_min_value ) - seq_nextval;
link|flag
Are there any other ways to do this? Unfortunately, I don't think the user we're using has access to the dba_sequences view. – Jason Baker Sep 3 at 17:16
3  
if the user can use (i.e. has SELECT privileges on) the sequence then it will appear in the ALL_SEQUENCES view. – dpbradley Sep 3 at 17:29
@dpbradley - Good point. Modified the code to use ALL_SEQUENCES instead. – Justin Cave Sep 3 at 19:01

Your Answer

Get an OpenID
or

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