Tagged Questions
The nextval tag has no wiki summary.
5
votes
5answers
1k views
postgresql nextval generating existing values
I had to migrate from a mySql based ruby on rails app to using postgresql. No problems but one so far, and I don't know how to solve it.
The migration of data brought ids along with it, and ...
2
votes
2answers
812 views
How do I get the NextVal from an oracle Sequence thru NHibernate
I am working on c# .net 4.0 and using NHibernate to talk with an Oracle DB.
You would think something as simple as this is already addressed somewhere but sadly its not.
I need the NextVal from an ...
2
votes
1answer
3k views
Calling next value of a sequence in jpa
I have a class mapped as an Entity to persist it in a database. I have an id field as the primary key so every time the object is persisted the value of the id is retrieved from the sequence ...
2
votes
5answers
1k views
Select multiple ids from a PostgreSQL sequence
Is there a concise way to select the nextval for a PostgreSQL sequence multiple times in 1 query? This would be the only value being returned.
For example, I would like to do something really short ...
1
vote
4answers
2k views
get next sequence value from database using hibernate
I have an entity that has a NON-ID field that must be set from a sequence.
Currently, I fetch for the first value of the sequence, store it on the client's side, and compute from that vaule.
...
1
vote
3answers
182 views
nextval and curval confusion in PostgreSQL
What will happen if multiple user run the following query at the same time?
INSERT INTO "Retail"."Attributes"("AttributeId","AttributeCode","AttributeName")
...
0
votes
3answers
502 views
postgresql nextval question on sequences
I am trying to work with postgresql 'nextval' in PHP. How can I fill in the parenthesis in the third line in order to replace TXN_ID with the value of nextval('schemadb.audit_txn_seq')?
...
0
votes
2answers
1k views
nextval sequence for varchar in sql?
HI there, i was wondering if there was a way of making a nextval sequence for a varchar value?
I am using iSQL plus, oracle.
For e.g. I have a sales table which consists of sale_id, prod_id, ...
0
votes
2answers
322 views
serial type produce only even or odd numbers in postgresql
I want set some constraint to the serial type,it only produce even or odd numbers.