I want to define a ID Column of SERIAL TYPE that will be my Primary Key. What is the maximum value that the Column with SERIAL TYPE will hold.
---------------------------------------------------------------------
I should have been more specific in my question. Here is it:
If I create a database TABLE like this... what is maximum value BBX_KEY will hold? I need to know that.
create table SPX.BBX (
BBX_KEY NO not null,
CHAS_KEY SI not null,
CAL_DATE SI not null,
);
NOTE: The above code has been generated in Powerdesigner.
Shaan