F
Fran?ois Bourdages
I have a oracle table :
CREATE TABLE ADDRESS
(
ADDRESSID NUMBER(9) NOT NULL,
...
)
when i do a reverse engineering to have the model in vision for
entreprise architec, the number(9) become a numberps(9;0).
How can i do to make the number(x) stay a number(x) ?
CREATE TABLE ADDRESS
(
ADDRESSID NUMBER(9) NOT NULL,
...
)
when i do a reverse engineering to have the model in vision for
entreprise architec, the number(9) become a numberps(9;0).
How can i do to make the number(x) stay a number(x) ?