⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 dblink.sql

📁 PostgreSQL7.4.6 for Linux
💻 SQL
字号:
-- Adjust this setting to control where the objects get created.SET search_path = public;---- Define the functions and test data-- therein.---- Turn off echoing so that expected file does not depend on-- contents of dblink.sql.\set ECHO none\i dblink.sql\set ECHO allCREATE TABLE foo(f1 int, f2 text, f3 text[], primary key (f1,f2));INSERT INTO foo VALUES (0,'a','{"a0","b0","c0"}');INSERT INTO foo VALUES (1,'b','{"a1","b1","c1"}');INSERT INTO foo VALUES (2,'c','{"a2","b2","c2"}');INSERT INTO foo VALUES (3,'d','{"a3","b3","c3"}');INSERT INTO foo VALUES (4,'e','{"a4","b4","c4"}');INSERT INTO foo VALUES (5,'f','{"a5","b5","c5"}');INSERT INTO foo VALUES (6,'g','{"a6","b6","c6"}');INSERT INTO foo VALUES (7,'h','{"a7","b7","c7"}');INSERT INTO foo VALUES (8,'i','{"a8","b8","c8"}');INSERT INTO foo VALUES (9,'j','{"a9","b9","c9"}');-- misc utilities-- show the currently executing querySELECT 'hello' AS hello, dblink_current_query() AS query;-- list the primary key fieldsSELECT *FROM dblink_get_pkey('foo');-- build an insert statement based on a local tuple,-- replacing the primary key values with new onesSELECT dblink_build_sql_insert('foo','1 2',2,'{"0", "a"}','{"99", "xyz"}');-- build an update statement based on a local tuple,-- replacing the primary key values with new onesSELECT dblink_build_sql_update('foo','1 2',2,'{"0", "a"}','{"99", "xyz"}');-- build a delete statement based on a local tuple,SELECT dblink_build_sql_delete('foo','1 2',2,'{"0", "a"}');-- retest using a quoted and schema qualified tableCREATE SCHEMA "MySchema";CREATE TABLE "MySchema"."Foo"(f1 int, f2 text, f3 text[], primary key (f1,f2));INSERT INTO "MySchema"."Foo" VALUES (0,'a','{"a0","b0","c0"}');-- list the primary key fieldsSELECT *FROM dblink_get_pkey('"MySchema"."Foo"');-- build an insert statement based on a local tuple,-- replacing the primary key values with new onesSELECT dblink_build_sql_insert('"MySchema"."Foo"','1 2',2,'{"0", "a"}','{"99", "xyz"}');-- build an update statement based on a local tuple,-- replacing the primary key values with new onesSELECT dblink_build_sql_update('"MySchema"."Foo"','1 2',2,'{"0", "a"}','{"99", "xyz"}');-- build a delete statement based on a local tuple,SELECT dblink_build_sql_delete('"MySchema"."Foo"','1 2',2,'{"0", "a"}');-- regular old dblinkSELECT *FROM dblink('dbname=regression','SELECT * FROM foo') AS t(a int, b text, c text[])WHERE t.a > 7;-- should generate "connection not available" errorSELECT *FROM dblink('SELECT * FROM foo') AS t(a int, b text, c text[])WHERE t.a > 7;-- create a persistent connectionSELECT dblink_connect('dbname=regression');-- use the persistent connectionSELECT *FROM dblink('SELECT * FROM foo') AS t(a int, b text, c text[])WHERE t.a > 7;-- open a cursorSELECT dblink_open('rmt_foo_cursor','SELECT * FROM foo');-- fetch some dataSELECT *FROM dblink_fetch('rmt_foo_cursor',4) AS t(a int, b text, c text[]);SELECT *FROM dblink_fetch('rmt_foo_cursor',4) AS t(a int, b text, c text[]);-- this one only finds two rows leftSELECT *FROM dblink_fetch('rmt_foo_cursor',4) AS t(a int, b text, c text[]);-- close the cursorSELECT dblink_close('rmt_foo_cursor');-- should generate 'cursor "rmt_foo_cursor" not found' errorSELECT *FROM dblink_fetch('rmt_foo_cursor',4) AS t(a int, b text, c text[]);-- close the persistent connectionSELECT dblink_disconnect();-- should generate "connection not available" errorSELECT *FROM dblink('SELECT * FROM foo') AS t(a int, b text, c text[])WHERE t.a > 7;-- put more data into our slave table, first using arbitrary connection syntax-- but truncate the actual return value so we can use diff to check for successSELECT substr(dblink_exec('dbname=regression','INSERT INTO foo VALUES(10,''k'',''{"a10","b10","c10"}'')'),1,6);-- create a persistent connectionSELECT dblink_connect('dbname=regression');-- put more data into our slave table, using persistent connection syntax-- but truncate the actual return value so we can use diff to check for successSELECT substr(dblink_exec('INSERT INTO foo VALUES(11,''l'',''{"a11","b11","c11"}'')'),1,6);-- let's see itSELECT *FROM dblink('SELECT * FROM foo') AS t(a int, b text, c text[]);-- change some dataSELECT dblink_exec('UPDATE foo SET f3[2] = ''b99'' WHERE f1 = 11');-- let's see itSELECT *FROM dblink('SELECT * FROM foo') AS t(a int, b text, c text[])WHERE a = 11;-- delete some dataSELECT dblink_exec('DELETE FROM foo WHERE f1 = 11');-- let's see itSELECT *FROM dblink('SELECT * FROM foo') AS t(a int, b text, c text[])WHERE a = 11;-- close the persistent connectionSELECT dblink_disconnect();---- tests for the new named persistent connection syntax---- should generate "missing "=" after "myconn" in connection info string" errorSELECT *FROM dblink('myconn','SELECT * FROM foo') AS t(a int, b text, c text[])WHERE t.a > 7;-- create a named persistent connectionSELECT dblink_connect('myconn','dbname=regression');-- use the named persistent connectionSELECT *FROM dblink('myconn','SELECT * FROM foo') AS t(a int, b text, c text[])WHERE t.a > 7;-- create a second named persistent connection-- should error with "duplicate connection name"SELECT dblink_connect('myconn','dbname=regression');-- create a second named persistent connection with a new nameSELECT dblink_connect('myconn2','dbname=regression');-- use the second named persistent connectionSELECT *FROM dblink('myconn2','SELECT * FROM foo') AS t(a int, b text, c text[])WHERE t.a > 7;-- close the second named persistent connectionSELECT dblink_disconnect('myconn2');-- open a cursorSELECT dblink_open('myconn','rmt_foo_cursor','SELECT * FROM foo');-- fetch some dataSELECT *FROM dblink_fetch('myconn','rmt_foo_cursor',4) AS t(a int, b text, c text[]);SELECT *FROM dblink_fetch('myconn','rmt_foo_cursor',4) AS t(a int, b text, c text[]);-- this one only finds three rows leftSELECT *FROM dblink_fetch('myconn','rmt_foo_cursor',4) AS t(a int, b text, c text[]);-- close the cursorSELECT dblink_close('myconn','rmt_foo_cursor');-- should generate 'cursor "rmt_foo_cursor" not found' errorSELECT *FROM dblink_fetch('myconn','rmt_foo_cursor',4) AS t(a int, b text, c text[]);-- close the named persistent connectionSELECT dblink_disconnect('myconn');-- should generate "missing "=" after "myconn" in connection info string" errorSELECT *FROM dblink('myconn','SELECT * FROM foo') AS t(a int, b text, c text[])WHERE t.a > 7;-- create a named persistent connectionSELECT dblink_connect('myconn','dbname=regression');-- put more data into our slave table, using named persistent connection syntax-- but truncate the actual return value so we can use diff to check for successSELECT substr(dblink_exec('myconn','INSERT INTO foo VALUES(11,''l'',''{"a11","b11","c11"}'')'),1,6);-- let's see itSELECT *FROM dblink('myconn','SELECT * FROM foo') AS t(a int, b text, c text[]);-- change some dataSELECT dblink_exec('myconn','UPDATE foo SET f3[2] = ''b99'' WHERE f1 = 11');-- let's see itSELECT *FROM dblink('myconn','SELECT * FROM foo') AS t(a int, b text, c text[])WHERE a = 11;-- delete some dataSELECT dblink_exec('myconn','DELETE FROM foo WHERE f1 = 11');-- let's see itSELECT *FROM dblink('myconn','SELECT * FROM foo') AS t(a int, b text, c text[])WHERE a = 11;-- close the named persistent connectionSELECT dblink_disconnect('myconn');-- close the named persistent connection again-- should get 'connection "myconn" not available' errorSELECT dblink_disconnect('myconn');

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -