Hi, One observation when we execute a select query having results more than the screen space available and press ctrl+f to display the remaining records, one of the record was not displayed and the message "...skipping one line" was displayed.
I'm not sure if this is intentional behaviour. Steps for the same: postgres=# create table psqltest as select generate_series(1,50); SELECT 50 postgres=# select * from psqltest; generate_series ----------------- 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 *...skipping one line* 47 48 49 50 (50 rows) Is this intended? -- Regards, vignesh EnterpriseDB: http://www.enterprisedb.com