Joe Says:
You took the seq object default which I think it integer. You dont have to use that, you can put in "as integer" or "as bigint" etc.
If you use smallint then the largest value is 32767 (32K), if you use integer then the largest value is 2147483647 (2.1B), but if you use bigint then you have a whopping large number. I dont even know how to describe a number that big but it would be 9 with 18 digits after it, so something like 9000000000000000000.
|