Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can I list all sequences in a specific schema in HsqlDB 1.8?

Note: HsqlDB 1.8 does NOT support the information_schema tables introduced in 2.0

share|improve this question

1 Answer

up vote 4 down vote accepted

The following works for me:

SELECT *
FROM information_schema.system_sequences
share|improve this answer
This works with 1.8.x and 2.x. – fredt Nov 8 '11 at 11:19
@fredt: I thought in 2.x the sequences are stored in information_schema.sequences – a_horse_with_no_name Nov 8 '11 at 12:32
2.x supports both tables. – fredt Nov 8 '11 at 13:57

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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