Hi,
I have created a table with primary key column declared as NUMBER (default specification).
Create table T
(
col1 primary key number,
col2 varchar2(10)
);
Then I populated this table using sequence. Now I want to modify the size of primary key column to number (15).
Is it possible without emptying the primary key column?