Query: dblink_get_notify
OS: centos
Section: 3
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
DBLINK_GET_NOTIFY(3) PostgreSQL 9.2.7 Documentation DBLINK_GET_NOTIFY(3)NAMEdblink_get_notify - retrieve async notifications on a connectionSYNOPSISdblink_get_notify() returns setof (notify_name text, be_pid int, extra text) dblink_get_notify(text connname) returns setof (notify_name text, be_pid int, extra text)DESCRIPTIONdblink_get_notify retrieves notifications on either the unnamed connection, or on a named connection if specified. To receive notifications via dblink, LISTEN must first be issued, using dblink_exec. For details see LISTEN(7) and NOTIFY(7).ARGUMENTSconname The name of a named connection to get notifications on.RETURN VALUEReturns setof (notify_name text, be_pid int, extra text), or an empty set if none.EXAMPLESSELECT dblink_exec('LISTEN virtual'); dblink_exec ------------- LISTEN (1 row) SELECT * FROM dblink_get_notify(); notify_name | be_pid | extra -------------+--------+------- (0 rows) NOTIFY virtual; NOTIFY SELECT * FROM dblink_get_notify(); notify_name | be_pid | extra -------------+--------+------- virtual | 1229 | (1 row) PostgreSQL 9.2.7 2014-02-17 DBLINK_GET_NOTIFY(3)
| Related Man Pages | 
|---|
| listen(7) - centos | 
| listen(7) - redhat | 
| dblink(3) - centos | 
| dblink_fetch(3) - centos | 
| dblink_open(3) - centos | 
| Similar Topics in the Unix Linux Community | 
|---|
| comparing text files | 
| search and replace a text in a file | 
| open ports and services | 
| To get Port number alone from the list | 
| Sum value in text file |