I have a PostgreSQL cluster on the server 10.10.10.1 and a test database 'PG114' with
the test table 'dbo.emp_t1'.
Working with the cluster I can execute:
SELECT pg_relation_filepath ( 'dbo.emp_t1' );
I am getting the following results:
pg_tblspc/16394/PG_11_201809051/16395/3978415
Now I am working with a PostgreSQL cluster on another server 10.10.10.2 .
I would like to connect to the cluster on the first server 10.10.10.1 (for instance
with the use of dblink-extention) and get the same information about the same table
or object 'dbo.emp_t1'.
What is the best way to run such a task?
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…