On Sun, Feb 24, 2008 at 9:20 PM, Phillip Smith <phillip.smith@xxxxxxxxxxxxxxxxxxx> wrote: >> PostgreSQL 8.2.4 >> RedHat ES4 >> >> I have a nightly cron job that is (supposed) to dump a specific >> database to magnetic tape: >> /usr/local/bin/pg_dump dbname > /dev/st0 >> >> This runs, and doesn't throw any errors, but when I try to restore it >> fails because the tape is incomplete: > A couple of possible things to try; pg_dump to a text file and try cat'ting that to the tape drive, or pipe it through tar and then to the tape. What would the correct syntax be for that - I can't figure out how to make tar accept stdin: [postgres@stirling ~]$ pg_dump dbname | tar cvf /dev/st0 tar: Cowardly refusing to create an empty archive Try `tar --help' for more information. [postgres@stirling ~]$ pg_dump dbname | tar cvf /dev/st0 - tar: -: Cannot stat: No such file or directory [postgres@stirling ~]$ THINK BEFORE YOU PRINT - Save paper if you don't really need to print this *******************Confidentiality and Privilege Notice******************* The material contained in this message is privileged and confidential to the addressee. If you are not the addressee indicated in this message or responsible for delivery of the message to such person, you may not copy or deliver this message to anyone, and you should destroy it and kindly notify the sender by reply email. Information in this message that does not relate to the official business of Weatherbeeta must be treated as neither given nor endorsed by Weatherbeeta. Weatherbeeta, its employees, contractors or associates shall not be liable for direct, indirect or consequential loss arising from transmission of this message or any attachments e-mail. ---------------------------(end of broadcast)--------------------------- TIP 9: In versions below 8.0, the planner will ignore your desire to choose an index scan if your joining column's datatypes do not match