Brocade Communications Systems Brocade 8/12c Documentation Update page 257

Brocade network advisor documentation updates v11.1.x (53-1002363-03, august 2011)
Hide thumbs Also See for Brocade 8/12c:
Table of Contents

Advertisement

IN_VLAN smallint,
OUT_VLAN smallint,
SRC_MAC bytea,
DEST_MAC bytea
);
create table SFLOW_MINUTE_MAC_SLNUM (
MAX_SLNUM bigint
) with (autovacuum_vacuum_threshold=4);
-- Name: sflow_minute_mac_view; Type: VIEW; Schema: dcm; Owner: dcmadmin
create or replace view SFLOW_MINUTE_MAC_VIEW as
select DEVICE_ID, TIME_IN_SECONDS, SRC_MAC, DEST_MAC, IN_VLAN, OUT_VLAN, FRAMES,
BYTES
from SFLOW_MINUTE_MAC
where SLNUM <= (select MAX_SLNUM from SFLOW_MINUTE_MAC_SLNUM fetch first 1 rows
only)
union all
select DEVICE_ID, TIME_IN_SECONDS, SRC_MAC, DEST_MAC, IN_VLAN, OUT_VLAN, FRAMES,
BYTES
from SFLOW_STAGING
where SLNUM >= (select MIN_SLNUM from SFLOW_STAGING_SLNUM fetch first 1 rows
only);
-- Name: sflow_minute_summary; Type: TABLE; Schema: dcm; Owner: dcmadmin;
Tablespace:
create table SFLOW_MINUTE_SUMMARY
(
SLNUM bigserial not null,
TIME_IN_SECONDS integer not null,
DEVICE_ID integer not null,
FRAMES bigint not null,
BYTES bigint not null
);
-- Name: sflow_minute_vlan; Type: TABLE; Schema: dcm; Owner: dcmadmin; Tablespace:
create table SFLOW_MINUTE_VLAN
(
SLNUM bigserial not null,
TIME_IN_SECONDS integer not null,
DEVICE_ID integer not null,
FRAMES bigint not null,
BYTES bigint not null,
IN_VLAN smallint,
OUT_VLAN smallint
);
create table SFLOW_MINUTE_VLAN_SLNUM (
MAX_SLNUM bigint
) with (autovacuum_vacuum_threshold=4);
-- Name: sflow_minute_vlan_view; Type: VIEW; Schema: dcm; Owner: dcmadmin
create or replace view SFLOW_MINUTE_VLAN_VIEW as
select DEVICE_ID, TIME_IN_SECONDS, IN_VLAN, OUT_VLAN, FRAMES, BYTES
from SFLOW_MINUTE_VLAN
where SLNUM <= (select MAX_SLNUM from SFLOW_MINUTE_VLAN_SLNUM fetch first 1 rows
only)
union all
select DEVICE_ID, TIME_IN_SECONDS, IN_VLAN, OUT_VLAN, FRAMES, BYTES
from SFLOW_STAGING
Brocade Network Advisor Documentation Updates
53-1002363-02
E
Views
249

Advertisement

Table of Contents
loading

This manual is also suitable for:

Network advisor 11.1.0Brocade bladesystem 4/24

Table of Contents