pg_dump sichert nicht alle SEQUENCES

Hallo liebes Forum,

ich stehe vor einem merkwürdigen Rätsel.
Wenn ich ein pg_dump auf verschiedene Tabellen ausführe

pg_dump -D -t cms_administration -t cms_gastronomie_besondere_preisaktion -t cms_gastronomie_bewertung -t geometry_columns -t cms_gastronomie_bilder -t cms_gastronomie_grunddaten -t cms_gastronomie_grunddaten_cafe_pub_nightclub_zusatz -t cms_gastronomie_grunddaten_eiscafe -t cms_gastronomie_grunddaten_fast_food_kategorie -t cms_gastronomie_grunddaten_hotel_bar -t cms_gastronomie_grunddaten_restaurant_fast_food_hotel_zusatz -t cms_gastronomie_grunddaten_restaurant_kategorie -t cms_gastronomie_nebenkategorie -t cms_gastronomie_objekt -t cms_gastronomie_oeffnungszeiten -t cms_gastronomie_pausenzeiten -t cms_gastronomie_ruhetag -t cms_ip -t cms_kategorie_punkt -t cms_link_zur_karte -t cms_menue_01 -t cms_nutzer -t cms_passwort -t gastronomie_pois  -t kunst  -h localhost -U  postgres gastronomap > C:/ms4w/Apache/htdocs/sql/gastronomap_sql/gastronomap.sql

…dann werden von 2 Tabellen keine Sequences erstellt.

Im Augenblick kann ich da keine Logik erkennen, die Spalte in welcher ein Wert über eine Sequence erstellt wird ist in allen Tabellen auch gleichzeitig
der Primärschlüssel.

Weiß jemand welche Bedingungen erfüllt werden müssen damit über ein pg_dump auch Sequences erstellt werden?

Danke im Voraus, Kai

Glaub ich habs gefunden.

Bei den entsprechenden Tabellen fehlte der Eintrag:

ALTER TABLE public.cms_ip_id_seq OWNER TO postgres;

--
-- Name: cms_ip_id_seq; Type: SEQUENCE OWNED BY; Schema: public; Owner: postgres
--

ALTER SEQUENCE cms_ip_id_seq OWNED BY cms_ip.id;

…jetzt läuft es.