Datadictionary OpenWave 3.1.25
Previous topic Chapter index Next topic

Table: tbgebruikersinformatie

 

 

Schema

public

 

Owner

waveuser005

 

Tablespace

(default)

 

Descriptions

Tabel (geanonimiseerd) met inloginformatie tbv statistiek

 

Fields

PK

FK

Name

Data type

Not null

Unique

Inherited

Default

Description

 

dnkey

serial

 

nextval('tbgebruikersinformatie_dnkey_seq'::regclass)

Primary key

 

 

dddatumtijdinlog

timestamp

 

 

 

 

Moment van inloggen

 

 

dvurl

varchar(200)

 

 

 

 

Het webadres van het product

 

 

dvusername

varchar(80)

 

 

 

 

De ingetypte gebruikersnaam bij inloggen hehashed

 

 

dvipadress

varchar(50)

 

 

 

 

Het IP adres van de gebruiker die probeert in te loggen.

 

 

dlcached

char(1)

 

 

 

'F'::bpchar

T of F. Indien T dan Pagina is wel/niet geladen in het geheugen

 

 

dnpredomloadtime

integer

 

 

 

 

De laadtijd voorafgaand het laden van de DOM tree.

 

 

dnloadtime

integer

 

 

 

 

Het laden van de DOM (tree).

 

 

dvbrowsername

varchar(20)

 

 

 

 

De naam van de browser

 

 

dvbrowserversion

varchar(20)

 

 

 

 

De browserversie van de gebruikte browser

 

 

dvbrowsercategory

varchar(20)

 

 

 

 

Type gebruiker: smartphone, tablet, desktop etc.

 

 

dvos

varchar(20)

 

 

 

 

Welk besturingssysteem de gebruiker heeft

 

 

dfscreendppx

double precision

 

 

 

 

De scherm-resolutie in Dots-per-pixel (dppx)

 

 

dvscreenresolution

varchar(20)

 

 

 

 

De schermresolutie, bijvoorbeeld 1920x1080

 

 

dvuserlanguage

varchar(10)

 

 

 

 

De taalinstelling van de browser van de gebruiker

 

 

dvuseragent

varchar(2000)

 

 

 

 

De useragent string die wordt meegegeven door de gebruiker

 

Foreign Keys

There are no foreign keys for table tbgebruikersinformatie

 

Check Constraints

Name

Condition

Description

chk_tbgebruikinfo_dlcached

dlcached = ANY (ARRAY['T'::bpchar, 'F'::bpchar])

 

cnn_tbgebruikinfo_dlcached

dlcached IS NOT NULL

 

 

Indices

Name

Type

Function

Fields

Primary Key

Unique

Description

cpk_tbgebruikersinformatie

btree

 

dnkey

 

idx_tbgebruikinfo_datum

btree

 

dddatumtijdinlog

 

 

 

idx_tbgebruikinfo_user

btree

 

dvusername

 

 

 

 

Triggers

There are no triggers for table tbgebruikersinformatie

 

Rules

There are no rules for table tbgebruikersinformatie

 

Policies

There are no policies for table tbgebruikersinformatie

 

Referenced

There are no tables referenced by table tbgebruikersinformatie

 

Properties

Property

Value

Inherited From

 

Rows

0

Pages

0

System

 

Temporary

 

With OID

 

Definition

CREATE TABLE public.tbgebruikersinformatie (
 dnkey SERIAL,
 dddatumtijdinlog TIMESTAMP WITHOUT TIME ZONE,
 dvurl VARCHAR(200),
 dvusername VARCHAR(80),
 dvipadress VARCHAR(50),
 dlcached CHAR(1) DEFAULT 'F'::bpchar,
 dnpredomloadtime INTEGER,
 dnloadtime INTEGER,
 dvbrowsername VARCHAR(20),
 dvbrowserversion VARCHAR(20),
 dvbrowsercategory VARCHAR(20),
 dvos VARCHAR(20),
 dfscreendppx DOUBLE PRECISION,
 dvscreenresolution VARCHAR(20),
 dvuserlanguage VARCHAR(10),
 dvuseragent VARCHAR(2000),
 CONSTRAINT cpk_tbgebruikersinformatie PRIMARY KEY(dnkey),
 CONSTRAINT chk_tbgebruikinfo_dlcached CHECK (dlcached = ANY (ARRAY['T'::bpchar, 'F'::bpchar])),
 CONSTRAINT cnn_tbgebruikinfo_dlcached CHECK (dlcached IS NOT NULL)
) ;

COMMENT ON TABLE public.tbgebruikersinformatie
IS 'Tabel (geanonimiseerd) met inloginformatie tbv statistiek';

COMMENT ON COLUMN public.tbgebruikersinformatie.dnkey
IS 'Primary key';

COMMENT ON COLUMN public.tbgebruikersinformatie.dddatumtijdinlog
IS 'Moment van inloggen';

COMMENT ON COLUMN public.tbgebruikersinformatie.dvurl
IS 'Het webadres van het product';

COMMENT ON COLUMN public.tbgebruikersinformatie.dvusername
IS 'De ingetypte gebruikersnaam bij inloggen hehashed';

COMMENT ON COLUMN public.tbgebruikersinformatie.dvipadress
IS 'Het IP adres van de gebruiker die probeert in te loggen.';

COMMENT ON COLUMN public.tbgebruikersinformatie.dlcached
IS 'T of F. Indien T dan Pagina is wel/niet geladen in het geheugen';

COMMENT ON COLUMN public.tbgebruikersinformatie.dnpredomloadtime
IS 'De laadtijd voorafgaand het laden van de DOM tree.';

COMMENT ON COLUMN public.tbgebruikersinformatie.dnloadtime
IS 'Het laden van de DOM (tree).';

COMMENT ON COLUMN public.tbgebruikersinformatie.dvbrowsername
IS 'De naam van de browser';

COMMENT ON COLUMN public.tbgebruikersinformatie.dvbrowserversion
IS 'De browserversie van de gebruikte browser';

COMMENT ON COLUMN public.tbgebruikersinformatie.dvbrowsercategory
IS 'Type gebruiker: smartphone, tablet, desktop etc.';

COMMENT ON COLUMN public.tbgebruikersinformatie.dvos
IS 'Welk besturingssysteem de gebruiker heeft';

COMMENT ON COLUMN public.tbgebruikersinformatie.dfscreendppx
IS 'De scherm-resolutie in Dots-per-pixel (dppx)';

COMMENT ON COLUMN public.tbgebruikersinformatie.dvscreenresolution
IS 'De schermresolutie, bijvoorbeeld 1920x1080';

COMMENT ON COLUMN public.tbgebruikersinformatie.dvuserlanguage
IS 'De taalinstelling van de browser van de gebruiker';

COMMENT ON COLUMN public.tbgebruikersinformatie.dvuseragent
IS 'De useragent string die wordt meegegeven door de gebruiker';

CREATE INDEX idx_tbgebruikinfo_datum ON public.tbgebruikersinformatie
 USING btree (dddatumtijdinlog);

CREATE INDEX idx_tbgebruikinfo_user ON public.tbgebruikersinformatie
 USING btree (dvusername COLLATE pg_catalog."default");

This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) at 5-1-2022 14:13
Previous topic Chapter index Next topic