Cluster aufbauen mit Slony-I

Hallo,

ich habe PostgreSQL 9.3 für Windows installiert und gleich im Anschluss über den Application Stack Builder Slony-I for PostgreSQL 9.3 (32 bit) v. 2.2.3-1.
Zunächst hat pgAdmin die Slony Skripte nicht gefunden. Über den Process Monitor habe ich herausgefunden, dass pgAdmin die Skripte nicht im “share” Ordner sucht, sondern in “bin”. Zudem hatten die von pgAdmin gesuchten Skripte andere Namen als die installierten. Dieses Problem wurde im Internet auch von anderen geschildert, die nach umbenennung der Dateien dann aber keine Probleme mehr hatten. Ich habe also die Namen der Dateien geändert (slony1_base.2.2.5.sql → slony1_base.2.2.0.sql; slony1_base.v83.2.2.5.sql ->slony1_base.v83.sql; slony1_base.v84.2.2.5.sql ->slony1_base.sql; slony1_funcs.2.2.5.sql->slony1_funcs.2.2.0.sql; slony1_funcs.v83.2.2.5.sql->slony1_funcs.v83.sql; slony1_funcs.v84.2.2.5.sql->slony1_funcs.sql) und nun werden sie gefunden. Wenn ich den ersten Cluster erstellen möchte, kommt jedoch die Fehlermeldung:

Fehler: Typ vactables existiert bereits

Kann mir jemand einen Tipp geben, was ich falsch mache? Ich habe auch schon pgAdmin separat neu installiert und auch slony-I, das hat nicht geholfen, danach habe ich PostgreSQL 9.3 neu installiert. Auch bei Installation von PostgreSQL 9.4 und 9.5 treten genau dieselben Probleme auf. Jetzt ist nach Löschen aller alten Sachen wieder eien saubere neue Version 9.3 installiert und die oben genannte Slony-I version über den stack Builder. Wenn ich die Dateien so umbenenne, wie sie von pgAdmin gesucht werden, kann ich kein Cluster erstellen, was ich jedoch brauche, da ein backup, dass ich wiederherstellen möchte, verlangt, dass der Knotenpunkt für die Schemata festgelegt wurde.


In SQL sieht der Fehler so aus:

CREATE SCHEMA _pgbench;


– slony1_base.v84.sql

– Version 8.3 specific parts of the basic replication schema.

– Copyright (c) 2007-2009, PostgreSQL Global Development Group
– Author: Jan Wieck, Afilias USA INC.


create type _pgbench.vactables as (nspname name, relname name);

comment on type _pgbench.vactables is ‘used as return type for SRF function TablesToVacuum’;

\


– slony1_base.v83.sql

– Version 8.3 specific parts of the basic replication schema.

– Copyright (c) 2007-2009, PostgreSQL Global Development Group
– Author: Jan Wieck, Afilias USA INC.


create type _pgbench.vactables as (nspname name, relname name);

comment on type _pgbench.vactables is ‘used as return type for SRF function TablesToVacuum’;

\


– slony1_funcs.v84.sql

– Version 8.4 specific part of the replication support functions.

– Copyright (c) 2007-2009, PostgreSQL Global Development Group
– Author: Jan Wieck, Afilias USA INC.



– FUNCTION ShouldSlonyVacuumTable (nspname, tabname)

– Returns ‘t’ if the table needs to be vacuumed by Slony-I
– Returns ‘f’ if autovac handles the table, so Slony-I should not
– or if the table is not needful altogether


create or replace function _pgbench.ShouldSlonyVacuumTable (i_nspname name, i_tblname name) returns boolean as
$$
declare
c_table oid;
c_namespace oid;
c_enabled boolean;
v_dummy int4;
begin
if not exists (select 1 from pg_catalog.pg_class c, pg_catalog.pg_namespace n
where c.relname = i_tblname and n.nspname = i_nspname and c.relnamespace = n.oid) then
return ‘f’::boolean; – if table does not exist, then don’t vacuum
end if;
select 1 into v_dummy from “pg_catalog”.pg_settings where name = ‘autovacuum’ and setting = ‘on’;
if not found then
return ‘t’::boolean; – If autovac is turned off, then we gotta vacuum
end if;

select into c_namespace oid from “pg_catalog”.pg_namespace where nspname = i_nspname;
if not found then
raise exception ‘Slony-I: namespace % does not exist’, i_nspname;
end if;
select into c_table oid from “pg_catalog”.pg_class where relname = i_tblname and relnamespace = c_namespace;
if not found then
raise warning ‘Slony-I: table % does not exist in namespace %/%’, i_tblname, c_namespace, i_nspname;
return ‘f’::boolean;
end if;

– So, the table is legit; try to look it up for autovacuum policy
if exists (select 1 from pg_class where ‘autovacuum_enabled=off’ = any (reloptions) and oid = c_table) then
return ‘t’::boolean; – Autovac is turned on, but this table is disabled
end if;

return ‘f’::boolean;

end;$$ language plpgsql;

comment on function _pgbench.ShouldSlonyVacuumTable (i_nspname name, i_tblname name) is
‘returns false if autovacuum handles vacuuming of the table, or if the table does not exist; returns true if Slony-I should manage it’;

create or replace function _pgbench.TruncateOnlyTable (name) returns void as
$$
begin
execute 'truncate only '|| _pgbench.slon_quote_input($1);
end;
$$
LANGUAGE plpgsql;

comment on function _pgbench.TruncateOnlyTable(name) is
‘Calls TRUNCATE ONLY, syntax supported in version >= 8.4’;

create or replace function _pgbench.alterTableAddTruncateTrigger (i_fqtable text, i_tabid integer) returns integer as $$
begin
execute 'create trigger “_pgbench_truncatetrigger” ’ ||
’ before truncate on ’ || i_fqtable || ’ for each statement execute procedure ’ ||
‘_pgbench.log_truncate(’ || i_tabid || ‘);’;
execute 'create trigger “_pgbench_truncatedeny” ’ ||
’ before truncate on ’ || i_fqtable || ’ for each statement execute procedure ’ ||
‘_pgbench.deny_truncate();’;
return 1;
end
$$ language plpgsql;

comment on function _pgbench.alterTableAddTruncateTrigger (i_fqtable text, i_tabid integer) is
‘function to add TRUNCATE TRIGGER’;

create or replace function _pgbench.alterTableDropTruncateTrigger (i_fqtable text, i_tabid integer) returns integer as $$
begin
execute 'drop trigger “_pgbench_truncatetrigger” ’ ||
’ on ’ || i_fqtable || ‘;’;
execute 'drop trigger “_pgbench_truncatedeny” ’ ||
’ on ’ || i_fqtable || ‘;’;
return 1;
end
$$ language plpgsql;

comment on function _pgbench.alterTableDropTruncateTrigger (i_fqtable text, i_tabid integer) is
‘function to drop TRUNCATE TRIGGER’;

create or replace function _pgbench.alterTableConfigureTruncateTrigger(i_fqname text, i_log_stat text, i_deny_stat text) returns integer as $$
begin
execute ‘alter table ’ || i_fqname || ’ ’ || i_log_stat ||
’ trigger “_pgbench_truncatetrigger”;’;
execute ‘alter table ’ || i_fqname || ’ ’ || i_deny_stat ||
’ trigger “_pgbench_truncatedeny”;’;
return 1;
end $$ language plpgsql;

comment on function _pgbench.alterTableConfigureTruncateTrigger(i_fqname text, i_log_stat text, i_deny_stat text) is
‘Configure the truncate triggers according to origin status.’;

create or replace function _pgbench.upgradeSchemaAddTruncateTriggers () returns integer as $$
begin

— Add truncate triggers
begin
perform _pgbench.alterTableAddTruncateTrigger(_pgbench.slon_quote_brute(tab_nspname) || ‘.’ || _pgbench.slon_quote_brute(tab_relname), tab_id)
from _pgbench.sl_table
where 2 <> (select count(*) from pg_catalog.pg_trigger,
pg_catalog.pg_class, pg_catalog.pg_namespace where
pg_trigger.tgrelid=pg_class.oid
AND pg_class.relnamespace=pg_namespace.oid
AND
pg_namespace.nspname = tab_nspname and tgname in (‘_pgbench_truncatedeny’, ‘_pgbench_truncatetrigger’) and
pg_class.relname = tab_relname
);

exception when unique_violation then
raise warning ‘upgradeSchemaAddTruncateTriggers() - uniqueness violation’;
raise warning ‘likely due to truncate triggers existing partially’;
raise exception ‘upgradeSchemaAddTruncateTriggers() - failure - [%][%]’, SQLSTATE, SQLERRM;
end;

– Activate truncate triggers for replica
perform _pgbench.alterTableConfigureTruncateTrigger(_pgbench.slon_quote_brute(tab_nspname) || ‘.’ || _pgbench.slon_quote_brute(tab_relname)
,‘disable’,‘enable’)
from _pgbench.sl_table
where tab_set not in (select set_id from _pgbench.sl_set where set_origin = _pgbench.getLocalNodeId(‘_pgbench’))
and exists (select 1 from pg_catalog.pg_trigger
where pg_trigger.tgname like ‘_pgbench_truncatetrigger’ and pg_trigger.tgenabled = ‘O’
and pg_trigger.tgrelid=tab_reloid )
and exists (select 1 from pg_catalog.pg_trigger
where pg_trigger.tgname like ‘_pgbench_truncatedeny’ and pg_trigger.tgenabled = ‘D’
and pg_trigger.tgrelid=tab_reloid);

– Activate truncate triggers for origin
perform _pgbench.alterTableConfigureTruncateTrigger(_pgbench.slon_quote_brute(tab_nspname) || ‘.’ || _pgbench.slon_quote_brute(tab_relname)
,‘enable’,‘disable’)
from _pgbench.sl_table
where tab_set in (select set_id from _pgbench.sl_set where set_origin = _pgbench.getLocalNodeId(‘_pgbench’))
and exists (select 1 from pg_catalog.pg_trigger
where pg_trigger.tgname like ‘_pgbench_truncatetrigger’ and pg_trigger.tgenabled = ‘D’
and pg_trigger.tgrelid=tab_reloid )
and exists (select 1 from pg_catalog.pg_trigger
where pg_trigger.tgname like ‘_pgbench_truncatedeny’ and pg_trigger.tgenabled = ‘O’
and pg_trigger.tgrelid=tab_reloid);

return 1;
end
$$ language plpgsql;

comment on function _pgbench.upgradeSchemaAddTruncateTriggers () is
‘Add ON TRUNCATE triggers to replicated tables.’;


– slony1_funcs.v83.sql

– Version 8.3 specific part of the replication support functions.

– Copyright (c) 2007-2009, PostgreSQL Global Development Group
– Author: Jan Wieck, Afilias USA INC.



– FUNCTION ShouldSlonyVacuumTable (nspname, tabname)

– Returns ‘t’ if the table needs to be vacuumed by Slony-I
– Returns ‘f’ if autovac handles the table, so Slony-I should not
– or if the table is not needful altogether


create or replace function _pgbench.ShouldSlonyVacuumTable (i_nspname name, i_tblname name) returns boolean as
$$
declare
c_table oid;
c_namespace oid;
c_enabled boolean;
v_dummy int4;
begin
if not exists (select 1 from pg_catalog.pg_class c, pg_catalog.pg_namespace n
where c.relname = i_tblname and n.nspname = i_nspname and c.relnamespace = n.oid) then
return ‘f’::boolean; – if table does not exist, then don’t vacuum
end if;
select 1 into v_dummy from “pg_catalog”.pg_settings where name = ‘autovacuum’ and setting = ‘on’;
if not found then
return ‘t’::boolean; – If autovac is turned off, then we gotta vacuum
end if;

select into c_namespace oid from “pg_catalog”.pg_namespace where nspname = i_nspname;
if not found then
raise exception ‘Slony-I: namespace % does not exist’, i_nspname;
end if;
select into c_table oid from “pg_catalog”.pg_class where relname = i_tblname and relnamespace = c_namespace;
if not found then
raise warning ‘Slony-I: table % does not exist in namespace %/%’, i_tblname, c_namespace, i_nspname;
return ‘f’::boolean;
end if;

– So, the table is legit; try to look it up for autovacuum policy
if exists (select 1 from pg_catalog.pg_autovacuum where vacrelid = c_table and enabled = ‘f’) then
return ‘t’::boolean; – Autovac is turned on, but this table is disabled
end if;

return ‘f’::boolean;

end;$$ language plpgsql;

comment on function _pgbench.ShouldSlonyVacuumTable (i_nspname name, i_tblname name) is
‘returns false if autovacuum handles vacuuming of the table, or if the table does not exist; returns true if Slony-I should manage it’;

create or replace function _pgbench.TruncateOnlyTable (name) returns void as
$$
begin
execute 'truncate '|| _pgbench.slon_quote_input($1);
end;
$$
LANGUAGE plpgsql;

comment on function _pgbench.TruncateOnlyTable(name) is
‘Calls TRUNCATE with out specifying ONLY, syntax supported in version 8.3’;

create or replace function _pgbench.alterTableAddTruncateTrigger (i_fqtable text, i_tabid integer) returns integer as $$
begin
return 0;
end
$$ language plpgsql;

comment on function _pgbench.alterTableAddTruncateTrigger (i_fqtable text, i_tabid integer) is
‘function to add TRUNCATE TRIGGER’;

create or replace function _pgbench.alterTableDropTruncateTrigger (i_fqtable text, i_tabid integer) returns integer as $$
begin
return 0;
end
$$ language plpgsql;

comment on function _pgbench.alterTableDropTruncateTrigger (i_fqtable text, i_tabid integer) is
‘function to drop TRUNCATE TRIGGER’;

create or replace function _pgbench.alterTableConfigureTruncateTrigger(i_fqname text, i_log_stat text, i_deny_stat text) returns integer as $$
begin
return 0;
end $$ language plpgsql;

comment on function _pgbench.alterTableConfigureTruncateTrigger(i_fqname text, i_log_stat text, i_deny_stat text) is
'disable deny access, enable log trigger on origin.

NOOP on PostgreSQL 8.3 because it does not support triggers ON TRUNCATE’;

create or replace function _pgbench.upgradeSchemaAddTruncateTriggers () returns integer as $$
begin
raise warning ‘This node is running PostgreSQL 8.3 - cannot apply TRUNCATE triggers’;
return 0;
end
$$ language plpgsql;

comment on function _pgbench.upgradeSchemaAddTruncateTriggers () is
‘Add ON TRUNCATE triggers to replicated tables. Not supported on PG 8.3, so a NOOP in this case.’;


SELECT _pgbench.initializelocalnode(1, ‘Master Node’);
SELECT _pgbench.enablenode(1);

– Create admin node
SELECT _pgbench.storeNode(99, ‘Admin Node’, false);
SELECT _pgbench.storepath(1, 99, ‘host=localhost port=5432 dbname=postgres’, 0);

Deine Fehlermeldungen deuten auf Version 8.3 hin, was schon seit etlichen Jahren klinisch tot ist.

Was genau hast Du vor zu erreichen? Für neue Projekte würde ich ganz schlicht und einfach von Slony abraten, da gibt es mit Streaming Replication seit 9.0 eine deutlich bessere Replikation. Und wenn Du mit 9.4 / 9.5 unterwegs bist UND eine logische Replikation suchst, dann mit pg_logical.

Ich brauche eine PostgreSQL Datenbank um dann backups aus einer anderen PostgreSQL Datenbank zu laden und die Daten dann mit R auszuwerten. Wenn ich das config backup wiederherstellen möchte (über pgAdmin) kommt die folgende
Fehlermeldung:
“Schemaknoten für das Objekt nicht gefunden TABLE DATA behaviors [Eigentümer: robindb]”

Also bin ich davon ausgegangen, dass ich erst mit Slony ein Cluster erstellen muss. Installiert ist definitiv 9.3 und Slony ist die einzige Replikation solution, die über den Stack builder angeboten wird, auch bei 9.5. Streaming Replikation finde ich nicht zum simplen download. Gehe ich richtig in der Annahme, dass pg_logical direkt mit PostgreSQL installiert werden würde? Allerdings waren die Problem nach download von Version 9.4 oder 9.5 von dieser Website

Community DL Page

genau dieselben wie oben für 9.3 geschildert.

Du brauchst keine Replikation, wenn Du ‘nur’ Backups in die DB laden willst. Slony ist eine Replikationslösung, bei der für jede zu replizierende Tabelle u.a. TRIGGER zu erstellen sind. Das ist alles recht hoher Aufwand. Streaming Replication dagegen ist sein Version 9.0 fest eingebaut, das ist kein externe solution. Aber, noch einmal, nur um einen Dump einzuspielen braucht Du weder Slony noch Streamin Replication und auch nicht pg_logical. Ach ja: es gibt neben der Community-Version von PostgreSQL (https://www.postgresql.org/download/) auch noch eine Version von EDB. Das ist was anderes - vereinfach gesagt.

Hallo Andreas,

also pg-logical ist im data Ordner der 9.5 Version enthalten. Aber: wenn ich die von Dir gepostete Website aufrufe und dann auf windows klicke lande ich später automatisch bei der Version von EDB. Gibt es für Windows noch andere Möglichkeiten?

dann ist es das wohl. pg_logical brauchst du nicht. Das läuft übrigens auch (noch) nicht unter Windows.

Wie kann ich denn die Fehlermeldung:

Schemaknoten für das Objekt nicht gefunden TABLE DATA behaviors [Eigentümer: robindb]

umschiffen? Was ist dafür zu tun?

mir sagt diese Fehlermeldung nix. Bis Du sicher, daß die von PostgreSQL kommt? Was genau steht im Serverlog?

Meinst Du das mit Serverlog? Sorry, für mich ist das alles völliges Neuland…

C:\Program Files\PostgreSQL\9.5\bin\pg_restore.exe --host localhost --port 5433 --username “postgres” --dbname “postgres” --no-password --list “F:\dbdumps\finov215_tst_config.backup”
;
; Archive created at 2016-03-01 05:17:46
; dbname: finov215_tst
; TOC Entries: 34
; Compression: -1
; Dump Version: 1.12-0
; Format: CUSTOM
; Integer: 4 bytes
; Offset: 8 bytes
; Dumped from database version: 9.3.9
; Dumped by pg_dump version: 9.3.9
;
;
; Selected TOC Entries:
;
4526; 0 21495 TABLE DATA config behaviors robindb
4531; 0 0 SEQUENCE SET config behaviors_id_seq robindb
4508; 0 21323 TABLE DATA config configurationitem robindb
4532; 0 0 SEQUENCE SET config configurationitem_id_seq robindb
4506; 0 21312 TABLE DATA config configurationsystemcomponent robindb
4533; 0 0 SEQUENCE SET config configurationsystemcomponent_id_seq robindb
4534; 0 0 SEQUENCE SET config dbmanagement_id_seq robindb
4535; 0 0 SEQUENCE SET config dbmanagementlog_id_seq robindb
4517; 0 21412 TABLE DATA config dbmanagementschema robindb
4536; 0 0 SEQUENCE SET config dbmanagementschema_id_seq robindb
4524; 0 21484 TABLE DATA config deterrencemeans robindb
4537; 0 0 SEQUENCE SET config deterrencemeans_id_seq robindb
4504; 0 21281 TABLE DATA config gridanalysis robindb
4538; 0 0 SEQUENCE SET config gridanalysis_id_seq robindb
4514; 0 21380 TABLE DATA config species robindb
4539; 0 0 SEQUENCE SET config species_id_seq robindb
4496; 0 21220 TABLE DATA config users robindb
4498; 0 21233 TABLE DATA config user_fieldapp_permissions robindb
4540; 0 0 SEQUENCE SET config user_fieldapp_permissions_id_seq robindb
4500; 0 21248 TABLE DATA config user_reportviewer_permissions robindb
4541; 0 0 SEQUENCE SET config user_reportviewer_permissions_id_seq robindb
4502; 0 21267 TABLE DATA config user_visualiser_permissions robindb
4542; 0 0 SEQUENCE SET config user_visualiser_permissions_id_seq robindb
4512; 0 21358 TABLE DATA config userpreferenceitem robindb
4543; 0 0 SEQUENCE SET config userpreferenceitem_id_seq robindb
4510; 0 21345 TABLE DATA config userpreferenceset robindb
4544; 0 0 SEQUENCE SET config userpreferenceset_id_seq robindb
4545; 0 0 SEQUENCE SET config users_id_seq robindb
4522; 0 21472 TABLE DATA config windmill robindb
4546; 0 0 SEQUENCE SET config windmill_id_seq robindb
4520; 0 21454 TABLE DATA config windmillshutdownruleset robindb
4547; 0 0 SEQUENCE SET config windmillshutdownruleset_id_seq robindb

Prozess beendete mit Exitcode 0.

Nein, das Serverlog enthält das Log des Servers, was Du zeigst ist das TOC (Table Of Contents) eines Dumps, welcher am 1. März diesen Jahres mit einer 9.3.9 - DB im Custom-Format erstellt wurde.

Warum erzeugst Du so ein Listfile, was hast Du damit vor?

Dieser listfile entsteht automatisch, wenn ich Wiederherstellen des (bei mir config.backup genannten) files wähle (ich arbeite wie gesagt mit pgAdmin). Ich habe 6 dump-files bekommen, die ich in einer PostgreSQL Datenbank “wiederherstellen” muss um an die Daten zu gelangen. Ich selbst brauche die Datenbank nicht zur Bearbeitung, sondern nur als Speicher, in dem mir die Daten zur Verfügung stehen. Ich habe die dump-files also nicht selbst erstellt und bin völliger Neuling in Sachen PostgreSQL und Programmierung.

Jetzt habe ich auch herausgefunden, was ein Logfile ist. Kann ich Dir den file ander zukommen lassen? Für hier ist er zu lang. Worauf soll ich im File achten? Ich poste gleich mal einzelne Stücke.

Möglicherweise müssen die 6 Dumps in einer bestimmten Reihenfolge eingespielt werden.

2016-07-25 10:29:56 CEST LOG Datenbanksystem wurde am 2016-07-25 10:29:50 CEST heruntergefahren
2016-07-25 10:29:56 CEST LOG MultiXact-Member-Wraparound-Schutz ist jetzt aktiviert
2016-07-25 10:29:56 CEST LOG Datenbanksystem ist bereit, um Verbindungen anzunehmen
2016-07-25 10:29:56 CEST LOG Autovacuum-Launcher startet
2016-07-25 11:19:14 CEST LOG Pointcloud (1.1.0) module loaded
2016-07-25 11:19:14 CEST ANWEISUNG CREATE EXTENSION pointcloud
2016-07-25 11:19:14 CEST WARNUNG Typeingabefunktion pointcloud_abs_in sollte nicht VOLATILE sein
2016-07-25 11:19:14 CEST WARNUNG Typausgabefunktion pointcloud_abs_out sollte nicht VOLATILE sein;

2016-07-25 12:59:29 CEST FEHLER Relation „behaviors_id_seq“ existiert nicht bei Zeichen 26
2016-07-25 12:59:29 CEST ANWEISUNG SELECT pg_catalog.setval(‘behaviors_id_seq’, 1, false);

2016-07-25 12:59:29 CEST FEHLER Relation „configurationitem“ existiert nicht bei Zeichen 13
2016-07-25 12:59:29 CEST ANWEISUNG INSERT INTO configurationitem (id, parent, name, value) VALUES (216, NULL, ‘GENERAL’, ‘’);
2016-07-25 12:59:29 CEST FEHLER Relation „configurationitem“ existiert nicht bei Zeichen 13
2016-07-25 12:59:29 CEST ANWEISUNG INSERT INTO configurationitem (id, parent, name, value) VALUES (2, NULL, ‘HOST’, ‘172.16.248.11’);
2016-07-25 12:59:29 CEST FEHLER Relation „configurationitem“ existiert nicht bei Zeichen 13
2016-07-25 12:59:29 CEST ANWEISUNG INSERT INTO configurationitem (id, parent, name, value) VALUES (217, NULL, ‘PULSERADAR’, ‘’);
2016-07-25 12:59:29 CEST FEHLER Relation „configurationitem“ existiert nicht bei Zeichen 13
2016-07-25 12:59:29 CEST ANWEISUNG INSERT INTO configurationitem (id, parent, name, value) VALUES (4, NULL, ‘PORT’, ‘5432’);
2016-07-25 12:59:29 CEST FEHLER Relation „configurationitem“ existiert nicht bei Zeichen 13
2016-07-25 12:59:29 CEST ANWEISUNG INSERT INTO configurationitem (id, parent, name, value) VALUES (5, 4, ‘DATASQLDB’, ‘’);
2016-07-25 12:59:29 CEST FEHLER Relation „configurationitem“ existiert nicht bei Zeichen 13
2016-07-25 12:59:29 CEST ANWEISUNG INSERT INTO configurationitem (id, parent, name, value) VALUES (7, 5, ‘SCHEME’, ‘public’);
2016-07-25 12:59:29 CEST FEHLER Relation „configurationitem“ existiert nicht bei Zeichen 13
2016-07-25 12:59:29 CEST ANWEISUNG INSERT INTO configurationitem (id, parent, name, value) VALUES (8, 5, ‘USERNAME’, ‘robindb’);
2016-07-25 12:59:29 CEST FEHLER Relation „configurationitem“ existiert nicht bei Zeichen 13
2016-07-25 12:59:29 CEST ANWEISUNG INSERT INTO configurationitem (id, parent, name, value) VALUES (9, 5, ‘PASSWORD’, ‘robindb’);
2016-07-25 12:59:29 CEST FEHLER Relation „configurationitem“ existiert nicht bei Zeichen 13
2016-07-25 12:59:29 CEST ANWEISUNG INSERT INTO configurationitem (id, parent, name, value) VALUES (11, 10, ‘HOST’, ‘172.16.248.11’);
2016-07-25 12:59:29 CEST FEHLER Relation „configurationitem“ existiert nicht bei Zeichen 13
2016-07-25 12:59:29 CEST ANWEISUNG INSERT INTO configurationitem (id, parent, name, value) VALUES (10, 4, ‘CONFIGSQLDB’, ‘’);
2016-07-25 12:59:29 CEST FEHLER Relation „configurationitem“ existiert nicht bei Zeichen 13
2016-07-25 12:59:29 CEST ANWEISUNG INSERT INTO configurationitem (id, parent, name, value) VALUES (12, 10, ‘PORT’, ‘5432’);
2016-07-25 12:59:29 CEST FEHLER Relation „configurationitem“ existiert nicht bei Zeichen 13
2016-07-25 12:59:29 CEST ANWEISUNG INSERT INTO configurationitem (id, parent, name, value) VALUES (13, 10, ‘DSN’, ‘finov215_tst’);
2016-07-25 12:59:29 CEST FEHLER Relation „configurationitem“ existiert nicht bei Zeichen 13
2016-07-25 12:59:29 CEST ANWEISUNG INSERT INTO configurationitem (id, parent, name, value) VALUES (14, 10, ‘SCHEME’, ‘config’);
2016-07-25 12:59:29 CEST FEHLER Relation „configurationitem“ existiert nicht bei Zeichen 13
2016-07-25 12:59:29 CEST ANWEISUNG INSERT INTO configurationitem (id, parent, name, value) VALUES (15, 10, ‘USERNAME’, ‘robindb’);
2016-07-25 12:59:29 CEST FEHLER Relation „configurationitem“ existiert nicht bei Zeichen 13
2016-07-25 12:59:29 CEST ANWEISUNG INSERT INTO configurationitem (id, parent, name, value) VALUES (16, 10, ‘PASSWORD’, ‘XXXXXXXXX’);
2016-07-25 12:59:29 CEST FEHLER Relation „configurationitem“ existiert nicht bei Zeichen 13
2016-07-25 12:59:29 CEST ANWEISUNG INSERT INTO configurationitem (id, parent, name, value) VALUES (18, 17, ‘HOST’, ‘172.16.248.11’);
2016-07-25 12:59:29 CEST FEHLER Relation „configurationitem“ existiert nicht bei Zeichen 13
2016-07-25 12:59:29 CEST ANWEISUNG INSERT INTO configurationitem (id, parent, name, value) VALUES (17, 4, ‘SPATIALSQLDB’, ‘’);
2016-07-25 12:59:29 CEST FEHLER Relation „configurationitem“ existiert nicht bei Zeichen 13
2016-07-25 12:59:29 CEST ANWEISUNG INSERT INTO configurationitem (id, parent, name, value) VALUES (19, 17, ‘PORT’, ‘5432’);
2016-07-25 12:59:29 CEST FEHLER Relation „configurationitem“ existiert nicht bei Zeichen 13
2016-07-25 12:59:29 CEST ANWEISUNG INSERT INTO configurationitem (id, parent, name, value) VALUES (20, 17, ‘DSN’, ‘finov215_tst’);
2016-07-25 12:59:29 CEST FEHLER Relation „configurationitem“ existiert nicht bei Zeichen 13
2016-07-25 12:59:29 CEST ANWEISUNG INSERT INTO configurationitem (id, parent, name, value) VALUES (21, 17, ‘SCHEME’, ‘spatial’);
2016-07-25 12:59:29 CEST FEHLER Relation „configurationitem“ existiert nicht bei Zeichen 13
2016-07-25 12:59:29 CEST ANWEISUNG INSERT INTO configurationitem (id, parent, name, value) VALUES (22, 17, ‘USERNAME’, ‘robindb’);
2016-07-25 12:59:29 CEST FEHLER Relation „configurationitem“ existiert nicht bei Zeichen 13
2016-07-25 12:59:29 CEST ANWEISUNG INSERT INTO configurationitem (id, parent, name, value) VALUES (23, 17, ‘PASSWORD’, ‘XXXXX’);
2016-07-25 12:59:29 CEST FEHLER Relation „configurationitem“ existiert nicht bei Zeichen 13
2016-07-25 12:59:29 CEST ANWEISUNG INSERT INTO configurationitem (id, parent, name, value) VALUES (25, 24, ‘HOST’, ‘172.16.248.11’);
2016-07-25 12:59:29 CEST FEHLER Relation „configurationitem“ existiert nicht bei Zeichen 13
2016-07-25 12:59:29 CEST ANWEISUNG INSERT INTO configurationitem (id, parent, name, value) VALUES (24, 5, ‘DATASQLDB’, ‘’);
2016-07-25 12:59:29 CEST FEHLER Relation „configurationitem“ existiert nicht bei Zeichen 13
2016-07-25 12:59:29 CEST ANWEISUNG INSERT INTO configurationitem (id, parent, name, value) VALUES (26, 24, ‘PORT’, ‘5432’);
2016-07-25 12:59:29 CEST FEHLER Relation „configurationitem“ existiert nicht bei Zeichen 13
2016-07-25 12:59:29 CEST ANWEISUNG INSERT INTO configurationitem (id, parent, name, value) VALUES (27, 24, ‘DSN’, ‘finov215_tst’);
2016-07-25 12:59:29 CEST FEHLER Relation „configurationitem“ existiert nicht bei Zeichen 13
2016-07-25 12:59:29 CEST ANWEISUNG INSERT INTO configurationitem (id, parent, name, value) VALUES (28, 24, ‘SCHEME’, ‘public’);
2016-07-25 12:59:29 CEST FEHLER Relation „configurationitem“ existiert nicht bei Zeichen 13
2016-07-25 12:59:29 CEST ANWEISUNG INSERT INTO configurationitem (id, parent, name, value) VALUES (29, 24, ‘USERNAME’, ‘robindb’);
2016-07-25 12:59:29 CEST FEHLER Relation „configurationitem“ existiert nicht bei Zeichen 13
2016-07-25 12:59:29 CEST ANWEISUNG INSERT INTO configurationitem (id, parent, name, value) VALUES (30, 24, ‘PASSWORD’, ‘XXXXXX’);
2016-07-25 12:59:29 CEST FEHLER Relation „configurationitem“ existiert nicht bei Zeichen 13
2016-07-25 12:59:29 CEST ANWEISUNG INSERT INTO configurationitem (id, parent, name, value) VALUES (32, 31, ‘HOST’, ‘172.16.248.11’);
2016-07-25 12:59:29 CEST FEHLER Relation „configurationitem“ existiert nicht bei Zeichen 13
2016-07-25 12:59:29 CEST ANWEISUNG INSERT INTO configurationitem (id, parent, name, value) VALUES (31, 5, ‘CONFIGSQLDB’, ‘’);
2016-07-25 12:59:29 CEST FEHLER Relation „configurationitem“ existiert nicht bei Zeichen 13
2016-07-25 12:59:29 CEST ANWEISUNG INSERT INTO configurationitem (id, parent, name, value) VALUES (33, 31, ‘PORT’, ‘5432’);
2016-07-25 12:59:29 CEST FEHLER Relation „configurationitem“ existiert nicht bei Zeichen 13
2016-07-25 12:59:29 CEST ANWEISUNG INSERT INTO configurationitem (id, parent, name, value) VALUES (34, 31, ‘DSN’, ‘finov215_tst’);
2016-07-25 12:59:29 CEST FEHLER Relation „configurationitem“ existiert nicht bei Zeichen 13
2016-07-25 12:59:29 CEST ANWEISUNG INSERT INTO configurationitem (id, parent, name, value) VALUES (35, 31, ‘SCHEME’, ‘config’);
2016-07-25 12:59:29 CEST FEHLER Relation „configurationitem“ existiert nicht bei Zeichen 13
[…]

2016-07-25 12:59:29 CEST FEHLER Relation „configurationitem“ existiert nicht bei Zeichen 13
2016-07-25 12:59:29 CEST ANWEISUNG INSERT INTO configurationitem (id, parent, name, value) VALUES (218, NULL, ‘FMCWRADAR’, ‘’);
2016-07-25 12:59:29 CEST FEHLER Relation „configurationitem“ existiert nicht bei Zeichen 13
2016-07-25 12:59:29 CEST ANWEISUNG INSERT INTO configurationitem (id, parent, name, value) VALUES (60, NULL, ‘HOST’, ‘172.16.248.11’);
2016-07-25 12:59:29 CEST FEHLER Relation „configurationitem“ existiert nicht bei Zeichen 13
2016-07-25 12:59:29 CEST ANWEISUNG INSERT INTO configurationitem (id, parent, name, value) VALUES (62, NULL, ‘PORT’, ‘5432’);
2016-07-25 12:59:29 CEST FEHLER Relation „configurationitem“ existiert nicht bei Zeichen 13
2016-07-25 12:59:29 CEST ANWEISUNG INSERT INTO configurationitem (id, parent, name, value) VALUES (64, NULL, ‘DSN’, ‘finov215_tst’);
2016-07-25 12:59:29 CEST FEHLER Relation „configurationitem“ existiert nicht bei Zeichen 13
2016-07-25 12:59:29 CEST ANWEISUNG INSERT INTO configurationitem (id, parent, name, value) VALUES (66, NULL, ‘SCHEME’, ‘public’);
2016-07-25 12:59:29 CEST FEHLER Relation „configurationitem“ existiert nicht bei Zeichen 13
2016-07-25 12:59:29 CEST ANWEISUNG INSERT INTO configurationitem (id, parent, name, value) VALUES (68, NULL, ‘USERNAME’, ‘robindb’);
2016-07-25 12:59:29 CEST FEHLER Relation „configurationitem“ existiert nicht bei Zeichen 13
2016-07-25 12:59:29 CEST ANWEISUNG INSERT INTO configurationitem (id, parent, name, value) VALUES (70, NULL, ‘PASSWORD’, ‘XXXX’);
2016-07-25 12:59:29 CEST FEHLER Relation „configurationitem“ existiert nicht bei Zeichen 13
2016-07-25 12:59:29 CEST ANWEISUNG INSERT INTO configurationitem (id, parent, name, value) VALUES (72, NULL, ‘HOST’, ‘172.16.248.11’);
2016-07-25 12:59:29 CEST FEHLER Relation „configurationitem“ existiert nicht bei Zeichen 13
2016-07-25 12:59:29 CEST ANWEISUNG INSERT INTO configurationitem (id, parent, name, value) VALUES (74, NULL, ‘PORT’, ‘5432’);
2016-07-25 12:59:29 CEST FEHLER Relation „configurationitem“ existiert nicht bei Zeichen 13
2016-07-25 12:59:29 CEST ANWEISUNG INSERT INTO configurationitem (id, parent, name, value) VALUES (76, NULL, ‘DSN’, ‘finov215_tst’);
2016-07-25 12:59:29 CEST FEHLER Relation „configurationitem“ existiert nicht bei Zeichen 13
[…]

2016-07-25 12:59:29 CEST FEHLER Relation „configurationitem“ existiert nicht bei Zeichen 13
2016-07-25 12:59:29 CEST ANWEISUNG INSERT INTO configurationitem (id, parent, name, value) VALUES (250, 218, ‘LOCATION’, ‘’);
2016-07-25 12:59:29 CEST FEHLER Relation „configurationitem“ existiert nicht bei Zeichen 13
2016-07-25 12:59:29 CEST ANWEISUNG INSERT INTO configurationitem (id, parent, name, value) VALUES (255, 218, ‘IMAGE_PROCESSING’, ‘’);
2016-07-25 12:59:29 CEST FEHLER Relation „configurationitem“ existiert nicht bei Zeichen 13
2016-07-25 12:59:29 CEST ANWEISUNG INSERT INTO configurationitem (id, parent, name, value) VALUES (258, 218, ‘SENSORS’, ‘’);
2016-07-25 12:59:29 CEST FEHLER Relation „configurationitem“ existiert nicht bei Zeichen 13
2016-07-25 12:59:29 CEST ANWEISUNG INSERT INTO configurationitem (id, parent, name, value) VALUES (269, 227, ‘USERNAME’, ‘robindb’);
2016-07-25 12:59:29 CEST FEHLER Relation „configurationitem“ existiert nicht bei Zeichen 13
2016-07-25 12:59:29 CEST ANWEISUNG INSERT INTO configurationitem (id, parent, name, value) VALUES (305, 304, ‘ENABLED’, ‘TRUE’);
2016-07-25 12:59:29 CEST FEHLER Relation „configurationitem“ existiert nicht bei Zeichen 13
2016-07-25 12:59:29 CEST ANWEISUNG INSERT INTO configurationitem (id, parent, name, value) VALUES (306, 304, ‘HOST’, ‘172.16.248.11’);
2016-07-25 12:59:29 CEST FEHLER Relation „configurationitem“ existiert nicht bei Zeichen 13
2016-07-25 12:59:29 CEST ANWEISUNG INSERT INTO configurationitem (id, parent, name, value) VALUES (307, 304, ‘DATA_PORT’, ‘15901’);
2016-07-25 12:59:29 CEST FEHLER Relation „configurationitem“ existiert nicht bei Zeichen 13
2016-07-25 12:59:29 CEST ANWEISUNG INSERT INTO configurationitem (id, parent, name, value) VALUES (247, 245, ‘ELEVATION_CORRECTION’, ‘0.0’);
2016-07-25 12:59:29 CEST FEHLER Relation „configurationitem“ existiert nicht bei Zeichen 13
2016-07-25 12:59:29 CEST ANWEISUNG INSERT INTO configurationitem (id, parent, name, value) VALUES (248, 245, ‘FAR_RANGE’, ‘55000’);
2016-07-25 12:59:29 CEST FEHLER Relation „configurationitem“ existiert nicht bei Zeichen 13
2016-07-25 12:59:29 CEST ANWEISUNG INSERT INTO configurationitem (id, parent, name, value) VALUES (241, 238, ‘POSITION_LON’, ‘6.58768670’);
2016-07-25 12:59:29 CEST FEHLER Relation „configurationitem“ existiert nicht bei Zeichen 13
2016-07-25 12:59:29 CEST ANWEISUNG INSERT INTO configurationitem (id, parent, name, value) VALUES (242, 238, ‘POSITION_ALT’, ‘30.20000000’);
2016-07-25 12:59:29 CEST FEHLER Relation „configurationitem“ existiert nicht bei Zeichen 13
2016-07-25 12:59:29 CEST ANWEISUNG INSERT INTO configurationitem (id, parent, name, value) VALUES (256, 255, ‘AZIMUTH_CORRECTION’, ‘342.6’);
2016-07-25 12:59:29 CEST FEHLER Relation „configurationitem“ existiert nicht bei Zeichen 13
2016-07-25 12:59:29 CEST ANWEISUNG INSERT INTO configurationitem (id, parent, name, value) VALUES (257, 255, ‘ELEVATION_CORRECTION’, ‘250.5’);
2016-07-25 12:59:29 CEST FEHLER Relation „configurationitem“ existiert nicht bei Zeichen 13
2016-07-25 12:59:29 CEST ANWEISUNG INSERT INTO configurationitem (id, parent, name, value) VALUES (243, 217, ‘ORIENTATION’, ‘HORIZONTAL’);
2016-07-25 12:59:29 CEST FEHLER Relation „configurationitem“ existiert nicht bei Zeichen 13
2016-07-25 12:59:29 CEST ANWEISUNG INSERT INTO configurationitem (id, parent, name, value) VALUES (237, 217, ‘RADAR_SPEC_FILENAME’, ‘FURUNO-FAR2167DS.RSS’);
2016-07-25 12:59:29 CEST FEHLER Relation „configurationitem“ existiert nicht bei Zeichen 13
2016-07-25 12:59:29 CEST ANWEISUNG INSERT INTO configurationitem (id, parent, name, value) VALUES (244, 217, ‘REQUEST’, ‘DEFAULT_SBAND.HRQ’);

[…]


2016-07-25 12:59:29 CEST FEHLER Relation „configurationsystemcomponent“ existiert nicht bei Zeichen 13
2016-07-25 12:59:29 CEST ANWEISUNG INSERT INTO configurationsystemcomponent (id, application, radartype, name, ipaddress, remote_control_port, snmp_community, root_configuration_id, deterrencetype) VALUES (1, ‘GENERAL’, ‘NO_RADAR’, ‘’, NULL, -1, ‘’, 216, ‘NO_DETERRENCE’);
2016-07-25 12:59:29 CEST FEHLER Relation „configurationsystemcomponent“ existiert nicht bei Zeichen 13
2016-07-25 12:59:29 CEST ANWEISUNG INSERT INTO configurationsystemcomponent (id, application, radartype, name, ipaddress, remote_control_port, snmp_community, root_configuration_id, deterrencetype) VALUES (2, ‘RADAR’, ‘S_BAND_HR’, ‘HR’, ‘172.16.248.21’, 15707, ‘admin’, 217, ‘NO_DETERRENCE’);
2016-07-25 12:59:29 CEST FEHLER Relation „configurationsystemcomponent“ existiert nicht bei Zeichen 13
2016-07-25 12:59:29 CEST ANWEISUNG INSERT INTO configurationsystemcomponent (id, application, radartype, name, ipaddress, remote_control_port, snmp_community, root_configuration_id, deterrencetype) VALUES (3, ‘RADAR’, ‘FMCW_VR’, ‘FMCW’, ‘172.16.248.31’, 15807, ‘admin’, 218, ‘NO_DETERRENCE’);
2016-07-25 12:59:29 CEST FEHLER Relation „configurationsystemcomponent“ existiert nicht bei Zeichen 13
2016-07-25 12:59:29 CEST ANWEISUNG INSERT INTO configurationsystemcomponent (id, application, radartype, name, ipaddress, remote_control_port, snmp_community, root_configuration_id, deterrencetype) VALUES (4, ‘BIRDMONITOR’, ‘NO_RADAR’, ‘’, ‘172.16.248.21’, 15007, ‘admin’, 219, ‘NO_DETERRENCE’);
2016-07-25 12:59:29 CEST FEHLER Relation „configurationsystemcomponent“ existiert nicht bei Zeichen 13
2016-07-25 12:59:29 CEST ANWEISUNG INSERT INTO configurationsystemcomponent (id, application, radartype, name, ipaddress, remote_control_port, snmp_community, root_configuration_id, deterrencetype) VALUES (5, ‘BIRDANALYSIS’, ‘NO_RADAR’, ‘’, ‘172.16.248.21’, 15107, ‘admin’, 220, ‘NO_DETERRENCE’);
2016-07-25 12:59:29 CEST FEHLER Relation „configurationsystemcomponent“ existiert nicht bei Zeichen 13
2016-07-25 12:59:29 CEST ANWEISUNG INSERT INTO configurationsystemcomponent (id, application, radartype, name, ipaddress, remote_control_port, snmp_community, root_configuration_id, deterrencetype) VALUES (6, ‘WEATHERSTATION’, ‘NO_RADAR’, ‘’, ‘172.16.248.11’, 15907, ‘admin’, 221, ‘NO_DETERRENCE’);
2016-07-25 12:59:29 CEST FEHLER Relation „configurationsystemcomponent“ existiert nicht bei Zeichen 13
2016-07-25 12:59:29 CEST ANWEISUNG INSERT INTO configurationsystemcomponent (id, application, radartype, name, ipaddress, remote_control_port, snmp_community, root_configuration_id, deterrencetype) VALUES (7, ‘REMOTEMONITOR’, ‘NO_RADAR’, ‘’, ‘172.16.248.11’, 15207, ‘admin’, 222, ‘NO_DETERRENCE’);
2016-07-25 12:59:29 CEST FEHLER Relation „configurationsystemcomponent_id_seq“ existiert nicht bei Zeichen 26
2016-07-25 12:59:29 CEST ANWEISUNG SELECT pg_catalog.setval(‘configurationsystemcomponent_id_seq’, 7, true);


2016-07-25 12:59:29 CEST FEHLER Relation „dbmanagement_id_seq“ existiert nicht bei Zeichen 26
2016-07-25 12:59:29 CEST ANWEISUNG SELECT pg_catalog.setval(‘dbmanagement_id_seq’, 1, true);


2016-07-25 12:59:29 CEST FEHLER Relation „dbmanagementlog_id_seq“ existiert nicht bei Zeichen 26
2016-07-25 12:59:29 CEST ANWEISUNG SELECT pg_catalog.setval(‘dbmanagementlog_id_seq’, 46, true);



2016-07-25 12:59:29 CEST FEHLER Relation „dbmanagementschema“ existiert nicht bei Zeichen 13
2016-07-25 12:59:29 CEST ANWEISUNG INSERT INTO dbmanagementschema (id, schema_name, timestamp_start, timestamp_end, finished, backuptodisk, deleted, deleted_from_disk) VALUES (6, ‘m201602’, ‘2016-02-01 00:00:00’, ‘2016-03-01 00:00:00’, true, false, false, false);
2016-07-25 12:59:29 CEST FEHLER Relation „dbmanagementschema“ existiert nicht bei Zeichen 13
2016-07-25 12:59:29 CEST ANWEISUNG INSERT INTO dbmanagementschema (id, schema_name, timestamp_start, timestamp_end, finished, backuptodisk, deleted, deleted_from_disk) VALUES (1, ‘public’, ‘2015-12-01 00:00:00’, NULL, true, true, true, true);
[…]


2016-07-25 12:59:29 CEST FEHLER Relation „users“ existiert nicht bei Zeichen 13
2016-07-25 12:59:29 CEST ANWEISUNG INSERT INTO users (id, name, email, loginname, password, salt, active, deleted) VALUES (1, ‘Admin’, ‘’, ‘Admin’, ‘b328979d94b66d58cd1675fb2f034a111e487cde’, ‘lAiECv?Mq>Xo’, true, false);
2016-07-25 12:59:29 CEST FEHLER Relation „users“ existiert nicht bei Zeichen 13
2016-07-25 12:59:29 CEST ANWEISUNG INSERT INTO users (id, name, email, loginname, password, salt, active, deleted) VALUES (2, ‘Monitor’, ‘’, ‘monitor’, ‘cebd6b7747cf5bc2efad69cd3871fc9275c4d4d0’, ‘hR6pTEihFxCI’, true, false);
2016-07-25 12:59:29 CEST FEHLER Relation „users“ existiert nicht bei Zeichen 13
2016-07-25 12:59:29 CEST ANWEISUNG INSERT INTO users (id, name, email, loginname, password, salt, active, deleted) VALUES (4, ‘fino1’, ‘’, ‘fino’, ‘dd525b61f9cfabc8f7fb61ae0ea54318ce20e101’, ‘TtlQxAL83tAv’, true, false);
2016-07-25 12:59:29 CEST FEHLER Relation „users“ existiert nicht bei Zeichen 13
2016-07-25 12:59:29 CEST ANWEISUNG INSERT INTO users (id, name, email, loginname, password, salt, active, deleted) VALUES (3, ‘Maintainer’, ‘’, ‘maintainer’, ‘90114fb7e85131a5fcb559a015d1595d1cd71224’, ‘yFmn2E8Cq9AR’, true, false);
2016-07-25 12:59:29 CEST FEHLER Relation „user_fieldapp_permissions“ existiert nicht bei Zeichen 13
2016-07-25 12:59:29 CEST ANWEISUNG INSERT INTO user_fieldapp_permissions (id, user_id, usage, allow_deterrence_action) VALUES (1, 1, false, false);
2016-07-25 12:59:29 CEST FEHLER Relation „user_fieldapp_permissions“ existiert nicht bei Zeichen 13
2016-07-25 12:59:29 CEST ANWEISUNG INSERT INTO user_fieldapp_permissions (id, user_id, usage, allow_deterrence_action) VALUES (3, 3, false, false);
[…]

2016-07-25 12:59:29 CEST FEHLER Relation „windmillshutdownruleset_id_seq“ existiert nicht bei Zeichen 26
2016-07-25 12:59:29 CEST ANWEISUNG SELECT pg_catalog.setval(‘windmillshutdownruleset_id_seq’, 1, false);



2016-07-25 12:59:34 CEST FEHLER ungültige Byte-Sequenz für Kodierung „UTF8“: 0xe2
2016-07-25 12:59:34 CEST ANWEISUNG SELECT pg_file_read(‘pg_log/postgresql-2016-07-25_102956.log’, 73488, 50000)
2016-07-25 12:59:44 CEST FEHLER ungültige Byte-Sequenz für Kodierung „UTF8“: 0xe2
2016-07-25 12:59:44 CEST ANWEISUNG SELECT pg_file_read(‘pg_log/postgresql-2016-07-25_102956.log’, 73488, 50000)
2016-07-25 12:59:54 CEST FEHLER ungültige Byte-Sequenz für Kodierung „UTF8“: 0xe2
2016-07-25 12:59:54 CEST ANWEISUNG SELECT pg_file_read(‘pg_log/postgresql-2016-07-25_102956.log’, 73488, 50000)
2016-07-25 13:00:04 CEST FEHLER ungültige Byte-Sequenz für Kodierung „UTF8“: 0xe2
2016-07-25 13:00:04 CEST ANWEISUNG SELECT pg_file_read(‘pg_log/postgresql-2016-07-25_102956.log’, 73488, 50000)
2016-07-25 13:00:14 CEST FEHLER ungültige Byte-Sequenz für Kodierung „UTF8“: 0xe2
2016-07-25 13:00:14 CEST ANWEISUNG SELECT pg_file_read(‘pg_log/postgresql-2016-07-25_102956.log’, 73488, 50000)
2016-07-25 13:00:24 CEST FEHLER ungültige Byte-Sequenz für Kodierung „UTF8“: 0xe2
2016-07-25 13:00:24 CEST ANWEISUNG SELECT pg_file_read(‘pg_log/postgresql-2016-07-25_102956.log’, 73488, 50000)
2016-07-25 13:00:31 CEST FEHLER Relation „behaviors_id_seq“ existiert nicht bei Zeichen 26
2016-07-25 13:00:31 CEST ANWEISUNG SELECT pg_catalog.setval(‘behaviors_id_seq’, 1, false);



[…]
2016-07-25 13:00:31 CEST FEHLER Relation „configurationsystemcomponent“ existiert nicht bei Zeichen 13
2016-07-25 13:00:31 CEST ANWEISUNG INSERT INTO configurationsystemcomponent (id, application, radartype, name, ipaddress, remote_control_port, snmp_community, root_configuration_id, deterrencetype) VALUES (1, ‘GENERAL’, ‘NO_RADAR’, ‘’, NULL, -1, ‘’, 216, ‘NO_DETERRENCE’);
2016-07-25 13:00:31 CEST FEHLER Relation „configurationsystemcomponent“ existiert nicht bei Zeichen 13
2016-07-25 13:00:31 CEST ANWEISUNG INSERT INTO configurationsystemcomponent (id, application, radartype, name, ipaddress, remote_control_port, snmp_community, root_configuration_id, deterrencetype) VALUES (2, ‘RADAR’, ‘S_BAND_HR’, ‘HR’, ‘172.16.248.21’, 15707, ‘admin’, 217, ‘NO_DETERRENCE’);
2016-07-25 13:00:31 CEST FEHLER Relation „configurationsystemcomponent“ existiert nicht bei Zeichen 13
2016-07-25 13:00:31 CEST ANWEISUNG INSERT INTO configurationsystemcomponent (id, application, radartype, name, ipaddress, remote_control_port, snmp_community, root_configuration_id, deterrencetype) VALUES (3, ‘RADAR’, ‘FMCW_VR’, ‘FMCW’, ‘172.16.248.31’, 15807, ‘admin’, 218, ‘NO_DETERRENCE’);
2016-07-25 13:00:31 CEST FEHLER Relation „configurationsystemcomponent“ existiert nicht bei Zeichen 13
2016-07-25 13:00:31 CEST ANWEISUNG INSERT INTO configurationsystemcomponent (id, application, radartype, name, ipaddress, remote_control_port, snmp_community, root_configuration_id, deterrencetype) VALUES (4, ‘BIRDMONITOR’, ‘NO_RADAR’, ‘’, ‘172.16.248.21’, 15007, ‘admin’, 219, ‘NO_DETERRENCE’);
2016-07-25 13:00:31 CEST FEHLER Relation „configurationsystemcomponent“ existiert nicht bei Zeichen 13
2016-07-25 13:00:31 CEST ANWEISUNG INSERT INTO configurationsystemcomponent (id, application, radartype, name, ipaddress, remote_control_port, snmp_community, root_configuration_id, deterrencetype) VALUES (5, ‘BIRDANALYSIS’, ‘NO_RADAR’, ‘’, ‘172.16.248.21’, 15107, ‘admin’, 220, ‘NO_DETERRENCE’);
2016-07-25 13:00:31 CEST FEHLER Relation „configurationsystemcomponent“ existiert nicht bei Zeichen 13
2016-07-25 13:00:31 CEST ANWEISUNG INSERT INTO configurationsystemcomponent (id, application, radartype, name, ipaddress, remote_control_port, snmp_community, root_configuration_id, deterrencetype) VALUES (6, ‘WEATHERSTATION’, ‘NO_RADAR’, ‘’, ‘172.16.248.11’, 15907, ‘admin’, 221, ‘NO_DETERRENCE’);
2016-07-25 13:00:31 CEST FEHLER Relation „configurationsystemcomponent“ existiert nicht bei Zeichen 13
2016-07-25 13:00:31 CEST ANWEISUNG INSERT INTO configurationsystemcomponent (id, application, radartype, name, ipaddress, remote_control_port, snmp_community, root_configuration_id, deterrencetype) VALUES (7, ‘REMOTEMONITOR’, ‘NO_RADAR’, ‘’, ‘172.16.248.11’, 15207, ‘admin’, 222, ‘NO_DETERRENCE’);
2016-07-25 13:00:31 CEST FEHLER Relation „configurationsystemcomponent_id_seq“ existiert nicht bei Zeichen 26
2016-07-25 13:00:31 CEST ANWEISUNG SELECT pg_catalog.setval(‘configurationsystemcomponent_id_seq’, 7, true);


2016-07-25 13:00:31 CEST FEHLER Relation „dbmanagement_id_seq“ existiert nicht bei Zeichen 26
2016-07-25 13:00:31 CEST ANWEISUNG SELECT pg_catalog.setval(‘dbmanagement_id_seq’, 1, true);


2016-07-25 13:00:31 CEST FEHLER Relation „dbmanagementlog_id_seq“ existiert nicht bei Zeichen 26
2016-07-25 13:00:31 CEST ANWEISUNG SELECT pg_catalog.setval(‘dbmanagementlog_id_seq’, 46, true);


2016-07-25 13:00:31 CEST FEHLER Relation „dbmanagementschema“ existiert nicht bei Zeichen 13
2016-07-25 13:00:31 CEST ANWEISUNG INSERT INTO dbmanagementschema (id, schema_name, timestamp_start, timestamp_end, finished, backuptodisk, deleted, deleted_from_disk) VALUES (6, ‘m201602’, ‘2016-02-01 00:00:00’, ‘2016-03-01 00:00:00’, true, false, false, false);
[…]

2016-07-25 13:00:31 CEST FEHLER Relation „windmillshutdownruleset_id_seq“ existiert nicht bei Zeichen 26
2016-07-25 13:00:31 CEST ANWEISUNG SELECT pg_catalog.setval(‘windmillshutdownruleset_id_seq’, 1, false);

2016-07-25 13:00:34 CEST FEHLER ungültige Byte-Sequenz für Kodierung „UTF8“: 0xe2
2016-07-25 13:00:34 CEST ANWEISUNG SELECT pg_file_read(‘pg_log/postgresql-2016-07-25_102956.log’, 73488, 50000)
2016-07-25 13:00:44 CEST FEHLER ungültige Byte-Sequenz für Kodierung „UTF8“: 0xe2
2016-07-25 13:00:44 CEST ANWEISUNG SELECT pg_file_read(‘pg_log/postgresql-2016-07-25_102956.log’, 73488, 50000)
2016-07-25 13:00:54 CEST FEHLER ungültige Byte-Sequenz für Kodierung „UTF8“: 0xe2
2016-07-25 13:00:54 CEST ANWEISUNG SELECT pg_file_read(‘pg_log/postgresql-2016-07-25_102956.log’, 73488, 50000)
2016-07-25 13:01:04 CEST FEHLER ungültige Byte-Sequenz für Kodierung „UTF8“: 0xe2
2016-07-25 13:01:04 CEST ANWEISUNG SELECT pg_file_read(‘pg_log/postgresql-2016-07-25_102956.log’, 73488, 50000)
2016-07-25 13:01:14 CEST FEHLER ungültige Byte-Sequenz für Kodierung „UTF8“: 0xe2
2016-07-25 13:01:14 CEST ANWEISUNG SELECT pg_file_read(‘pg_log/postgresql-2016-07-25_102956.log’, 73488, 50000)
2016-07-25 13:01:24 CEST FEHLER ungültige Byte-Sequenz für Kodierung „UTF8“: 0xe2
2016-07-25 13:01:24 CEST ANWEISUNG SELECT pg_file_read(‘pg_log/postgresql-2016-07-25_102956.log’, 73488, 50000)
2016-07-25 13:01:34 CEST FEHLER ungültige Byte-Sequenz für Kodierung „UTF8“: 0xe2
2016-07-25 13:01:34 CEST ANWEISUNG SELECT pg_file_read(‘pg_log/postgresql-2016-07-25_102956.log’, 73488, 50000)
2016-07-25 13:01:44 CEST FEHLER ungültige Byte-Sequenz für Kodierung „UTF8“: 0xe2
2016-07-25 13:01:44 CEST ANWEISUNG SELECT pg_file_read(‘pg_log/postgresql-2016-07-25_102956.log’, 73488, 50000)
2016-07-25 13:01:54 CEST FEHLER ungültige Byte-Sequenz für Kodierung „UTF8“: 0xe2
2016-07-25 13:01:54 CEST ANWEISUNG SELECT pg_file_read(‘pg_log/postgresql-2016-07-25_102956.log’, 73488, 50000)
2016-07-25 13:02:04 CEST FEHLER ungültige Byte-Sequenz für Kodierung „UTF8“: 0xe2
2016-07-25 13:02:04 CEST ANWEISUNG SELECT pg_file_read(‘pg_log/postgresql-2016-07-25_102956.log’, 73488, 50000)
2016-07-25 13:02:14 CEST FEHLER ungültige Byte-Sequenz für Kodierung „UTF8“: 0xe2
2016-07-25 13:02:14 CEST ANWEISUNG SELECT pg_file_read(‘pg_log/postgresql-2016-07-25_102956.log’, 73488, 50000)
2016-07-25 13:02:24 CEST FEHLER ungültige Byte-Sequenz für Kodierung „UTF8“: 0xe2
2016-07-25 13:02:24 CEST ANWEISUNG SELECT pg_file_read(‘pg_log/postgresql-2016-07-25_102956.log’, 73488, 50000)
2016-07-25 13:02:34 CEST FEHLER ungültige Byte-Sequenz für Kodierung „UTF8“: 0xe2
2016-07-25 13:02:34 CEST ANWEISUNG SELECT pg_file_read(‘pg_log/postgresql-2016-07-25_102956.log’, 73488, 50000)
2016-07-25 13:02:44 CEST FEHLER ungültige Byte-Sequenz für Kodierung „UTF8“: 0xe2
2016-07-25 13:02:44 CEST ANWEISUNG SELECT pg_file_read(‘pg_log/postgresql-2016-07-25_102956.log’, 73488, 50000)
2016-07-25 13:02:54 CEST FEHLER ungültige Byte-Sequenz für Kodierung „UTF8“: 0xe2
2016-07-25 13:02:54 CEST ANWEISUNG SELECT pg_file_read(‘pg_log/postgresql-2016-07-25_102956.log’, 73488, 50000)
2016-07-25 13:03:04 CEST FEHLER ungültige Byte-Sequenz für Kodierung „UTF8“: 0xe2
2016-07-25 13:03:04 CEST ANWEISUNG SELECT pg_file_read(‘pg_log/postgresql-2016-07-25_102956.log’, 73488, 50000)
2016-07-25 13:03:14 CEST FEHLER ungültige Byte-Sequenz für Kodierung „UTF8“: 0xe2
2016-07-25 13:03:14 CEST ANWEISUNG SELECT pg_file_read(‘pg_log/postgresql-2016-07-25_102956.log’, 73488, 50000)
2016-07-25 13:03:24 CEST FEHLER ungültige Byte-Sequenz für Kodierung „UTF8“: 0xe2
2016-07-25 13:03:24 CEST ANWEISUNG SELECT pg_file_read(‘pg_log/postgresql-2016-07-25_102956.log’, 73488, 50000)
2016-07-25 13:03:34 CEST FEHLER ungültige Byte-Sequenz für Kodierung „UTF8“: 0xe2
2016-07-25 13:03:34 CEST ANWEISUNG SELECT pg_file_read(‘pg_log/postgresql-2016-07-25_102956.log’, 73488, 50000)
2016-07-25 13:03:44 CEST FEHLER ungültige Byte-Sequenz für Kodierung „UTF8“: 0xe2
2016-07-25 13:03:44 CEST ANWEISUNG SELECT pg_file_read(‘pg_log/postgresql-2016-07-25_102956.log’, 73488, 50000)
2016-07-25 13:03:54 CEST FEHLER ungültige Byte-Sequenz für Kodierung „UTF8“: 0xe2
2016-07-25 13:03:54 CEST ANWEISUNG SELECT pg_file_read(‘pg_log/postgresql-2016-07-25_102956.log’, 73488, 50000)
2016-07-25 13:04:04 CEST FEHLER ungültige Byte-Sequenz für Kodierung „UTF8“: 0xe2
2016-07-25 13:04:04 CEST ANWEISUNG SELECT pg_file_read(‘pg_log/postgresql-2016-07-25_102956.log’, 73488, 50000)
2016-07-25 13:04:14 CEST FEHLER ungültige Byte-Sequenz für Kodierung „UTF8“: 0xe2
2016-07-25 13:04:14 CEST ANWEISUNG SELECT pg_file_read(‘pg_log/postgresql-2016-07-25_102956.log’, 73488, 50000)
2016-07-25 13:04:24 CEST FEHLER ungültige Byte-Sequenz für Kodierung „UTF8“: 0xe2
2016-07-25 13:04:24 CEST ANWEISUNG SELECT pg_file_read(‘pg_log/postgresql-2016-07-25_102956.log’, 73488, 50000)
2016-07-25 13:04:34 CEST FEHLER ungültige Byte-Sequenz für Kodierung „UTF8“: 0xe2
2016-07-25 13:04:34 CEST ANWEISUNG SELECT pg_file_read(‘pg_log/postgresql-2016-07-25_102956.log’, 73488, 50000)
2016-07-25 13:04:44 CEST FEHLER ungültige Byte-Sequenz für Kodierung „UTF8“: 0xe2
2016-07-25 13:04:44 CEST ANWEISUNG SELECT pg_file_read(‘pg_log/postgresql-2016-07-25_102956.log’, 73488, 50000)
2016-07-25 13:04:54 CEST FEHLER ungültige Byte-Sequenz für Kodierung „UTF8“: 0xe2
2016-07-25 13:04:54 CEST ANWEISUNG SELECT pg_file_read(‘pg_log/postgresql-2016-07-25_102956.log’, 73488, 50000)
2016-07-25 13:05:04 CEST FEHLER ungültige Byte-Sequenz für Kodierung „UTF8“: 0xe2
2016-07-25 13:05:04 CEST ANWEISUNG SELECT pg_file_read(‘pg_log/postgresql-2016-07-25_102956.log’, 73488, 50000)
2016-07-25 13:05:14 CEST FEHLER ungültige Byte-Sequenz für Kodierung „UTF8“: 0xe2
2016-07-25 13:05:14 CEST ANWEISUNG SELECT pg_file_read(‘pg_log/postgresql-2016-07-25_102956.log’, 73488, 50000)
2016-07-25 13:05:24 CEST FEHLER ungültige Byte-Sequenz für Kodierung „UTF8“: 0xe2
2016-07-25 13:05:24 CEST ANWEISUNG SELECT pg_file_read(‘pg_log/postgresql-2016-07-25_102956.log’, 73488, 50000)
2016-07-25 13:05:34 CEST FEHLER ungültige Byte-Sequenz für Kodierung „UTF8“: 0xe2
2016-07-25 13:05:34 CEST ANWEISUNG SELECT pg_file_read(‘pg_log/postgresql-2016-07-25_102956.log’, 73488, 50000)
2016-07-25 13:05:44 CEST FEHLER ungültige Byte-Sequenz für Kodierung „UTF8“: 0xe2
2016-07-25 13:05:44 CEST ANWEISUNG SELECT pg_file_read(‘pg_log/postgresql-2016-07-25_102956.log’, 73488, 50000)
2016-07-25 13:05:54 CEST FEHLER ungültige Byte-Sequenz für Kodierung „UTF8“: 0xe2
2016-07-25 13:05:54 CEST ANWEISUNG SELECT pg_file_read(‘pg_log/postgresql-2016-07-25_102956.log’, 73488, 50000)
2016-07-25 13:05:57 CEST FEHLER konnte „stat“ für Datei „base/12373/18918“ nicht ausführen: Permission denied
2016-07-25 13:05:57 CEST ANWEISUNG SELECT numbackends AS “Backends”, xact_commit AS “Xact Committed”, xact_rollback AS “Xact Rolled Back”, blks_read AS “Blocks Read”, blks_hit AS “Blocks Hit”, tup_returned AS “Tupel-Zurückgegeben”, tup_fetched AS “Tupel-Geholt”, tup_inserted AS “Tupel-Eingefügt”, tup_updated AS “Tupel-Aktualisiert”, tup_deleted AS “Tupel-Gelöscht”, stats_reset AS “Letzter Statistiken Reset”, slave.confl_tablespace AS “Tablespace Konflikte”, slave.confl_lock AS “Lock Konflikte”, slave.confl_snapshot AS "Snapshot Conflicte
FROM pg_stat_database db JOIN pg_stat_database_conflicts slave ON db.datid=slave.datid WHERE db.datname=‘postgres’
2016-07-25 13:06:00 CEST FEHLER konnte „stat“ für Datei „base/12373/18918“ nicht ausführen: Permission denied
2016-07-25 13:06:00 CEST ANWEISUNG SELECT numbackends AS “Backends”, xact_commit AS “Xact Committed”, xact_rollback AS “Xact Rolled Back”, blks_read AS “Blocks Read”, blks_hit AS “Blocks Hit”, tup_returned AS “Tupel-Zurückgegeben”, tup_fetched AS “Tupel-Geholt”, tup_inserted AS “Tupel-Eingefügt”, tup_updated AS “Tupel-Aktualisiert”, tup_deleted AS “Tupel-Gelöscht”, stats_reset AS “Letzter Statistiken Reset”, slave.confl_tablespace AS “Tablespace Konflikte”, slave.confl_lock AS “Lock Konflikte”, slave.confl_snapshot AS "Snapshot Conflicte
FROM pg_stat_database db JOIN pg_stat_database_conflicts slave ON db.datid=slave.datid WHERE db.datname=‘postgres’
2016-07-25 13:06:04 CEST FEHLER ungültige Byte-Sequenz für Kodierung „UTF8“: 0xe2
2016-07-25 13:06:04 CEST ANWEISUNG SELECT pg_file_read(‘pg_log/postgresql-2016-07-25_102956.log’, 73488, 50000)
2016-07-25 13:06:14 CEST FEHLER ungültige Byte-Sequenz für Kodierung „UTF8“: 0xe2
2016-07-25 13:06:14 CEST ANWEISUNG SELECT pg_file_read(‘pg_log/postgresql-2016-07-25_102956.log’, 73488, 50000)
2016-07-25 13:06:24 CEST LOG SIGHUP empfangen, Konfigurationsdateien werden neu geladen
2016-07-25 13:06:24 CEST FEHLER ungültige Byte-Sequenz für Kodierung „UTF8“: 0xe2
2016-07-25 13:06:24 CEST ANWEISUNG SELECT pg_file_read(‘pg_log/postgresql-2016-07-25_102956.log’, 73488, 50000)
2016-07-25 13:06:29 CEST LOG SIGHUP empfangen, Konfigurationsdateien werden neu geladen
2016-07-25 13:06:34 CEST FEHLER ungültige Byte-Sequenz für Kodierung „UTF8“: 0xe2
2016-07-25 13:06:34 CEST ANWEISUNG SELECT pg_file_read(‘pg_log/postgresql-2016-07-25_102956.log’, 73488, 50000)
2016-07-25 13:06:44 CEST FEHLER ungültige Byte-Sequenz für Kodierung „UTF8“: 0xe2
2016-07-25 13:06:44 CEST ANWEISUNG SELECT pg_file_read(‘pg_log/postgresql-2016-07-25_102956.log’, 73488, 50000)
2016-07-25 13:06:54 CEST FEHLER ungültige Byte-Sequenz für Kodierung „UTF8“: 0xe2
2016-07-25 13:06:54 CEST ANWEISUNG SELECT pg_file_read(‘pg_log/postgresql-2016-07-25_102956.log’, 73488, 50000)
2016-07-25 13:07:04 CEST FEHLER ungültige Byte-Sequenz für Kodierung „UTF8“: 0xe2
2016-07-25 13:07:04 CEST ANWEISUNG SELECT pg_file_read(‘pg_log/postgresql-2016-07-25_102956.log’, 73488, 50000)
2016-07-25 13:07:14 CEST FEHLER ungültige Byte-Sequenz für Kodierung „UTF8“: 0xe2
2016-07-25 13:07:14 CEST ANWEISUNG SELECT pg_file_read(‘pg_log/postgresql-2016-07-25_102956.log’, 73488, 50000)
2016-07-25 13:07:24 CEST FEHLER ungültige Byte-Sequenz für Kodierung „UTF8“: 0xe2
2016-07-25 13:07:24 CEST ANWEISUNG SELECT pg_file_read(‘pg_log/postgresql-2016-07-25_102956.log’, 73488, 50000)
2016-07-25 13:07:31 CEST LOG konnte Daten vom Client nicht empfangen: unrecognized winsock error 10061
2016-07-25 13:07:31 CEST LOG konnte Daten vom Client nicht empfangen: unrecognized winsock error 10061
2016-07-25 13:00:31 CEST FEHLER Relation „users“ existiert

das Listfile entsteht nicht automatisch, sondern aufgrund der von Dir gewählten Parameter. Daher wird nur (und wirklich nur) das Listfile auf die Konsole geschrieben, nicht aber der Dump eingespielt. Sprich: die DB dürfte weitestgehend leer sein.

Ja, eingespielt wird aus dem config.backup file gar nichts, die anderen 5 files werden mit Daten eingespielt, jedoch habe ich 181 Fehlermeldungen je file. Aus jedem der 5 files entsteht beim Wiederherstellen ein eigenes Schema in der Datenbank.

Welche Einstellungen muss ich beim Einspielen wählen und wie finde ich das heraus?

Wenn ich in pgAdmin auf Datenbank klicke und dann wiederherstellen kann ich folgende restore-Optionen durch anklicken wählen:

Abschnitte: pre-data, Daten, post-data
Typ der Objekte: Nur Daten, nur Schema
nicht speichern: Eigentümer, Privileg, tablespace
Abfragen:
create DATABAse Befehl mit einschließen
Löschen vor dem Wiederherstellen
Einzelne Transaktion

Deaktivieren: Trigger, keine Daten für failed Tabellen

Verhalten:
Set Session Autorization verwenden
Exit bei Fehler

https://www.postgresql.org/docs/9.5/static/backup.html

Da ich nicht weiß, wie der / die Dumps erstellt wurden, wie der Gesamtzustand ist etc. kann ich Dir hier nicht im Detail sagen, was genau Du da an Optionen einstellen willst oder kannst oder solltest.