(select INCREMENT from TEST_DB.INFORMATION_SCHEMA.SEQUENCES
Why this is not working but it working in other properties retrieval
(select INCREMENT from TEST_DB.INFORMATION_SCHEMA.SEQUENCES
Why this is not working but it working in other properties retrieval
Increment is a reserved word, therefore you need to write your query as this:
select "INCREMENT" from TEST_DB.INFORMATION_SCHEMA.SEQUENCES