> echo "\dt" | psql -U postgres -h192.168.1.1 -d testdatenbank List of relations Schema | Name | Type | Owner --------+-----------------------------+-------------------+---------- public | log_tab | table | postgres public | origtab_log | partitioned table | postgres public | origtab_log_default | table | postgres public | origtab_log_p20260611 | table | postgres public | origtab_log_p20260612 | table | postgres public | origtab_log_p20260613 | table | postgres public | origtab_log_p20260614 | table | postgres public | origtab_log_p20260615 | table | postgres public | origtab_log_p20260616 | table | postgres public | origtab_log_p20260617 | table | postgres public | origtab_log_p20260618 | table | postgres public | origtab_log_p20260619 | table | postgres public | origtab_log_p20260620 | table | postgres public | origtab_log_p20260621 | table | postgres public | origtab_log_p20260622 | table | postgres public | origtab_log_p20260623 | table | postgres public | origtab_log_p20260624 | table | postgres public | origtab_log_p20260625 | table | postgres public | part_config | table | postgres public | part_config_sub | table | postgres public | template_public_origtab_log | table | postgres (21 rows) > echo "INSERT INTO log_tab (js, modus, z_options, job_options, execution_time) VALUES ('IN_PROGRESS','Statik','test','test','00:00:00');" | psql -U postgres -h192.168.1.1 -d testdatenbank INSERT 0 1 > echo "INSERT INTO origtab_log (e_id, net, zyk, origtab) VALUES (1, 'A', '01', 'test');" | psql -U postgres -h192.168.1.1 -d testdatenbank INSERT 0 1 > echo "SELECT * FROM log_tab;" | psql -U postgres -h192.168.1.1 -d testdatenbank id | js | start_time | end_time | modus | z_options | job_options | execution_time ----+-------------+----------------------------+----------+--------+-----------+-------------+---------------- 1 | IN_PROGRESS | 2026-06-18 14:41:38.222129 | | Statik | test | test | 00:00:00 (1 row) > echo "SELECT * FROM origtab_log;" | psql -U postgres -h192.168.1.1 -d testdatenbank id | e_id | net | zyk | origtab | update_timestamp ----+------+-----+-----+---------+---------------------------- 1 | 1 | A | 01 | test | 2026-06-18 14:41:38.225434 (1 row)