Difference between revisions of "Public.stpnode (table)"

From dbscript Online Help
Jump to: navigation, search
(New page: == wikibot == {| border="1" cellpadding="5" cellspacing="0" style="border-collapse:collapse" |- | '''Table | public.stpnode |- |} {| border="1" cellpadding="5" cellspacing="0" style="bo...)
 
 
(2 intermediate revisions by the same user not shown)
Line 2: Line 2:
  
 
{| border="1" cellpadding="5" cellspacing="0" style="border-collapse:collapse"
 
{| border="1" cellpadding="5" cellspacing="0" style="border-collapse:collapse"
|-
+
|- valign="top"
 
| '''Table
 
| '''Table
 
| public.stpnode
 
| public.stpnode
|-
 
 
|}
 
|}
  
 
+
=== Columns ===
 
{| border="1" cellpadding="5" cellspacing="0" style="border-collapse:collapse"
 
{| border="1" cellpadding="5" cellspacing="0" style="border-collapse:collapse"
 
|- style="background:silver"
 
|- style="background:silver"
Line 15: Line 14:
 
| '''Nullable
 
| '''Nullable
 
| '''Default
 
| '''Default
| '''PK
+
| '''Description
| '''Index
+
 
+
|- valign="top"
|-
 
 
| nodeid
 
| nodeid
 +
| integer
 +
| not null
 
|  
 
|  
| not null
 
 
|  
 
|  
| pk_stpnode
+
|- valign="top"
| stpnode_nodeid_idx
 
|-
 
 
| basebridgeaddress
 
| basebridgeaddress
|  
+
| varchar(12)
 
| not null
 
| not null
 
|  
 
|  
 
|  
 
|  
| stpnode_basebridgeaddress_idx
+
|- valign="top"
|-
 
 
| basenumports
 
| basenumports
|  
+
| integer
 
| null
 
| null
 
|  
 
|  
 
|  
 
|  
|
+
|- valign="top"
|-
 
 
| basetype
 
| basetype
|  
+
| integer
 
| null
 
| null
 
|  
 
|  
 
|  
 
|  
|
+
|- valign="top"
|-
 
 
| stpprotocolspecification
 
| stpprotocolspecification
|  
+
| integer
 
| null
 
| null
 
|  
 
|  
 
|  
 
|  
|
+
|- valign="top"
|-
 
 
| stppriority
 
| stppriority
|  
+
| integer
 
| null
 
| null
 
|  
 
|  
 
|  
 
|  
|
+
|- valign="top"
|-
 
 
| stpdesignatedroot
 
| stpdesignatedroot
|  
+
| varchar(16)
 
| null
 
| null
 
|  
 
|  
 
|  
 
|  
| stpnode_stpdesignatedroot_idx
+
|- valign="top"
|-
 
 
| stprootcost
 
| stprootcost
|  
+
| integer
 
| null
 
| null
 
|  
 
|  
 
|  
 
|  
|
+
|- valign="top"
|-
 
 
| stprootport
 
| stprootport
|  
+
| integer
 
| null
 
| null
 
|  
 
|  
 
|  
 
|  
|
+
|- valign="top"
|-
 
 
| status
 
| status
|  
+
| char(1)
 
| not null
 
| not null
 
|  
 
|  
 
|  
 
|  
|
+
|- valign="top"
|-
 
 
| lastpolltime
 
| lastpolltime
|  
+
| timestamp without time zone
 
| not null
 
| not null
 
|  
 
|  
 
|  
 
|  
|
+
|- valign="top"
|-
 
 
| basevlan
 
| basevlan
|  
+
| integer
 
| not null
 
| not null
 
|  
 
|  
| pk_stpnode
 
 
|  
 
|  
|-
+
|- valign="top"
 
| basevlanname
 
| basevlanname
|  
+
| varchar(32)
 
| null
 
| null
|
 
 
|  
 
|  
 
|  
 
|  
 
|}
 
|}
  
 +
=== Primary Key ===
 +
{| border="1" cellpadding="5" cellspacing="0" style="border-collapse:collapse"
 +
|- style="background:silver"
 +
| '''Primary Key
 +
| '''Columns
 +
|- valign="top"
 +
| pk_stpnode
 +
| nodeid, basevlan
 +
|}
  
 +
=== Indexes ===
 +
{| border="1" cellpadding="5" cellspacing="0" style="border-collapse:collapse"
 +
|- style="background:silver"
 +
| '''Index
 +
| '''Type
 +
| '''Columns
  
 +
|- valign="top"
 +
| stpnode_basebridgeaddress_idx
 +
|
 +
| basebridgeaddress
 +
|- valign="top"
 +
| stpnode_nodeid_idx
 +
|
 +
| nodeid
 +
|- valign="top"
 +
| stpnode_stpdesignatedroot_idx
 +
|
 +
| stpdesignatedroot
 +
|}
 +
 +
=== Foreign Keys ===
 
{| border="1" cellpadding="5" cellspacing="0" style="border-collapse:collapse"
 
{| border="1" cellpadding="5" cellspacing="0" style="border-collapse:collapse"
 
|- style="background:silver"
 
|- style="background:silver"
Line 118: Line 133:
 
| '''Column
 
| '''Column
 
| '''Referenced Column
 
| '''Referenced Column
+
 
|-
+
|- valign="top"
 
| [[public.node_(table)|public.node]]
 
| [[public.node_(table)|public.node]]
 
| nodeid
 
| nodeid
 
| nodeid
 
| nodeid
 
|}
 
|}

Latest revision as of 00:40, 25 June 2010

wikibot[edit]

Table public.stpnode

Columns[edit]

Column Data Type Nullable Default Description
nodeid integer not null
basebridgeaddress varchar(12) not null
basenumports integer null
basetype integer null
stpprotocolspecification integer null
stppriority integer null
stpdesignatedroot varchar(16) null
stprootcost integer null
stprootport integer null
status char(1) not null
lastpolltime timestamp without time zone not null
basevlan integer not null
basevlanname varchar(32) null

Primary Key[edit]

Primary Key Columns
pk_stpnode nodeid, basevlan

Indexes[edit]

Index Type Columns
stpnode_basebridgeaddress_idx basebridgeaddress
stpnode_nodeid_idx nodeid
stpnode_stpdesignatedroot_idx stpdesignatedroot

Foreign Keys[edit]

Relation Column Referenced Column
public.node nodeid nodeid