{"id":31905,"date":"2019-10-31T21:43:52","date_gmt":"2019-10-31T18:43:52","guid":{"rendered":"https:\/\/prohoster.info\/blog\/happy-party-ili-para-strok-vospominanij-o-znakomstve-s-sektsionirovaniem-v-postgresql10\/"},"modified":"2019-10-31T21:43:52","modified_gmt":"2019-10-31T18:43:52","slug":"happy-party-ili-para-strok-vospominanij-o-znakomstve-s-sektsionirovaniem-v-postgresql10","status":"publish","type":"post","link":"https:\/\/prohoster.info\/de\/blog\/administrirovanie\/happy-party-ili-para-strok-vospominanij-o-znakomstve-s-sektsionirovaniem-v-postgresql10","title":{"rendered":"Happy Party oder ein paar Zeilen Erinnerungen an die Bekanntschaft mit der Partitionierung in PostgreSQL10","gt_translate_keys":[{"key":"rendered","format":"text"}]},"content":{"rendered":"<h4>Vorwort oder wie die Idee der Partitionierung entstand<\/h4>\n<p>\nDer Beginn der Geschichte hier: <noindex><a rel=\"nofollow\" href=\"https:\/\/habr.com\/ru\/company\/icl_services\/blog\/446314\/\">Erinnerst du dich, wie alles begann? Alles war zum ersten Mal und neu.<\/a><\/noindex> Nachdem fast alle Ressourcen zur Optimierung der Abfrage zu diesem Zeitpunkt ersch\u00f6pft waren, stellte sich die Frage \u2013 was nun? So entstand die Idee der Partitionierung. <\/p>\n<p><img decoding=\"async\" alt=\"Happy Party oder ein paar Zeilen Erinnerungen an die Bekanntschaft mit der Partitionierung in PostgreSQL10\" src=\"\/wp-content\/uploads\/2019\/04\/ef30e00aac34e9522e1d3e1875aa93bf.jpeg\" style=\"display:block;margin: 0 auto;\" \/><br \/>\n<br \/>\n<b>Lyrische Abschweifung:<\/b><br \/>\n<i>Genau &#8216;zu diesem Zeitpunkt&#8217;, weil <noindex><a rel=\"nofollow\" href=\"https:\/\/habr.com\/ru\/company\/icl_services\/blog\/446314\/#comment_19973236\">wie sich herausstellte, gab es ungenutzte Optimierungsreserven<\/a><\/noindex>. Danke <noindex><a rel=\"nofollow\" href=\"https:\/\/habr.com\/ru\/users\/asmm\/\" class=\"user_link\">asmm<\/a><\/noindex> und Habr !<\/i><\/p>\n<p>Wie k\u00f6nnen wir den Auftraggeber also noch gl\u00fccklicher machen und gleichzeitig unsere F\u00e4higkeiten verbessern? <\/p>\n<p><b>Wenn wir alles so weit wie m\u00f6glich vereinfachen<\/b>, dann gibt es nur zwei grundlegende Wege, die Performance der Datenbank signifikant zu verbessern:<br \/>\n1) Extensiver Weg \u2013 Ressourcen aufstocken, Konfiguration \u00e4ndern;<br \/>\n2) Intensiver Weg \u2013 Abfragen optimieren.<\/p>\n<p>Da, ich wiederhole, zu diesem Zeitpunkt nicht klar war, was man noch an der Abfrage \u00e4ndern k\u00f6nnte, um sie zu beschleunigen, wurde der Weg gew\u00e4hlt \u2013 <b>\u00c4nderungen im Tabellen-Design.<\/b><\/p>\n<p><b>Also \u2013 die zentrale Frage bleibt \u2013 was und wie wollen wir \u00e4ndern? <\/b><br \/>\n<noindex><a rel=\"nofollow\" name=\"habracut\"><\/a><\/noindex><\/p>\n<h2>Anfangsbedingungen<\/h2>\n<p>\nErstens gibt es so ein ERD (symbolisch vereinfacht dargestellt):<br \/>\n<img decoding=\"async\" alt=\"Happy Party oder ein paar Zeilen Erinnerungen an die Bekanntschaft mit der Partitionierung in PostgreSQL10\" src=\"\/wp-content\/uploads\/2019\/04\/de270774e7dd99b060cc200ba5012075.jpeg\" style=\"display:block;margin: 0 auto;\" \/><br \/>\nHauptmerkmale:<\/p>\n<ol>\n<li> die Beziehung 'viele zu viele'<\/li>\n<li> die Tabelle hat bereits einen potenziellen Schl\u00fcssel f\u00fcr die Partitionierung <\/li>\n<\/ol>\n<p>Urspr\u00fcngliche Abfrage:<\/p>\n<pre><code class=\"plaintext\">SELECT\n            p.\"PARAMETER_ID\" as  parameter_id,\n            pc.\"PC_NAME\" AS pc_name,\n            pc.\"CUSTOMER_PARTNUMBER\" AS customer_partnumber,\n            w.\"LASERMARK\" AS lasermark,\n            w.\"LOTID\" AS lotid,\n            w.\"REPORTED_VALUE\" AS reported_value,\n            w.\"LOWER_SPEC_LIMIT\" AS lower_spec_limit,\n            w.\"UPPER_SPEC_LIMIT\" AS upper_spec_limit,\n            p.\"TYPE_CALCUL\" AS type_calcul,\n            s.\"SHIPMENT_NAME\" AS shipment_name,\n            s.\"SHIPMENT_DATE\" AS shipment_date,\n            extract(year from s.\"SHIPMENT_DATE\") AS year,\n            extract(month from s.\"SHIPMENT_DATE\") as month,\n            s.\"REPORT_NAME\" AS report_name,\n            p.\"SPARAM_NAME\" AS SPARAM_name,\n            p.\"CUSTOMERPARAM_NAME\" AS customerparam_name\n        FROM data w INNER JOIN shipment s ON s.\"SHIPMENT_ID\" = w.\"SHIPMENT_ID\"\n             INNER JOIN parameters p ON p.\"PARAMETER_ID\" = w.\"PARAMETER_ID\"\n             INNER JOIN shipment_pc sp ON s.\"SHIPMENT_ID\" = sp.\"SHIPMENT_ID\"\n             INNER JOIN pc pc ON pc.\"PC_ID\" = sp.\"PC_ID\"\n             INNER JOIN ( SELECT w2.\"LASERMARK\" , MAX(s2.\"SHIPMENT_DATE\") AS \"SHIPMENT_DATE\"\n                          FROM shipment s2 INNER JOIN data w2 ON s2.\"SHIPMENT_ID\" = w2.\"SHIPMENT_ID\" \n                          GROUP BY w2.\"LASERMARK\"\n                         ) md ON md.\"SHIPMENT_DATE\" = s.\"SHIPMENT_DATE\" AND md.\"LASERMARK\" = w.\"LASERMARK\"\n        WHERE \n             s.\"SHIPMENT_DATE\" &gt;= '2018-07-01' AND s.\"SHIPMENT_DATE\" &lt;= &#039;2018-09-30&#039;;\n<\/code><\/pre>\n<p>\n<b>Ergebnisse der Ausf\u00fchrung in der Testdatenbank:<\/b><br \/>\n<b>Kosten <\/b>: 502 997.55<br \/>\n<b>Ausf\u00fchrungszeit<\/b>: 505 Sekunden.<\/p>\n<p>Was sehen wir? Eine gew\u00f6hnliche Abfrage \u00fcber einen zeitlichen Ausschnitt. <br \/>\nWir treffen eine einfache logische Annahme: Wenn es eine Stichprobe eines zeitlichen Ausschnitts gibt, hilft uns das? Richtig \u2013 die Partitionierung.<\/p>\n<h2>Was zu partitionieren?<\/h2>\n<p>\nAuf den ersten Blick scheint die Wahl offensichtlich \u2013 die deklarative Partitionierung der Tabelle \u201eshipment\u201c nach dem Schl\u00fcssel \u201eSHIPMENT_DATE\u201c (<i>wenn wir zu weit vorausgreifen \u2013 am Ende kam es in der Produktion etwas anders.<\/i>). <\/p>\n<h2>Wie partitionieren?<\/h2>\n<p>\nDiese Frage ist ebenfalls nicht allzu schwierig. Gl\u00fccklicherweise gibt es in PostgreSQL 10 jetzt einen benutzerfreundlichen Partitionierungsmechanismus. <br \/>\nAlso: <\/p>\n<ol>\n<li> Wir speichern das Dump der urspr\u00fcnglichen Tabelle \u2013 <i>pg_dump source_table<\/i><\/li>\n<li> Wir l\u00f6schen die urspr\u00fcngliche Tabelle \u2013 <i>drop table source_table<\/i><\/li>\n<li>Wir erstellen die \u00fcbergeordnete Tabelle mit Partitionierung nach Bereich \u2013 <i>create table source_table<\/i><\/li>\n<li> Wir erstellen Partitionen \u2013 <i>create table source_table, create index<\/i><\/li>\n<li> Wir importieren das Dump, das in Schritt 1 erstellt wurde \u2013 <i>pg_restore<\/i><\/li>\n<\/ol>\n<p><\/p>\n<h2>Skripte zur Partitionierung <\/h2>\n<p>\nZur Vereinfachung wurden die Schritte 2, 3 und 4 in einem Skript zusammengefasst. <\/p>\n<p>Also: <br \/>\n<b class=\"spoiler_title\">Wir speichern das Dump der urspr\u00fcnglichen Tabelle<\/b><\/p>\n<pre><code class=\"plaintext\">pg_dump postgres --file=\/dump\/shipment.dmp --format=c --table=shipment --verbose &gt; \/dump\/shipment.log 2&gt;&amp;1<\/code><\/pre>\n<p>\n<b class=\"spoiler_title\">Wir l\u00f6schen die urspr\u00fcngliche Tabelle + wir erstellen die \u00fcbergeordnete Tabelle mit Partitionierung nach Bereich + wir erstellen Partitionen<\/b><\/p>\n<pre><code class=\"plaintext\">--create_partition_shipment.sql\ndo language plpgsql $$\ndeclare \nrec_shipment_date RECORD;\npartition_name varchar;\nindex_name varchar;\ncurrent_year varchar;\ncurrent_month varchar;\nbegin_year varchar;\nbegin_month varchar;\nnext_year varchar;\nnext_month varchar;\nfirst_flag boolean;\ni integer;\nbegin\n  RAISE NOTICE 'TEMPOR\u00c4RE TABELLE F\u00dcR SHIPMENT_DATE ERSTELLEN';\n  CREATE TEMP TABLE tmp_shipment_date as select distinct \"SHIPMENT_DATE\" from shipment order by \"SHIPMENT_DATE\";\n\n  RAISE NOTICE 'TABELLE shipment L\u00d6SCHEN';\n  drop table shipment cascade;\n  \n  CREATE TABLE public.shipment\n  (\n    \"SHIPMENT_ID\" integer NOT NULL DEFAULT nextval('shipment_shipment_id_seq'::regclass),\n    \"SHIPMENT_NAME\" character varying(30) COLLATE pg_catalog.\"default\",\n    \"SHIPMENT_DATE\" timestamp without time zone,\n    \"REPORT_NAME\" character varying(40) COLLATE pg_catalog.\"default\"\n  )\n  PARTITION BY RANGE (\"SHIPMENT_DATE\")\n  WITH (\n      OIDS = FALSE\n  )\n  TABLESPACE pg_default;\n\n  RAISE NOTICE 'PARTITIONEN F\u00dcR TABELLE shipment ERSTELLEN';\n\n  current_year:='0';\n  current_month:='0';\n\n  begin_year := '0';\n  begin_month := '0';\n  next_year := '0';\n  next_month := '0';\n\n  FOR rec_shipment_date IN SELECT * FROM tmp_shipment_date LOOP\n      \n      RAISE NOTICE 'SHIPMENT_DATE=%',rec_shipment_date.\"SHIPMENT_DATE\";\n      \n      current_year := date_part('year', rec_shipment_date.\"SHIPMENT_DATE\");\n      current_month := date_part('month', rec_shipment_date.\"SHIPMENT_DATE\");\n\n      IF to_number(current_month,'99') = to_date(begin_year||'.'||begin_month, 'YYYY.MM') AND \n         to_date(current_year||'.'||current_month, 'YYYY.MM') &lt; to_date(next_year||&#039;.&#039;||next_month, &#039;YYYY.MM&#039;) AND \n         NOT first_flag\n      THEN\n         CONTINUE;\n      ELSE\n       --NEUE Grenzen nur f\u00fcr das zweite und folgende Mal\n       begin_year := current_year;\n       begin_month := current_month;\n   \n        IF current_month = &#039;12&#039; THEN\n          next_year := date_part(&#039;year&#039;, rec_shipment_date.&quot;SHIPMENT_DATE&quot; + interval &#039;1 year&#039;);\n        ELSE\n          next_year := current_year;\n        END IF;\n     \n       next_month := date_part(&#039;month&#039;, rec_shipment_date.&quot;SHIPMENT_DATE&quot; + interval &#039;1 month&#039;);\n\n      END IF;\n\n      partition_name := &#039;shipment_shipment_date_&#039;||begin_year||&#039;-&#039;||begin_month||&#039;-01-&#039;|| next_year||&#039;-&#039;||next_month||&#039;-01&#039;;\n \n     EXECUTE format(&#039;CREATE TABLE &#039; || quote_ident(partition_name) || &#039; PARTITION OF shipment FOR VALUES FROM (%L) TO (%L)&#039;, current_year||&#039;-&#039;||current_month||&#039;-01&#039;, next_year||&#039;-&#039;||next_month||&#039;-01&#039;);\n\n      index_name := partition_name||&#039;_shipment_id_idx&#039;;\n      RAISE NOTICE &#039;INDEX NAME =%&#039;, index_name;\n      EXECUTE format(&#039;CREATE INDEX &#039; || quote_ident(index_name) || &#039; ON &#039;|| quote_ident(partition_name) ||&#039; USING btree (&quot;SHIPMENT_ID&quot;) TABLESPACE pg_default&#039;);\n\n      --Erstes Flag zur\u00fccksetzen\n      first_flag := false;\n   \n  END LOOP;\n\nend\n$$;<\/code><\/pre>\n<p>\n<b class=\"spoiler_title\">Importiere Dump<\/b><\/p>\n<pre><code class=\"plaintext\">pg_restore -d postgres --data-only --format=c --table=shipment --verbose shipment.dmp &gt; \/tmp\/data_dump\/shipment_restore.log 2&gt;&amp;1<\/code><\/pre>\n<p><\/p>\n<h2>\u00dcberpr\u00fcfen Sie die Ergebnisse der Partitionierung<\/h2>\n<p>\nWas haben wir als Ergebnis? Der vollst\u00e4ndige Text des Implementierungsplans ist lang und langweilig, daher kann man sich ziemlich auf die abschlie\u00dfenden Zahlen beschr\u00e4nken.<\/p>\n<h3>War<\/h3>\n<p>\n<b>Kosten:<\/b> 502 997.55<br \/>\n<b>Ausf\u00fchrungszeit:<\/b> 505 Sekunden.<\/p>\n<h3>Wurde<\/h3>\n<p>\n<b>Kosten:<\/b> 77 872.36<br \/>\n<b>Ausf\u00fchrungszeit:<\/b> 79 Sekunden.<\/p>\n<p>Ein durchaus gutes Ergebnis. Wir haben sowohl die Kosten als auch die Ausf\u00fchrungszeit reduziert. Dadurch zeigt die Verwendung von Partitionierung die erwartete Wirkung und insgesamt - ohne \u00dcberraschungen. <\/p>\n<h2>Den Auftraggeber erfreuen<\/h2>\n<p>\nDie Testergebnisse wurden dem Auftraggeber zur Pr\u00fcfung vorgelegt. Und nach der Durchsicht wurde ihm ein etwas unerwartetes Urteil gef\u00e4llt: \u201eAusgezeichnet, partitionieren Sie die Tabelle \u201edata\u201c.\u201d<\/p>\n<p>Ja, aber wir haben doch eine ganz andere Tabelle \u201eshipment\u201c untersucht, die Tabelle \u201edata\u201c hat kein Feld \u201eSHIPMENT_DATE\u201c.<\/p>\n<p>Kein Problem, f\u00fcgen Sie es hinzu, \u00e4ndern Sie es. Hauptsache, der Auftraggeber ist mit dem Ergebnis zufrieden, die Details der Umsetzung sind nicht so wichtig.<\/p>\n<h2>Partitionieren wir die Haupttabelle \u201edata\u201c<\/h2>\n<p>\nEs haben sich eigentlich keine besonderen Schwierigkeiten ergeben. Obwohl sich der Partitionierungsalgorithmus nat\u00fcrlich ein wenig ge\u00e4ndert hat.<\/p>\n<p><b class=\"spoiler_title\">F\u00fcgen wir die Spalte \u201eSHIPMENT_DATA\u201c zur Tabelle \u201edata\u201c hinzu<\/b><\/p>\n<pre><code class=\"plaintext\">psql -h host -U database -d user\n=&gt; ALTER TABLE data ADD COLUMN \"SHIPMENT_DATE\" timestamp without time zone ;<\/code><\/pre>\n<p><b class=\"spoiler_title\">F\u00fcllen wir die Werte der Spalte \u201eSHIPMENT_DATA\u201c in der Tabelle \u201edata\u201c mit den Werten der gleichnamigen Spalte aus der Tabelle \u201eshipment\u201c<\/b><\/p>\n<pre><code class=\"plaintext\">-----------------------------\n--update_data.sql\n--Aktualisierung f\u00fcr die ge\u00e4nderte Tabelle \"data\" mit Werten von \"shipment_data\" aus der Tabelle \"shipment\"\n--Version 1.0\ndo language plpgsql $$\ndeclare \nrec_shipment_data RECORD ;\nshipment_date timestamp without time zone ; \nrow_count integer ;\ntotal_rows integer ;\nbegin\n\n  select count(*) into total_rows from shipment ; \n  RAISE NOTICE 'Insgesamt %', total_rows;\n  row_count:= 0 ;\n\n  FOR rec_shipment_data IN SELECT * FROM shipment LOOP\n\n   update data set \"SHIPMENT_DATE\" = rec_shipment_data.\"SHIPMENT_DATE\" where \"SHIPMENT_ID\" = rec_shipment_data.\"SHIPMENT_ID\";\n   \n   row_count:=  row_count +1 ;\n   RAISE NOTICE 'Zeilenanzahl = % , von %', row_count, total_rows;\n  END LOOP;\n\nend\n$$;<\/code><\/pre>\n<p>\n<b class=\"spoiler_title\">Speichern wir das Dump der Tabelle \u201edata\u201c<\/b><\/p>\n<pre><code class=\"plaintext\">pg_dump postgres --file=\\\/dump\\\/data.dmp --format=c --table=data --verbose &gt; \\\/dump\\\/data.log 2&gt;&amp;1&lt;\\\/source<\/code><\/pre>\n<p><b class=\"spoiler_title\">Stellen wir die partitionierte Tabelle \u201edata\u201c neu her<\/b><\/p>\n<pre><code class=\"plaintext\">--create_partition_data.sql\n--Erstellen von Partitionen f\u00fcr die Tabelle \"Waferdaten\" nach dem Bereich \"Versanddatum\" mit einer Dauer von einem Monat\n--Version 1.0\ndo language plpgsql $$\ndeclare \nrec_shipment_date RECORD ;\npartition_name varchar;\nindex_name varchar;\ncurrent_year varchar ;\ncurrent_month varchar ;\nbegin_year varchar ;\nbegin_month varchar ;\nnext_year varchar ;\nnext_month varchar ;\nfirst_flag boolean ;\ni integer ;\n\nbegin\n\n  RAISE NOTICE 'TEMPOR\u00c4RE TABELLE F\u00dcR VERSANDDATUM ERSTELLEN';\n  CREATE TEMP TABLE tmp_shipment_date as select distinct \"SHIPMENT_DATE\" from shipment order by \"SHIPMENT_DATE\" ;\n\n\n  RAISE NOTICE 'TABELLE Daten l\u00f6schen';\n  drop table data cascade ;\n\n\n  RAISE NOTICE 'PARTITIONIERTE TABELLE Daten ERSTELLEN';\n  \n  CREATE TABLE public.data\n  (\n    \"RUN_ID\" integer,\n    \"LASERMARK\" character varying(20) COLLATE pg_catalog.\"default\" NOT NULL,\n    \"LOTID\" character varying(80) COLLATE pg_catalog.\"default\",\n    \"SHIPMENT_ID\" integer NOT NULL,\n    \"PARAMETER_ID\" integer NOT NULL,\n    \"INTERNAL_VALUE\" character varying(75) COLLATE pg_catalog.\"default\",\n    \"REPORTED_VALUE\" character varying(75) COLLATE pg_catalog.\"default\",\n    \"LOWER_SPEC_LIMIT\" numeric,\n    \"UPPER_SPEC_LIMIT\" numeric , \n    \"SHIPMENT_DATE\" timestamp without time zone\n  )\n  PARTITION BY RANGE (\"SHIPMENT_DATE\")\n  WITH (\n    OIDS = FALSE\n  )\n  TABLESPACE pg_default ;\n\n\n  RAISE NOTICE 'PARTITIONEN F\u00dcR DIE TABELLE Daten ERSTELLEN';\n\n  current_year:='0';\n  current_month:='0';\n\n  begin_year := '0' ;\n  begin_month := '0'  ;\n  next_year := '0' ;\n  next_month := '0'  ;\n  i := 1;\n\n  FOR rec_shipment_date IN SELECT * FROM tmp_shipment_date LOOP\n      \n      RAISE NOTICE 'VERSANDDATUM=%',rec_shipment_date.\"SHIPMENT_DATE\";\n      \n      current_year := date_part('year' ,rec_shipment_date.\"SHIPMENT_DATE\");\n      current_month := date_part('month' ,rec_shipment_date.\"SHIPMENT_DATE\") ; \n\n      --Init Grenzen\n      IF   begin_year = '0' THEN\n       RAISE NOTICE '***Grenzen initialisieren';\n       first_flag := true ; --Flag f\u00fcr das erste Mal\n       begin_year := current_year ;\n       begin_month := current_month ;   \n   \n        IF current_month = '12' THEN\n          next_year := date_part('year' ,rec_shipment_date.\"SHIPMENT_DATE\" + interval '1 year') ;\n        ELSE\n          next_year := current_year ;\n        END IF;\n     \n       next_month := date_part('month' ,rec_shipment_date.\"SHIPMENT_DATE\" + interval '1 month') ;\n\n      END IF;\n\n--      RAISE NOTICE 'current_year=% , current_month=% ',current_year,current_month;\n--      RAISE NOTICE 'begin_year=% , begin_month=% ',begin_year,begin_month;\n--      RAISE NOTICE 'next_year=% , next_month=% ',next_year,next_month;\n\n      -- \u00dcberpr\u00fcfen Sie das aktuelle Datum in den Grenzen NICHT beim ersten Mal\n\n      RAISE NOTICE 'Aktuelle Daten = %',to_char( to_date( current_year||'.'||current_month, 'YYYY.MM'), 'YYYY.MM');\n      RAISE NOTICE 'Beginn Daten = %',to_char( to_date( begin_year||'.'||begin_month, 'YYYY.MM'), 'YYYY.MM');\n      RAISE NOTICE 'N\u00e4chste Daten = %',to_char( to_date( next_year||'.'||next_month, 'YYYY.MM'), 'YYYY.MM');\n\n      IF to_date( current_year||'.'||current_month, 'YYYY.MM') &gt;= to_date( begin_year||'.'||begin_month, 'YYYY.MM') AND \n         to_date( current_year||'.'||current_month, 'YYYY.MM') &lt; to_date( next_year||&#039;.&#039;||next_month, &#039;YYYY.MM&#039;) AND \n         NOT first_flag \n      THEN\n         RAISE NOTICE &#039;***FORTSETZEN&#039;;\n         CONTINUE ; \n      ELSE\n       --NEUE Grenzen nur f\u00fcr das zweite und folgende Mal \n       RAISE NOTICE &#039;***NEUE GRENZEN&#039;;\n       begin_year := current_year ;\n       begin_month := current_month ;   \n   \n        IF current_month = &#039;12&#039; THEN\n          next_year := date_part(&#039;year&#039; ,rec_shipment_date.&quot;SHIPMENT_DATE&quot; + interval &#039;1 year&#039;) ;\n        ELSE\n          next_year := current_year ;\n        END IF;\n     \n       next_month := date_part(&#039;month&#039; ,rec_shipment_date.&quot;SHIPMENT_DATE&quot; + interval &#039;1 month&#039;) ;\n\n\n      END IF;      \n\n      IF to_number(current_month,&#039;99&#039;) &lt; 10 THEN\n        current_month := &#039;0&#039;||current_month ; \n      END IF ;\n\n      IF to_number(begin_month,&#039;99&#039;) &lt; 10 THEN\n        begin_month := &#039;0&#039;||begin_month ; \n      END IF ;\n\n      IF to_number(next_month,&#039;99&#039;) &lt; 10 THEN\n        next_month := &#039;0&#039;||next_month ; \n      END IF ;\n\n      RAISE NOTICE &#039;current_year=% , current_month=% &#039;,current_year,current_month;\n      RAISE NOTICE &#039;begin_year=% , begin_month=% &#039;,begin_year,begin_month;\n      RAISE NOTICE &#039;next_year=% , next_month=% &#039;,next_year,next_month;\n\n      partition_name := &#039;data_&#039;||begin_year||begin_month||&#039;01_&#039;||next_year||next_month||&#039;01&#039;  ;\n\n      RAISE NOTICE &#039;PARTITION NUMMER % , TABELLENNAME =%&#039;,i , partition_name;\n      \n      EXECUTE format(&#039;CREATE TABLE &#039; || quote_ident(partition_name) || &#039; PARTITION OF data FOR VALUES FROM ( %L ) TO ( %L )  &#039; , begin_year||&#039;-&#039;||begin_month||&#039;-01&#039; , next_year||&#039;-&#039;||next_month||&#039;-01&#039;  ) ; \n\n      index_name := partition_name||&#039;_shipment_id_parameter_id_idx&#039;;\n      RAISE NOTICE &#039;INDEXNAME =%&#039;,index_name;\n      EXECUTE format(&#039;CREATE INDEX &#039; || quote_ident(index_name) || &#039; ON &#039;|| quote_ident(partition_name) ||&#039; USING btree (&quot;SHIPMENT_ID&quot;, &quot;PARAMETER_ID&quot;) TABLESPACE pg_default &#039; ) ; \n\n      index_name := partition_name||&#039;_lasermark_idx&#039;;\n      RAISE NOTICE &#039;INDEXNAME =%&#039;,index_name;\n      EXECUTE format(&#039;CREATE INDEX &#039; || quote_ident(index_name) || &#039; ON &#039;|| quote_ident(partition_name) ||&#039; USING btree (&quot;LASERMARK&quot; COLLATE pg_catalog.&quot;default&quot;) TABLESPACE pg_default &#039; ) ; \n\n      index_name := partition_name||&#039;_shipment_id_idx&#039;;\n      RAISE NOTICE &#039;INDEXNAME =%&#039;,index_name;\n      EXECUTE format(&#039;CREATE INDEX &#039; || quote_ident(index_name) || &#039; ON &#039;|| quote_ident(partition_name) ||&#039; USING btree (&quot;SHIPMENT_ID&quot;) TABLESPACE pg_default &#039; ) ; \n\n      index_name := partition_name||&#039;_parameter_id_idx&#039;;\n      RAISE NOTICE &#039;INDEXNAME =%&#039;,index_name;\n      EXECUTE format(&#039;CREATE INDEX &#039; || quote_ident(index_name) || &#039; ON &#039;|| quote_ident(partition_name) ||&#039; USING btree (&quot;PARAMETER_ID&quot;) TABLESPACE pg_default &#039; ) ; \n\n      index_name := partition_name||&#039;_shipment_date_idx&#039;;\n      RAISE NOTICE &#039;INDEXNAME =%&#039;,index_name;\n      EXECUTE format(&#039;CREATE INDEX &#039; || quote_ident(index_name) || &#039; ON &#039;|| quote_ident(partition_name) ||&#039; USING btree (&quot;SHIPMENT_DATE&quot;) TABLESPACE pg_default &#039; ) ; \n\n      --Erstes Mal-Flag l\u00f6schen\n      first_flag := false ;\n\n  END LOOP;\nend\n$$;\n<\/code><\/pre>\n<p>\n<b class=\"spoiler_title\">Wir laden das Dump-File hoch, das in Schritt 3 erstellt wurde.<\/b><\/p>\n<pre><code class=\"plaintext\">pg_restore -h host -u user -d datenbank --data-only --format=c --table=data --verbose data.dmp &gt; data_restore.log 2&gt;&amp;1<\/code><\/pre>\n<p>\n<b class=\"spoiler_title\">Wir erstellen einen separaten Abschnitt f\u00fcr alte Daten<\/b><\/p>\n<pre><code class=\"plaintext\">---------------------------------------------------\n--create_partition_for_old_dates.sql\n--Erstelle Partitionen, um alte Daten zu behalten \n--Version 1.0\ndo language plpgsql $$\ndeclare \nrec_shipment_date RECORD ;\npartition_name varchar;\nindex_name varchar;\n\nbegin\n\n      SELECT min(\"SHIPMENT_DATE\") AS min_date INTO rec_shipment_date from data ;\n\n      RAISE NOTICE 'Das alte Datum ist %',rec_shipment_date.min_date ;\n\n      partition_name := 'data_old_dates'  ;\n\n      RAISE NOTICE 'PARTITIONSNAME IST %',partition_name;\n\n      EXECUTE format('CREATE TABLE ' || quote_ident(partition_name) || ' PARTITION OF data FOR VALUES FROM ( %L ) TO ( %L )  ' , '1900-01-01' , \n              to_char( rec_shipment_date.min_date,'YYYY')||'-'||to_char(rec_shipment_date.min_date,'MM')||'-01'  ) ; \n\n      index_name := partition_name||'_shipment_id_parameter_id_idx';\n      EXECUTE format('CREATE INDEX ' || quote_ident(index_name) || ' ON '|| quote_ident(partition_name) ||' USING btree (\"SHIPMENT_ID\", \"PARAMETER_ID\") TABLESPACE pg_default ' ) ; \n\n      index_name := partition_name||'_lasermark_idx';\n      EXECUTE format('CREATE INDEX ' || quote_ident(index_name) || ' ON '|| quote_ident(partition_name) ||' USING btree (\"LASERMARK\" COLLATE pg_catalog.\"default\") TABLESPACE pg_default ' ) ; \n\n      index_name := partition_name||'_shipment_id_idx';\n      EXECUTE format('CREATE INDEX ' || quote_ident(index_name) || ' ON '|| quote_ident(partition_name) ||' USING btree (\"SHIPMENT_ID\") TABLESPACE pg_default ' ) ; \n\n      index_name := partition_name||'_parameter_id_idx';\n      EXECUTE format('CREATE INDEX ' || quote_ident(index_name) || ' ON '|| quote_ident(partition_name) ||' USING btree (\"PARAMETER_ID\") TABLESPACE pg_default ' ) ; \n\n      index_name := partition_name||'_shipment_date_idx';\n      EXECUTE format('CREATE INDEX ' || quote_ident(index_name) || ' ON '|| quote_ident(partition_name) ||' USING btree (\"SHIPMENT_DATE\") TABLESPACE pg_default ' ) ; \n\nend\n$$;<\/code><\/pre>\n<h3>Zusammenfassende Ergebnisse:<\/h3>\n<p>\n<b>War<\/b><br \/>\n<b>Kosten:<\/b> 502 997.55<br \/>\n<b>Ausf\u00fchrungszeit<\/b>: 505 Sekunden.<\/p>\n<p><b>Wurde<\/b><br \/>\n<b>Kosten:<\/b> 68 533.70<br \/>\n<b>Ausf\u00fchrungszeit:<\/b> 69 Sekunden<\/p>\n<p>Befriedigend, durchaus befriedigend. Und wenn man bedenkt, dass es gelungen ist, den Mechanismus der Partitionierung in PostgreSQL 10 mehr oder weniger zu erlernen \u2014 ein hervorragendes Ergebnis.<\/p>\n<h2>Lyrische Abschweifung<\/h2>\n<p>\n<b class=\"spoiler_title\">Kann man es noch besser machen &#8212; JA, MAN KANN!<\/b>Daf\u00fcr muss ein MATERIALIZED VIEW verwendet werden.<br \/>\n<b class=\"spoiler_title\">CREATE MATERIALIZED VIEW LASERMARK_VIEW<\/b><\/p>\n<pre><code class=\"plaintext\">CREATE MATERIALIZED VIEW LASERMARK_VIEW \nAS\nSELECT w.\"LASERMARK\" , MAX(s.\"SHIPMENT_DATE\") AS \"SHIPMENT_DATE\"\nFROM shipment s INNER JOIN data w ON s.\"SHIPMENT_ID\" = w.\"SHIPMENT_ID\" \nGROUP BY w.\"LASERMARK\" ;\n\nCREATE INDEX lasermark_vw_shipment_date_ind on lasermark_view USING btree (\"SHIPMENT_DATE\") TABLESPACE pg_default;\nanalyze lasermark_view ;\n<\/code><\/pre>\n<p>\nEin weiteres Mal schreiben wir die Abfrage um:<br \/>\n<b class=\"spoiler_title\">Abfrage unter Verwendung des materialized view<\/b><\/p>\n<pre><code class=\"plaintext\">SELECT\n            p.\"PARAMETER_ID\" als parameter_id,\n            pc.\"PC_NAME\" AS pc_name,\n            pc.\"CUSTOMER_PARTNUMBER\" AS customer_partnumber,\n            w.\"LASERMARK\" AS lasermark,\n            w.\"LOTID\" AS lotid,\n            w.\"REPORTED_VALUE\" AS reported_value,\n            w.\"LOWER_SPEC_LIMIT\" AS lower_spec_limit,\n            w.\"UPPER_SPEC_LIMIT\" AS upper_spec_limit,\n            p.\"TYPE_CALCUL\" AS type_calcul,\n            s.\"SHIPMENT_NAME\" AS shipment_name,\n            s.\"SHIPMENT_DATE\" AS shipment_date,\n            extract(year from s.\"SHIPMENT_DATE\") AS year,\n            extract(month from s.\"SHIPMENT_DATE\") as month,\n            s.\"REPORT_NAME\" AS report_name,\n            p.\"STC_NAME\" AS STC_name,\n            p.\"CUSTOMERPARAM_NAME\" AS customerparam_name\n        VON data w INNER JOIN shipment s ON s.\"SHIPMENT_ID\" = w.\"SHIPMENT_ID\"\n             INNER JOIN parameters p ON p.\"PARAMETER_ID\" = w.\"PARAMETER_ID\"\n             INNER JOIN shipment_pc sp ON s.\"SHIPMENT_ID\" = sp.\"SHIPMENT_ID\"\n             INNER JOIN pc pc ON pc.\"PC_ID\" = sp.\"PC_ID\"\n             INNER JOIN LASERMARK_VIEW md ON md.\"SHIPMENT_DATE\" = s.\"SHIPMENT_DATE\" UND md.\"LASERMARK\" = w.\"LASERMARK\"\n        WO\n              s.\"SHIPMENT_DATE\" &gt;= '2018-07-01' UND s.\"SHIPMENT_DATE\" &lt;= &#039;2018-09-30&#039;;\n<\/code><\/pre>\n<p>\n<b>Und wir erhalten ein weiteres Ergebnis:<\/b><br \/>\n<b>War<\/b><br \/>\n<b>Kosten:<\/b> 502 997.55<br \/>\n<b>Ausf\u00fchrungszeit<\/b>: 505 Sekunden<\/p>\n<p><b>Wurde<\/b><br \/>\n<b>Kosten:<\/b> 42 481.16<br \/>\n<b>Ausf\u00fchrungszeit:<\/b> 43 Sekunden.<\/p>\n<p>Obwohl ein so vielversprechendes Ergebnis t\u00e4uschend sein kann, m\u00fcssen die Pr\u00e4sentationen aktualisiert werden. Das endg\u00fcltige Datenabrufzeit wird also nicht viel helfen. Aber als Experiment ist das durchaus interessant.<\/p>\n<p>Tats\u00e4chlich, wie sich herausstellte, nochmals vielen Dank <noindex><a rel=\"nofollow\" href=\"https:\/\/habr.com\/ru\/users\/asmm\/\" class=\"user_link\">asmm<\/a><\/noindex> und Habr !- <noindex><a rel=\"nofollow\" href=\"https:\/\/habr.com\/ru\/company\/icl_services\/blog\/446314\/#comment_19973236\">Die Anfrage kann noch verbessert werden. <\/a><\/noindex><\/p>\n<h2>Nachwort<\/h2>\n<p>\nAlso, der Kunde ist zufrieden. Und <b>wissen <\/b>soll die Situation nutzen. <\/p>\n<p><b>Neue Aufgabe<\/b>: Was k\u00f6nnen wir uns einfallen lassen, um zu vertiefen und zu erweitern?<\/p>\n<p>Und da f\u00e4llt mir ein \u2013 Leute, wir haben keine \u00dcberwachung unserer PostgreSQL-Datenbanken.<\/p>\n<p>Ehrlich gesagt, es gibt eine gewisse \u00dcberwachung in Form von Cloud Watch auf AWS. Aber welchen Nutzen hat diese \u00dcberwachung f\u00fcr den DBA? Praktisch keinen.<\/p>\n<p><b>Wenn sich die Chance bietet, etwas N\u00fctzliches und Interessantes auch f\u00fcr sich selbst zu tun, darf man diese Chance nicht ungenutzt lassen \u2026<br \/>\nDENN<br \/>\n<\/b><br \/>\n<img decoding=\"async\" alt=\"Happy Party oder ein paar Zeilen Erinnerungen an die Bekanntschaft mit der Partitionierung in PostgreSQL10\" src=\"\/wp-content\/uploads\/2019\/04\/e514664a4a46f5379c51f57f24481746.jpeg\" style=\"display:block;margin: 0 auto;\" \/><br \/>\n<br \/>\nSo sind wir zum Interessantesten gekommen:<\/p>\n<blockquote><p><b>3. Dezember 2018.<\/b><br \/>\nEntscheidung zur Einleitung von Arbeiten zur Untersuchung der bestehenden M\u00f6glichkeiten zur \u00dcberwachung der Abfrageleistung von PostgreSQL.\n<\/p><\/blockquote>\n<p><b>Aber das ist eine ganz andere Geschichte.<\/b><\/p>\n<p><i>Fortsetzung folgt&#8230;<\/i><br \/>\n<br \/>Quelle: <a content=\"nofollow\" rel=\"nofollow\" href=\"https:\/\/habr.com\/ru\/company\/icl_services\/blog\/446442\/\">habr.com<\/a><\/p>","protected":false,"gt_translate_keys":[{"key":"rendered","format":"html"}]},"excerpt":{"rendered":"<p>\u041f\u0440\u0435\u0434\u0438\u0441\u043b\u043e\u0432\u0438\u0435 \u0438\u043b\u0438 \u043a\u0430\u043a \u0432\u043e\u0437\u043d\u0438\u043a\u043b\u0430 \u0438\u0434\u0435\u044f \u0441\u0435\u043a\u0446\u0438\u043e\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u041d\u0430\u0447\u0430\u043b\u043e \u0438\u0441\u0442\u043e\u0440\u0438\u0438 \u0437\u0434\u0435\u0441\u044c: \u0422\u044b \u043f\u043e\u043c\u043d\u0438\u0448\u044c, \u043a\u0430\u043a \u0432\u0441\u0435 \u043d\u0430\u0447\u0438\u043d\u0430\u043b\u043e\u0441\u044c. \u0412\u0441\u0435 \u0431\u044b\u043b\u043e \u0432\u043f\u0435\u0440\u0432\u044b\u0435 \u0438 \u0432\u043d\u043e\u0432\u044c. \u041f\u043e\u0441\u043b\u0435 \u0442\u043e\u0433\u043e, \u043a\u0430\u043a \u043f\u043e\u0447\u0442\u0438 \u0432\u0441\u0435 \u0440\u0435\u0441\u0443\u0440\u0441\u044b \u0434\u043b\u044f \u043e\u043f\u0442\u0438\u043c\u0438\u0437\u0430\u0446\u0438\u0438 \u0437\u0430\u043f\u0440\u043e\u0441\u0430, \u043d\u0430 \u0442\u043e\u0442 \u043c\u043e\u043c\u0435\u043d\u0442, \u0431\u044b\u043b\u0438 \u0438\u0441\u0447\u0435\u0440\u043f\u0430\u043d\u044b, \u0432\u0441\u0442\u0430\u043b \u0432\u043e\u043f\u0440\u043e\u0441 \u2014 \u0430 \u0447\u0442\u043e \u0436\u0435 \u0434\u0430\u043b\u044c\u0448\u0435? \u0422\u0430\u043a \u0438 \u0432\u043e\u0437\u043d\u0438\u043a\u043b\u0430 \u0438\u0434\u0435\u044f \u043e \u0441\u0435\u043a\u0446\u0438\u043e\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0438. \u041b\u0438\u0440\u0438\u0447\u0435\u0441\u043a\u043e\u0435 \u043e\u0442\u0441\u0442\u0443\u043f\u043b\u0435\u043d\u0438\u0435: \u0418\u043c\u0435\u043d\u043d\u043e &#8216;\u043d\u0430 \u0442\u043e\u0442 \u043c\u043e\u043c\u0435\u043d\u0442&#8217;, \u043f\u043e\u0442\u043e\u043c\u0443, \u0447\u0442\u043e \u043a\u0430\u043a [&hellip;]<\/p>\n","protected":false,"gt_translate_keys":[{"key":"rendered","format":"html"}]},"author":1,"featured_media":23765,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[688],"tags":[],"class_list":["post-31905","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-administrirovanie"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 5.0.1.1 - aioseo.com -->\n\t<meta name=\"description\" content=\"\u041f\u0440\u0435\u0434\u0438\u0441\u043b\u043e\u0432\u0438\u0435 \u0438\u043b\u0438 \u043a\u0430\u043a \u0432\u043e\u0437\u043d\u0438\u043a\u043b\u0430 \u0438\u0434\u0435\u044f \u0441\u0435\u043a\u0446\u0438\u043e\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u041d\u0430\u0447\u0430\u043b\u043e \u0438\u0441\u0442\u043e\u0440\u0438\u0438 \u0437\u0434\u0435\u0441\u044c: \u0422\u044b \u043f\u043e\u043c\u043d\u0438\u0448\u044c, \u043a\u0430\u043a \u0432\u0441\u0435 \u043d\u0430\u0447\u0438\u043d\u0430\u043b\u043e\u0441\u044c.\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Yuri Gagarin\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/prohoster.info\/de\/blog\/administrirovanie\/happy-party-ili-para-strok-vospominanij-o-znakomstve-s-sektsionirovaniem-v-postgresql10\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 5.0.1.1\" \/>\n\t\t<meta property=\"og:locale\" content=\"de_DE\" \/>\n\t\t<meta property=\"og:site_name\" content=\"ProHoster | \u041a\u0443\u043f\u0438\u0442\u044c \u043d\u0430\u0434\u0435\u0436\u043d\u044b\u0439 \u0445\u043e\u0441\u0442\u0438\u043d\u0433 \u0434\u043b\u044f \u0441\u0430\u0439\u0442\u043e\u0432 \u0441 \u0437\u0430\u0449\u0438\u0442\u043e\u0439 \u043e\u0442 DDoS, VPS VDS \u0441\u0435\u0440\u0432\u0435\u0440\u044b\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"\ud83e\udd47Happy Party \u0438\u043b\u0438 \u043f\u0430\u0440\u0430 \u0441\u0442\u0440\u043e\u043a-\u0432\u043e\u0441\u043f\u043e\u043c\u0438\u043d\u0430\u043d\u0438\u0439 \u043e \u0437\u043d\u0430\u043a\u043e\u043c\u0441\u0442\u0432\u0435 \u0441 \u0441\u0435\u043a\u0446\u0438\u043e\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435\u043c \u0432 PostgreSQL10 | ProHoster\" \/>\n\t\t<meta property=\"og:description\" content=\"\u041f\u0440\u0435\u0434\u0438\u0441\u043b\u043e\u0432\u0438\u0435 \u0438\u043b\u0438 \u043a\u0430\u043a \u0432\u043e\u0437\u043d\u0438\u043a\u043b\u0430 \u0438\u0434\u0435\u044f \u0441\u0435\u043a\u0446\u0438\u043e\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u041d\u0430\u0447\u0430\u043b\u043e \u0438\u0441\u0442\u043e\u0440\u0438\u0438 \u0437\u0434\u0435\u0441\u044c: \u0422\u044b \u043f\u043e\u043c\u043d\u0438\u0448\u044c, \u043a\u0430\u043a \u0432\u0441\u0435 \u043d\u0430\u0447\u0438\u043d\u0430\u043b\u043e\u0441\u044c.\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/prohoster.info\/de\/blog\/administrirovanie\/happy-party-ili-para-strok-vospominanij-o-znakomstve-s-sektsionirovaniem-v-postgresql10\" \/>\n\t\t<meta property=\"og:image\" content=\"https:\/\/prohoster.info\/wp-content\/uploads\/2021\/11\/logo-350.jpg\" \/>\n\t\t<meta property=\"og:image:secure_url\" content=\"https:\/\/prohoster.info\/wp-content\/uploads\/2021\/11\/logo-350.jpg\" \/>\n\t\t<meta property=\"og:image:width\" content=\"350\" \/>\n\t\t<meta property=\"og:image:height\" content=\"350\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2019-10-31T18:43:52+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2019-10-31T18:43:52+00:00\" \/>\n\t\t<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/prohoster\" \/>\n\t\t<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/prohoster\" \/>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"\ud83e\udd47Happy Party oder ein paar Zeilen Erinnerungen an die Bekanntschaft mit Partitionierung in PostgreSQL10 | ProHoster","description":"Vorwort oder wie die Idee des Partitionierens entstanden ist. Die Geschichte beginnt hier: Erinnerst du dich, wie alles begann.","canonical_url":"https:\/\/prohoster.info\/de\/blog\/administrirovanie\/happy-party-ili-para-strok-vospominanij-o-znakomstve-s-sektsionirovaniem-v-postgresql10","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":null,"og:locale":"de_DE","og:site_name":"ProHoster | \u041a\u0443\u043f\u0438\u0442\u044c \u043d\u0430\u0434\u0435\u0436\u043d\u044b\u0439 \u0445\u043e\u0441\u0442\u0438\u043d\u0433 \u0434\u043b\u044f \u0441\u0430\u0439\u0442\u043e\u0432 \u0441 \u0437\u0430\u0449\u0438\u0442\u043e\u0439 \u043e\u0442 DDoS, VPS VDS \u0441\u0435\u0440\u0432\u0435\u0440\u044b","og:type":"article","og:title":"\ud83e\udd47Happy Party \u0438\u043b\u0438 \u043f\u0430\u0440\u0430 \u0441\u0442\u0440\u043e\u043a-\u0432\u043e\u0441\u043f\u043e\u043c\u0438\u043d\u0430\u043d\u0438\u0439 \u043e \u0437\u043d\u0430\u043a\u043e\u043c\u0441\u0442\u0432\u0435 \u0441 \u0441\u0435\u043a\u0446\u0438\u043e\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u0435\u043c \u0432 PostgreSQL10 | ProHoster","og:description":"\u041f\u0440\u0435\u0434\u0438\u0441\u043b\u043e\u0432\u0438\u0435 \u0438\u043b\u0438 \u043a\u0430\u043a \u0432\u043e\u0437\u043d\u0438\u043a\u043b\u0430 \u0438\u0434\u0435\u044f \u0441\u0435\u043a\u0446\u0438\u043e\u043d\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u041d\u0430\u0447\u0430\u043b\u043e \u0438\u0441\u0442\u043e\u0440\u0438\u0438 \u0437\u0434\u0435\u0441\u044c: \u0422\u044b \u043f\u043e\u043c\u043d\u0438\u0448\u044c, \u043a\u0430\u043a \u0432\u0441\u0435 \u043d\u0430\u0447\u0438\u043d\u0430\u043b\u043e\u0441\u044c.","og:url":"https:\/\/prohoster.info\/de\/blog\/administrirovanie\/happy-party-ili-para-strok-vospominanij-o-znakomstve-s-sektsionirovaniem-v-postgresql10","og:image":"https:\/\/prohoster.info\/wp-content\/uploads\/2021\/11\/logo-350.jpg","og:image:secure_url":"https:\/\/prohoster.info\/wp-content\/uploads\/2021\/11\/logo-350.jpg","og:image:width":350,"og:image:height":350,"article:published_time":"2019-10-31T18:43:52+00:00","article:modified_time":"2019-10-31T18:43:52+00:00","article:publisher":"https:\/\/www.facebook.com\/prohoster","article:author":"https:\/\/www.facebook.com\/prohoster"},"aioseo_meta_data":{"post_id":"31905","title":null,"description":null,"keywords":null,"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":null,"og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"","isEnabled":true},"graphs":[]},"schema_type":null,"schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"local_seo":null,"seo_analyzer_scan_date":"2026-01-21 08:22:19","breadcrumb_settings":null,"limit_modified_date":false,"reviewed_by":null,"ai":null,"created":"2021-03-01 03:09:25","updated":"2026-01-21 08:22:19","focus_keyword":null,"additional_keywords":null,"truseo_locale":null},"gt_translate_keys":[{"key":"link","format":"url"}],"_links":{"self":[{"href":"https:\/\/prohoster.info\/de\/wp-json\/wp\/v2\/posts\/31905","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/prohoster.info\/de\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/prohoster.info\/de\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/prohoster.info\/de\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/prohoster.info\/de\/wp-json\/wp\/v2\/comments?post=31905"}],"version-history":[{"count":0,"href":"https:\/\/prohoster.info\/de\/wp-json\/wp\/v2\/posts\/31905\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/prohoster.info\/de\/wp-json\/wp\/v2\/media\/23765"}],"wp:attachment":[{"href":"https:\/\/prohoster.info\/de\/wp-json\/wp\/v2\/media?parent=31905"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/prohoster.info\/de\/wp-json\/wp\/v2\/categories?post=31905"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/prohoster.info\/de\/wp-json\/wp\/v2\/tags?post=31905"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}