0

我想从另一个 postgress 数据库(9.1.7)导入一个表到我的(9.1.11)。我尝试导入转储,但出现一堆语法错误,我假设版本不匹配存在一些问题?

除了降级我的 postgress 安装以匹配所需的输入文件之外,还有更好的解决方案吗?

这是我在 9.1.7 系统上导出数据库时使用的命令:

pg_dump superdb -U tester -a -t guidedata > /tmp/guidedata.sql

这是我用来导入转储文件 guidedata.sql 的命令

psql linuxdb -U tester -h localhost < guidedata.sql

这是我尝试导入的数据库转储文件的顶部:

--
-- PostgreSQL database dump
--

SET statement_timeout = 0;
SET client_encoding = 'UTF8';
SET standard_conforming_strings = on;
SET check_function_bodies = false;
SET client_min_messages = warning;

SET search_path = public, pg_catalog;

--
-- Data for Name: epg; Type: TABLE DATA; Schema: public; Owner: spy
--

COPY epg (id, channel, sdate, stime, duration, stitle, ltitle, theme, sdesc, ldesc, mpaa, rating, stereo, surround, sap, closedcaptioned, animated, blackwhite, rerun, live, ismovie, nudity, language, violence, adulttheme, halfstars, field1) FROM stdin;
90056520        AMC     01092014        0100    270     Titanic Titanic 8,15    A woman falls for an artist aboard the ill-fated ship.  Leonardo DiCaprio, Kate Winslet (1997) A society girl abandons her haughty fiance for a penniless artist on the ill-fated ship's maiden voyage. (3:15)  MPAAPG13        TVPG    f       f       f       t       f       f       t       f       t       t       t       t       t       8       f
90056521        AMC     01092014        0530    180     Love Actually   Love Actually   23,15   Various people deal with relationships in London.       Hugh Grant, Laura Linney (2003) A prime minister, an office worker, a pop star, a jilted writer, married couples and various others deal with relationships in London. (2:15)   MPAAR   TVPG    f       f       t       t       f       f       t       f       t       t       t       f       t       6       f
90056522        AMC     01092014        0830    150     Four    Four Weddings and a Funeral     23,15   An English charmer meets a lusty American.      Hugh Grant, Andie MacDowell (1994) An English charmer and a lusty American make love over a course of surprising events. (1:56) MPAAR   TV14    f       f       t       t       f       f       t       f       t       f       t       f       t       7       f
90056523        AMC     01092014        1100    30      Paid Prog.      Paid Programming        0       Paid programming.       Paid programming.                       f       f       f       f       f       f       t       f       f       f       f       f       f       0       f
90056524        AMC     01092014        1130    30      Williams        Montel Williams 19      Living well with Montel and the effects of identity theft.      Living well with Montel and the devastating effects of identity theft.                  f       f       f       f       f       f       t       f       f       f       f       f       f       0       f
90056525        AMC     01092014        1200    30      Cindy Crawford  Cindy Crawford Reveals Secret to Ageless Beauty 19      Cindy Crawford's skin secret with Meaningful Beauty.    Cindy Crawford's supermodel secret to youthful, radiant-looking skin with Meaningful Beauty.                    f       f       f       f       f       f       t       f       f       f       f       f       f       0       f
90056526        AMC     01092014        1230    30      More Sex        More Sex, Less Stress   19      Androzene promotes male sexual health & nourishes the body.     Androzene promotes male sexual health and nourishes the body.                   f       f       f       f       f       f       t       f       f       f       f       f       f       0       f
90056527        AMC     01092014        1300    30      WEN Hair Care   WEN by Chaz Dean Revolutionary Hair Care System 19      WEN by Chaz Dean is revolutionary hair care.    WEN by Chaz Dean is revolutionary hair care that cleans and conditions without many shampoo's harsh detergents or sulfates. Natural ingredients help make hair shinier, fuller, softer and more manageable! By trusted GuthyRenker.                     f       f       f       f       f       f       t       f       f       f       f       f       f       0       f
90056528        AMC     01092014        1330    30      Medicare        Looking for a Medicare plan? Tune in now!       19      Watch and learn about Humana Medicare Advantage plans.  Watch and learn about Humana Medicare Advantage plans.                  f       f       f       f       f       f       t       f       f       f       f       f       f       0       f
90056529        AMC     01092014        1400    5       Stooges The Three Stooges       6       The caveman boys meet cavewomen.        Moe Howard, Larry Fine ''I'm a Monkey's Unc

这是我在尝试导入时在控制台上看到的一些错误输出:

  ERROR:  syntax error at or near "Route"
LINE 1: Route 66 renovation gives Ron a change of heart.  TVPG t f f...
        ^
ERROR:  syntax error at or near "Ron"
LINE 1: Ron and Jason bring out the Pontiac GTO.  TVPG t f f t f f t...
        ^
ERROR:  syntax error at or near "repairing"
LINE 1: repairing the clutch and drive shaft on the 1995 BMW.  TVPG ...
        ^
ERROR:  syntax error at or near "classic"
LINE 1: classic Bucik;

谢谢

4

1 回答 1

0

我的猜测 - 一个系统是 linux/unix/mac,另一个是 Windows。

它抱怨数据块的第一行,因为有一个杂散的回车 (\r) 字符。

-Fc解决方案:在您的转储命令中或--format=custom在您的转储命令上使用(推荐,除非您有充分的理由不这样做)“自定义”格式。那应该排序它。

于 2014-01-10T09:17:56.433 回答