Anda di halaman 1dari 25

Sybase PowerDesigner

Physical Data Model Report


Model: VT_fisico
Report:

Author: Luis Murga


Version:
Date: 25/08/2010
Summary:

Physical Data Model VT_fisico

Report

Table of Contents
The 'Table of Contents' field needs to be updated!

Sybase PowerDesigner

25/08/2010Page 2 of 25

Physical Data Model

VT_fisico

I Specifications
Include specifications here...

PowerDesigner

25/08/2010

Page 3

Physical Data Model

VT_fisico

II Model information
II.1 Card of the model VT_fisico
Name
Code
Comment
DBMS
Database

PowerDesigner

VT_fisico
VT_FISICO
ORACLE Version 10g
<None>

25/08/2010

Page 4

Physical Data Model

III

VT_fisico

PDM Diagrams

III.1Model level diagrams


III.1.1

Diagram Mapa_fisico

articulos
articuloID
fabricanteID
nombre_articulo
precio

INTEGER
<pk>
INTEGER
<fk>
VARCHAR2(50)
NUMBER(8,2)

FK_ARTICULO_RELACION__FABRICAN

fabricantes
fabricanteID
INTEGER
<pk>
nombre_fabricante VARCHAR2(25)

PowerDesigner

25/08/2010

Page 5

Physical Data Model

IV

VT_fisico

Physical diagrams objects

IV.1 References
IV.1.1

Model level references

IV.1.1.1

Reference list

Name
Code
Parent Table
Relacion_Articulo_Fabri RELACION_ARTICUL fabricantes
cante
O_FABRICANTE

IV.1.1.2

Child Table
articulos

Reference Relacion_Articulo_Fabricante

IV.1.1.2.1 Card of the reference Relacion_Articulo_Fabricante


Relacion_Articulo_Fabricante
RELACION_ARTICULO_FABRICANTE
fabricantes
articulos

Name
Code
Parent Table
Child Table

IV.1.1.2.2 Code preview of Relacion_Articulo_Fabricante


alter table ARTICULOS
drop constraint FK_ARTICULO_RELACION__FABRICAN;
alter table ARTICULOS
add constraint FK_ARTICULO_RELACION__FABRICAN foreign key (FABRICANTEID)
references FABRICANTES (FABRICANTEID);

IV.1.1.2.3 List of diagrams containing reference


Relacion_Articulo_Fabricante
Name

Code

Mapa_fisico

MAPA_FISICO

IV.1.1.2.4 Reference join list for reference Relacion_Articulo_Fabricante


Parent Table Column
fabricanteID

Child Table Column


fabricanteID

IV.1.1.2.5 Extended Attribute List of reference


Relacion_Articulo_Fabricante
Name

PowerDesigner

Data Type

Value

25/08/2010

Target Name

Page 6

Physical Data Model

Disable
ExceptionsInto
ExtReferenceDeferOption
Rely
Validate

PowerDesigner

VT_fisico

(Boolean)
false
(String)
ExtConstraintDeferr
ed
(Boolean)
false
(Boolean)
true

25/08/2010

ORACLE Version 10g


ORACLE Version 10g
ORACLE Version 10g
ORACLE Version 10g
ORACLE Version 10g

Page 7

Physical Data Model

VT_fisico

IV.2 Tables
IV.2.1

Model level tables

IV.2.1.1

Table list

Name

Code

articulos
fabricantes

ARTICULOS
FABRICANTES

IV.2.1.2

Table columns list

Name

Code

articuloID
fabricanteID
nombre_articulo
precio
fabricanteID
nombre_fabricante

IV.2.1.3

ARTICULOID
FABRICANTEID
NOMBRE_ARTICULO
PRECIO
FABRICANTEID
NOMBRE_FABRICANTE

Table keys list

Name

Code
IDENTIFIER_1
IDENTIFIER_1

Identifier_1
Identifier_1

IV.2.1.4
Name

Table
articulos
fabricantes

Table indexes list


Code

Unique Cluster Primary Foreign Alternat


Table
Key
e Key
ARTICULOS_PK ARTICULOS_PK TRUE FALSE TRUE FALSE FALSE articulos
RELACION_ARTI RELACION_ARTI FALSE FALSE FALSE TRUE FALSE articulos
CULO_FABRICA CULO_FABRICA
NTE_FK
NTE_FK
FABRICANTES_P FABRICANTES_P TRUE FALSE TRUE FALSE FALSE fabricantes
K
K

IV.2.1.5

Table articulos

IV.2.1.5.1 Card of the table articulos


Name
Code
DBMS

PowerDesigner

articulos
ARTICULOS
ORACLE Version 10g

25/08/2010

Page 8

Physical Data Model

VT_fisico

IV.2.1.5.2 Constraint name of table articulos


CKT_ARTICULOS

IV.2.1.5.3 Server check expression of table articulos


%RULES%

IV.2.1.5.4 Code preview of articulos


alter table ARTICULOS
drop constraint FK_ARTICULO_RELACION__FABRICAN;
drop index RELACION_ARTICULO_FABRICANTE_F;
drop index ARTICULOS_PK;
drop table ARTICULOS cascade constraints;
/*==============================================================*/
/* Table: ARTICULOS
*/
/*==============================================================*/
create table ARTICULOS (
ARTICULOID
INTEGER
not null,
FABRICANTEID
INTEGER,
NOMBRE_ARTICULO VARCHAR2(50),
PRECIO
NUMBER(8,2),
constraint PK_ARTICULOS primary key (ARTICULOID)
);
comment on table ARTICULOS is
'Aqui se almacenaran los datos de los articulos';
/*==============================================================*/
/* Index: ARTICULOS_PK
*/
/*==============================================================*/
create unique index ARTICULOS_PK on ARTICULOS (
ARTICULOID ASC
);
/*==============================================================*/
/* Index: RELACION_ARTICULO_FABRICANTE_F
*/
/*==============================================================*/
create index RELACION_ARTICULO_FABRICANTE_F on ARTICULOS (
FABRICANTEID ASC
);
alter table ARTICULOS
add constraint FK_ARTICULO_RELACION__FABRICAN foreign key (FABRICANTEID)
references FABRICANTES (FABRICANTEID);

IV.2.1.5.5 List of diagrams containing table articulos


Name
Mapa_fisico

PowerDesigner

Code
MAPA_FISICO

25/08/2010

Page 9

Physical Data Model

VT_fisico

IV.2.1.5.6 Reference from list of the table articulos


Name
Code
Foreign Key Columns
Relacion_Articulo_Fabricante RELACION_ARTICULO_FA fabricanteID
BRICANTE

IV.2.1.5.7 Dependent Object list of table articulos


Name
Relacion_Articulo_Fabricante

Code
Class Name
RELACION_ARTICULO_FABRICAN Reference
TE

IV.2.1.5.8 Extended Attribute list of table articulos


Name
Data Type
ExtTableType
ExtTableTypeList
OnCommit
(Physical Option)
PhysicalPropertiesClusterPres (Physical Option)
ence
PhysicalPropertiesCompressCl (Physical Option)
ause
PhysicalPropertiesOrganizatio (Physical Option)
n
PhysicalPropertiesSegmentAtt (Physical Option)
ributesClause
PhysicalPropertiesWithoutClu (Physical Option)
ster
TablePropertiesTablePartitioni (Physical Option)
ngClausesHashPartitioningCla
usePresence
TablePropertiesTablePartitioni (Physical Option)
ngClausesListPartitioningClau
sePresence
TablePropertiesTablePartitioni (Physical Option)
ngClausesRangeOrComposite
PartitioningClausePresence

Value
false

Target Name
ORACLE Version 10g
ORACLE Version 10g
ORACLE Version 10g
ORACLE Version 10g

false

ORACLE Version 10g


ORACLE Version 10g

true

ORACLE Version 10g

false

ORACLE Version 10g

false

ORACLE Version 10g

false

ORACLE Version 10g

IV.2.1.5.9 Column list of the table articulos


Name
articuloID
fabricanteID
nombre_articulo
precio

PowerDesigner

Code
ARTICULOID
FABRICANTEID
NOMBRE_ARTICULO
PRECIO

25/08/2010

Page 10

Physical Data Model

VT_fisico

IV.2.1.5.10

Column articuloID of table articulos

IV.2.1.5.10.1

Card of the column articuloID of the table articulos

articuloID
ARTICULOID
INTEGER
TRUE

Name
Code
Data Type
Mandatory

IV.2.1.5.10.2

Constraint name of column articuloID of table articulos

CKC_ARTICULOID_ARTICULO

IV.2.1.5.10.3

Minimum Value
Maximum Value
Default Value
Unit
Format
Uppercase
Lowercase
Cannot Modify
List of Values

Standard check of column articuloID of table articulos

FALSE
FALSE
FALSE

IV.2.1.5.10.4

Server check expression of column articuloID of table articulos

%MINMAX% and %LISTVAL% and %UPPER% and %LOWER% and %RULES%

IV.2.1.5.10.5

Dependent Object list of column articuloID

Name

Code

articuloID
Identifier_1
IV.2.1.5.10.6

Name
ExtColumnDeferOption
ExtNotNullConstraintName
ExtNotNullDeferOption

IV.2.1.5.11.1

PowerDesigner

Extended Attribute List of column articuloID

Data Type
ExtConstraintDeferr
ed
(String)
ExtConstraintDeferr
ed

IV.2.1.5.11
Name

Class Name
Index Column
Key

ARTICULOID
IDENTIFIER_1

Value

Target Name
ORACLE Version 10g
ORACLE Version 10g
ORACLE Version 10g

Column fabricanteID of table articulos


Card of the column fabricanteID of the table articulos

fabricanteID

25/08/2010

Page 11

Physical Data Model

VT_fisico

FABRICANTEID
INTEGER
FALSE

Code
Data Type
Mandatory

IV.2.1.5.11.2

Constraint name of column fabricanteID of table articulos

CKC_FABRICANTEID_ARTICULO

IV.2.1.5.11.3

Minimum Value
Maximum Value
Default Value
Unit
Format
Uppercase
Lowercase
Cannot Modify
List of Values

Standard check of column fabricanteID of table articulos

FALSE
FALSE
FALSE

IV.2.1.5.11.4

Server check expression of column fabricanteID of table articulos

%MINMAX% and %LISTVAL% and %UPPER% and %LOWER% and %RULES%

IV.2.1.5.11.5

Dependent Object list of column fabricanteID

Name

Code

fabricanteID
<Unknown>

FABRICANTEID
<Unknown>
IV.2.1.5.11.6

Name
ExtColumnDeferOption
ExtNotNullConstraintName
ExtNotNullDeferOption

IV.2.1.5.12.1

PowerDesigner

Extended Attribute List of column fabricanteID

Data Type
ExtConstraintDeferr
ed
(String)
ExtConstraintDeferr
ed

IV.2.1.5.12
Name
Code
Data Type
Mandatory

Class Name
Index Column
Reference Join

Value

Target Name
ORACLE Version 10g
ORACLE Version 10g
ORACLE Version 10g

Column nombre_articulo of table articulos


Card of the column nombre_articulo of the table articulos

nombre_articulo
NOMBRE_ARTICULO
VARCHAR2(50)
FALSE

25/08/2010

Page 12

Physical Data Model

VT_fisico

IV.2.1.5.12.2

Constraint name of column nombre_articulo of table articulos

CKC_NOMBRE_ARTICULO_ARTICULO

IV.2.1.5.12.3

Minimum Value
Maximum Value
Default Value
Unit
Format
Uppercase
Lowercase
Cannot Modify
List of Values

Standard check of column nombre_articulo of table articulos

FALSE
FALSE
FALSE

IV.2.1.5.12.4
articulos

Server check expression of column nombre_articulo of table

%MINMAX% and %LISTVAL% and %UPPER% and %LOWER% and %RULES%

IV.2.1.5.12.5

Name
ExtColumnDeferOption
ExtNotNullConstraintName
ExtNotNullDeferOption

Extended Attribute List of column nombre_articulo

Data Type
ExtConstraintDeferr
ed
(String)
ExtConstraintDeferr
ed

IV.2.1.5.13
IV.2.1.5.13.1

Value

Target Name
ORACLE Version 10g
ORACLE Version 10g
ORACLE Version 10g

Column precio of table articulos


Card of the column precio of the table articulos

precio
PRECIO
NUMBER(8,2)
FALSE

Name
Code
Data Type
Mandatory

IV.2.1.5.13.2

Constraint name of column precio of table articulos

CKC_PRECIO_ARTICULO

IV.2.1.5.13.3

Standard check of column precio of table articulos

Minimum Value
Maximum Value
Default Value
Unit
Format

PowerDesigner

25/08/2010

Page 13

Physical Data Model

VT_fisico

FALSE
FALSE
FALSE

Uppercase
Lowercase
Cannot Modify
List of Values

IV.2.1.5.13.4

Server check expression of column precio of table articulos

%MINMAX% and %LISTVAL% and %UPPER% and %LOWER% and %RULES%

IV.2.1.5.13.5

Name
ExtColumnDeferOption
ExtNotNullConstraintName
ExtNotNullDeferOption

Extended Attribute List of column precio

Data Type
ExtConstraintDeferr
ed
(String)
ExtConstraintDeferr
ed

IV.2.1.5.14

Value

Target Name
ORACLE Version 10g
ORACLE Version 10g
ORACLE Version 10g

Key list of the table articulos

Name

Code

Identifier_1

IDENTIFIER_1

IV.2.1.5.15
IV.2.1.5.15.1

Primary
TRUE

Key Identifier_1 of table articulos


Card of the key Identifier_1 of the table articulos

Identifier_1
IDENTIFIER_1
articulos

Name
Code
Table

IV.2.1.5.15.2

Code preview of Identifier_1

alter table ARTICULOS


drop primary key cascade;

IV.2.1.5.15.3

Column list of the key Identifier_1

Name
articuloID

ARTICULOID
IV.2.1.5.15.4

Name
ARTICULOS_PK

PowerDesigner

Code

Dependent Object list of key Identifier_1

Code
ARTICULOS_PK

25/08/2010

Class Name
Index

Page 14

Physical Data Model

VT_fisico

IV.2.1.5.15.5

Extended Attribute List of key Identifier_1

Name
Data Type
ConstraintStateDeferrable
(Physical Option)
ConstraintStateEnable
(Physical Option)
ConstraintStateExceptionsInto (Physical Option)
ConstraintStateInitially
(Physical Option)
ConstraintStateRelyClause
(Physical Option)
ConstraintStateUsingIndex
(Physical Option)
ConstraintStateValidateClause (Physical Option)

IV.2.1.5.16
Name

Code

IV.2.1.5.17.1

Target Name
ORACLE Version 10g
ORACLE Version 10g
ORACLE Version 10g
ORACLE Version 10g
ORACLE Version 10g
ORACLE Version 10g
ORACLE Version 10g

false

Index list of the table articulos


Unique

ARTICULOS_PK ARTICULOS_PK TRUE


RELACION_ARTI RELACION_ARTI FALSE
CULO_FABRICAN CULO_FABRICAN
TE_FK
TE_FK

IV.2.1.5.17

Value

Cluster
FALSE
FALSE

Primary
TRUE
FALSE

Foreign
Alternate
Key
Key
FALSE
FALSE
TRUE
FALSE

Index ARTICULOS_PK of table articulos


Card of the index ARTICULOS_PK of the table articulos

ARTICULOS_PK
ARTICULOS_PK
TRUE
FALSE
TRUE
FALSE
FALSE
articulos

Name
Code
Unique
Cluster
Primary
Foreign Key
Alternate Key
Table

IV.2.1.5.17.2

Code preview of ARTICULOS_PK

drop index ARTICULOS_PK;


/*==============================================================*/
/* Index: ARTICULOS_PK
*/
/*==============================================================*/
create unique index ARTICULOS_PK on ARTICULOS (
ARTICULOID ASC
);

IV.2.1.5.17.3

Column list of the index ARTICULOS_PK

Display Name
articuloID

PowerDesigner

Code
ARTICULOID

25/08/2010

Sort
Ascending

Page 15

Physical Data Model

VT_fisico

IV.2.1.5.17.4

Extended Attribute List of index ARTICULOS_PK

Name
Data Type
DomainIndexClauseIndextype (Physical Option)
Is
DomainIndexClauseIndextype (Physical Option)
IsParallel
DomainIndexClauseParameter (Physical Option)
sString
IndexAttributesComputeStatist (Physical Option)
ics
IndexAttributesInitrans
(Physical Option)
IndexAttributesKeyCompressi (Physical Option)
onCompress
IndexAttributesKeyCompressi (Physical Option)
onNocompress
IndexAttributesLoggingClause(Physical Option)
IndexAttributesOnline
(Physical Option)
IndexAttributesParallelClause (Physical Option)
Noparallel
IndexAttributesParallelClause (Physical Option)
Parallel
IndexAttributesPctfree
(Physical Option)
IndexAttributesPctused
(Physical Option)
IndexAttributesSort
(Physical Option)
IndexAttributesStorageBuffer (Physical Option)
Pool
IndexAttributesStorageFreelist (Physical Option)
Groups
IndexAttributesStorageFreelist (Physical Option)
s
IndexAttributesStorageInitial (Physical Option)
IndexAttributesStorageMaxext (Physical Option)
ents
IndexAttributesStorageMinext (Physical Option)
ents
IndexAttributesStorageNext (Physical Option)
IndexAttributesStorageOptima (Physical Option)
l
IndexAttributesStoragePctincr (Physical Option)
ease
IndexAttributesTablespace
(Physical Option)

PowerDesigner

Value
false

Target Name
ORACLE Version 10g
ORACLE Version 10g
ORACLE Version 10g

false

ORACLE Version 10g


ORACLE Version 10g
ORACLE Version 10g

false

ORACLE Version 10g

false
false

ORACLE Version 10g


ORACLE Version 10g
ORACLE Version 10g
ORACLE Version 10g
ORACLE Version 10g
ORACLE Version 10g
ORACLE Version 10g
ORACLE Version 10g
ORACLE Version 10g
ORACLE Version 10g
ORACLE Version 10g
ORACLE Version 10g
ORACLE Version 10g
ORACLE Version 10g
ORACLE Version 10g
ORACLE Version 10g
ORACLE Version 10g

25/08/2010

Page 16

Physical Data Model

VT_fisico

IV.2.1.5.18
Index RELACION_ARTICULO_FABRICANTE_FK of
table articulos
IV.2.1.5.18.1 Card of the index RELACION_ARTICULO_FABRICANTE_FK
of the table articulos

Name
Code
Unique
Cluster
Primary
Foreign Key
Alternate Key
Table

RELACION_ARTICULO_FABRICANTE_FK
RELACION_ARTICULO_FABRICANTE_FK
FALSE
FALSE
FALSE
TRUE
FALSE
articulos
IV.2.1.5.18.2

Code preview of RELACION_ARTICULO_FABRICANTE_FK

drop index RELACION_ARTICULO_FABRICANTE_F;


/*==============================================================*/
/* Index: RELACION_ARTICULO_FABRICANTE_F
*/
/*==============================================================*/
create index RELACION_ARTICULO_FABRICANTE_F on ARTICULOS (
FABRICANTEID ASC
);

IV.2.1.5.18.3 Column list of the index


RELACION_ARTICULO_FABRICANTE_FK

Display Name
fabricanteID

Code
FABRICANTEID

Sort
Ascending

IV.2.1.5.18.4 Extended Attribute List of index


RELACION_ARTICULO_FABRICANTE_FK

Name
Data Type
DomainIndexClauseIndextype (Physical Option)
Is
DomainIndexClauseIndextype (Physical Option)
IsParallel
DomainIndexClauseParameter (Physical Option)
sString
IndexAttributesComputeStatist (Physical Option)
ics
IndexAttributesInitrans
(Physical Option)
IndexAttributesKeyCompressi (Physical Option)
onCompress
IndexAttributesKeyCompressi (Physical Option)

PowerDesigner

Value
false

Target Name
ORACLE Version 10g
ORACLE Version 10g
ORACLE Version 10g

false

ORACLE Version 10g


ORACLE Version 10g
ORACLE Version 10g

false

25/08/2010

ORACLE Version 10g

Page 17

Physical Data Model

VT_fisico

onNocompress
IndexAttributesLoggingClause(Physical Option)
IndexAttributesOnline
(Physical Option)
IndexAttributesParallelClause (Physical Option)
Noparallel
IndexAttributesParallelClause (Physical Option)
Parallel
IndexAttributesPctfree
(Physical Option)
IndexAttributesPctused
(Physical Option)
IndexAttributesSort
(Physical Option)
IndexAttributesStorageBuffer (Physical Option)
Pool
IndexAttributesStorageFreelist (Physical Option)
Groups
IndexAttributesStorageFreelist (Physical Option)
s
IndexAttributesStorageInitial (Physical Option)
IndexAttributesStorageMaxext (Physical Option)
ents
IndexAttributesStorageMinext (Physical Option)
ents
IndexAttributesStorageNext (Physical Option)
IndexAttributesStorageOptima (Physical Option)
l
IndexAttributesStoragePctincr (Physical Option)
ease
IndexAttributesTablespace
(Physical Option)

IV.2.1.6

false
false

ORACLE Version 10g


ORACLE Version 10g
ORACLE Version 10g
ORACLE Version 10g
ORACLE Version 10g
ORACLE Version 10g
ORACLE Version 10g
ORACLE Version 10g
ORACLE Version 10g
ORACLE Version 10g
ORACLE Version 10g
ORACLE Version 10g
ORACLE Version 10g
ORACLE Version 10g
ORACLE Version 10g
ORACLE Version 10g
ORACLE Version 10g

Table fabricantes

IV.2.1.6.1 Card of the table fabricantes


fabricantes
FABRICANTES
ORACLE Version 10g

Name
Code
DBMS

IV.2.1.6.2 Constraint name of table fabricantes


CKT_FABRICANTES

IV.2.1.6.3 Server check expression of table fabricantes


%RULES%

IV.2.1.6.4 Code preview of fabricantes


alter table ARTICULOS
drop constraint FK_ARTICULO_RELACION__FABRICAN;

PowerDesigner

25/08/2010

Page 18

Physical Data Model

VT_fisico

drop index FABRICANTES_PK;


drop table FABRICANTES cascade constraints;
/*==============================================================*/
/* Table: FABRICANTES
*/
/*==============================================================*/
create table FABRICANTES (
FABRICANTEID
INTEGER
not null,
NOMBRE_FABRICANTE VARCHAR2(25),
constraint PK_FABRICANTES primary key (FABRICANTEID)
);
comment on table FABRICANTES is
'Aqui se almacenaran los datos de los fabricantes de los articulos';
/*==============================================================*/
/* Index: FABRICANTES_PK
*/
/*==============================================================*/
create unique index FABRICANTES_PK on FABRICANTES (
FABRICANTEID ASC
);

IV.2.1.6.5 List of diagrams containing table fabricantes


Name

Code

Mapa_fisico

MAPA_FISICO

IV.2.1.6.6 Reference to list of the table fabricantes


Name
Relacion_Articulo_Fabricante

Code
RELACION_ARTICULO_FABRICANTE

IV.2.1.6.7 Dependent Object list of table fabricantes


Name
Relacion_Articulo_Fabricante

Code
Class Name
RELACION_ARTICULO_FABRICAN Reference
TE

IV.2.1.6.8 Extended Attribute list of table fabricantes


Name
Data Type
ExtTableType
ExtTableTypeList
OnCommit
(Physical Option)
PhysicalPropertiesClusterPres (Physical Option)
ence
PhysicalPropertiesCompressCl (Physical Option)
ause
PhysicalPropertiesOrganizatio (Physical Option)
PowerDesigner

Value
false

Target Name
ORACLE Version 10g
ORACLE Version 10g
ORACLE Version 10g
ORACLE Version 10g

false
25/08/2010

ORACLE Version 10g


Page 19

Physical Data Model

VT_fisico

n
PhysicalPropertiesSegmentAtt (Physical Option)
ributesClause
PhysicalPropertiesWithoutClu (Physical Option)
ster
TablePropertiesTablePartitioni (Physical Option)
ngClausesHashPartitioningCla
usePresence
TablePropertiesTablePartitioni (Physical Option)
ngClausesListPartitioningClau
sePresence
TablePropertiesTablePartitioni (Physical Option)
ngClausesRangeOrComposite
PartitioningClausePresence

ORACLE Version 10g


true

ORACLE Version 10g

false

ORACLE Version 10g

false

ORACLE Version 10g

false

ORACLE Version 10g

IV.2.1.6.9 Column list of the table fabricantes


Name

Code

fabricanteID
nombre_fabricante

FABRICANTEID
NOMBRE_FABRICANTE

IV.2.1.6.10
IV.2.1.6.10.1

Name
Code
Data Type
Mandatory

Column fabricanteID of table fabricantes


Card of the column fabricanteID of the table fabricantes

fabricanteID
FABRICANTEID
INTEGER
TRUE
IV.2.1.6.10.2

Constraint name of column fabricanteID of table fabricantes

CKC_FABRICANTEID_FABRICAN

IV.2.1.6.10.3

Minimum Value
Maximum Value
Default Value
Unit
Format
Uppercase
Lowercase
Cannot Modify
List of Values

PowerDesigner

Standard check of column fabricanteID of table fabricantes

FALSE
FALSE
FALSE

25/08/2010

Page 20

Physical Data Model

VT_fisico

IV.2.1.6.10.4

Server check expression of column fabricanteID of table fabricantes

%MINMAX% and %LISTVAL% and %UPPER% and %LOWER% and %RULES%

IV.2.1.6.10.5

Dependent Object list of column fabricanteID

Name

Code

fabricanteID
<Unknown>
Identifier_1

FABRICANTEID
<Unknown>
IDENTIFIER_1
IV.2.1.6.10.6

Name
ExtColumnDeferOption
ExtNotNullConstraintName
ExtNotNullDeferOption

Extended Attribute List of column fabricanteID

Data Type
ExtConstraintDeferr
ed
(String)
ExtConstraintDeferr
ed

IV.2.1.6.11
IV.2.1.6.11.1

Name
Code
Data Type
Mandatory

Class Name
Index Column
Reference Join
Key

Value

Target Name
ORACLE Version 10g
ORACLE Version 10g
ORACLE Version 10g

Column nombre_fabricante of table fabricantes


Card of the column nombre_fabricante of the table fabricantes

nombre_fabricante
NOMBRE_FABRICANTE
VARCHAR2(25)
FALSE
IV.2.1.6.11.2

Constraint name of column nombre_fabricante of table fabricantes

CKC_NOMBRE_FABRICANTE_FABRICAN

IV.2.1.6.11.3

Minimum Value
Maximum Value
Default Value
Unit
Format
Uppercase
Lowercase
Cannot Modify
List of Values

Standard check of column nombre_fabricante of table fabricantes

FALSE
FALSE
FALSE

IV.2.1.6.11.4 Server check expression of column nombre_fabricante of table


fabricantes
%MINMAX% and %LISTVAL% and %UPPER% and %LOWER% and %RULES%

PowerDesigner

25/08/2010

Page 21

Physical Data Model

VT_fisico

IV.2.1.6.11.5

Name
ExtColumnDeferOption
ExtNotNullConstraintName
ExtNotNullDeferOption

Extended Attribute List of column nombre_fabricante

Data Type
ExtConstraintDeferr
ed
(String)
ExtConstraintDeferr
ed

IV.2.1.6.12

Value

Target Name
ORACLE Version 10g
ORACLE Version 10g
ORACLE Version 10g

Key list of the table fabricantes

Name

Code

Identifier_1

Primary
TRUE

IDENTIFIER_1

IV.2.1.6.13
IV.2.1.6.13.1

Key Identifier_1 of table fabricantes


Card of the key Identifier_1 of the table fabricantes

Identifier_1
IDENTIFIER_1
fabricantes

Name
Code
Table

IV.2.1.6.13.2

Code preview of Identifier_1

alter table FABRICANTES


drop primary key cascade;

IV.2.1.6.13.3

Column list of the key Identifier_1

Name
fabricanteID

Code
FABRICANTEID

IV.2.1.6.13.4

Name
FABRICANTES_PK
Relacion_Articulo_Fabricante

IV.2.1.6.13.5

Dependent Object list of key Identifier_1

Code
Class Name
FABRICANTES_PK
Index
RELACION_ARTICULO_FABRICAN Reference
TE
Extended Attribute List of key Identifier_1

Name
Data Type
ConstraintStateDeferrable
(Physical Option)
ConstraintStateEnable
(Physical Option)
ConstraintStateExceptionsInto (Physical Option)
ConstraintStateInitially
(Physical Option)
ConstraintStateRelyClause
(Physical Option)

PowerDesigner

Value

25/08/2010

Target Name
ORACLE Version 10g
ORACLE Version 10g
ORACLE Version 10g
ORACLE Version 10g
ORACLE Version 10g

Page 22

Physical Data Model

VT_fisico

ConstraintStateUsingIndex
(Physical Option)
ConstraintStateValidateClause (Physical Option)

IV.2.1.6.14
Name

Code

IV.2.1.6.15.1

Name
Code
Unique
Cluster
Primary
Foreign Key
Alternate Key
Table

ORACLE Version 10g


ORACLE Version 10g

Index list of the table fabricantes


Unique

FABRICANTES_P FABRICANTES_P TRUE


K
K

IV.2.1.6.15

false

Cluster
FALSE

Primary
TRUE

Foreign
Alternate
Key
Key
FALSE
FALSE

Index FABRICANTES_PK of table fabricantes


Card of the index FABRICANTES_PK of the table fabricantes

FABRICANTES_PK
FABRICANTES_PK
TRUE
FALSE
TRUE
FALSE
FALSE
fabricantes
IV.2.1.6.15.2

Code preview of FABRICANTES_PK

drop index FABRICANTES_PK;


/*==============================================================*/
/* Index: FABRICANTES_PK
*/
/*==============================================================*/
create unique index FABRICANTES_PK on FABRICANTES (
FABRICANTEID ASC
);

IV.2.1.6.15.3

Display Name
fabricanteID
IV.2.1.6.15.4

Column list of the index FABRICANTES_PK

Code
FABRICANTEID

Extended Attribute List of index FABRICANTES_PK

Name
Data Type
DomainIndexClauseIndextype (Physical Option)
Is
DomainIndexClauseIndextype (Physical Option)
IsParallel
DomainIndexClauseParameter (Physical Option)
sString
PowerDesigner

Sort
Ascending

Value
false

Target Name
ORACLE Version 10g
ORACLE Version 10g
ORACLE Version 10g

25/08/2010

Page 23

Physical Data Model

IndexAttributesComputeStatist (Physical Option)


ics
IndexAttributesInitrans
(Physical Option)
IndexAttributesKeyCompressi (Physical Option)
onCompress
IndexAttributesKeyCompressi (Physical Option)
onNocompress
IndexAttributesLoggingClause(Physical Option)
IndexAttributesOnline
(Physical Option)
IndexAttributesParallelClause (Physical Option)
Noparallel
IndexAttributesParallelClause (Physical Option)
Parallel
IndexAttributesPctfree
(Physical Option)
IndexAttributesPctused
(Physical Option)
IndexAttributesSort
(Physical Option)
IndexAttributesStorageBuffer (Physical Option)
Pool
IndexAttributesStorageFreelist (Physical Option)
Groups
IndexAttributesStorageFreelist (Physical Option)
s
IndexAttributesStorageInitial (Physical Option)
IndexAttributesStorageMaxext (Physical Option)
ents
IndexAttributesStorageMinext (Physical Option)
ents
IndexAttributesStorageNext (Physical Option)
IndexAttributesStorageOptima (Physical Option)
l
IndexAttributesStoragePctincr (Physical Option)
ease
IndexAttributesTablespace
(Physical Option)

PowerDesigner

VT_fisico

false

ORACLE Version 10g


ORACLE Version 10g
ORACLE Version 10g

false

ORACLE Version 10g

false
false

ORACLE Version 10g


ORACLE Version 10g
ORACLE Version 10g
ORACLE Version 10g
ORACLE Version 10g
ORACLE Version 10g
ORACLE Version 10g
ORACLE Version 10g
ORACLE Version 10g
ORACLE Version 10g
ORACLE Version 10g
ORACLE Version 10g
ORACLE Version 10g
ORACLE Version 10g
ORACLE Version 10g
ORACLE Version 10g
ORACLE Version 10g

25/08/2010

Page 24

Physical Data Model

PowerDesigner

VT_fisico

25/08/2010

Page 25

Anda mungkin juga menyukai