I have a sequence on postgresql 9.3 inside a schema.
I can do this:
SELECT last_value, increment_by from foo."SQ_ID";`
The quoting rules are painful. I think you want:
SELECT nextval('foo."SQ_ID"');
to prevent case-folding of SQ_ID.
SQ_ID