Path: csiph.com!v102.xanadu-bbs.net!xanadu-bbs.net!feeder.erje.net!eu.feeder.erje.net!ecngs!feeder2.ecngs.de!novso.com!newsfeed.xs4all.nl!newsfeed4.news.xs4all.nl!xs4all!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.006 X-Spam-Evidence: '*H*': 0.99; '*S*': 0.00; 'column': 0.07; 'error:': 0.07; 'utf-8': 0.07; 'from:addr:ethan': 0.09; 'from:addr:stoneleaf.us': 0.09; 'from:name:ethan furman': 0.09; 'means,': 0.09; 'message-id:@stoneleaf.us': 0.09; '~ethan~': 0.09; '10:49': 0.16; '32,': 0.16; 'context:': 0.16; 'exactly?': 0.16; 'fit,': 0.16; 'postgres,': 0.16; 'received:gateway13.websitewelcome.com': 0.16; 'subject:unicode': 0.16; 'wrote:': 0.18; 'header:User-Agent:1': 0.23; 'bytes': 0.24; 'looks': 0.24; 'this:': 0.26; 'header:In-Reply-To:1': 0.27; 'am,': 0.29; 'character': 0.29; "i'm": 0.30; 'problem': 0.35; 'created': 0.35; 'test': 0.35; 'but': 0.35; 'format.': 0.36; 'should': 0.36; 'too': 0.37; 'system,': 0.38; 'subject:]': 0.38; 'to:addr:python- list': 0.38; 'sure': 0.39; 'to:addr:python.org': 0.39; 'received:173': 0.61; 'further': 0.61; 'received:69.56': 0.68; 'revealed': 0.68; 'capital': 0.73; 'restore': 0.78; 'ethan': 0.84; 'furman': 0.84; 'grave': 0.84; 'received:69.56.148': 0.84 Date: Thu, 09 Jan 2014 11:51:21 -0800 From: Ethan Furman User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:16.0) Gecko/20121010 Thunderbird/16.0.1 MIME-Version: 1.0 To: python-list@python.org Subject: Re: unicode troubles and postgres [SOLVED] References: <52CEEF37.50504@stoneleaf.us> In-Reply-To: <52CEEF37.50504@stoneleaf.us> Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 8bit X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - gator3304.hostgator.com X-AntiAbuse: Original Domain - python.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - stoneleaf.us X-BWhitelist: no X-Source-IP: 173.12.184.233 X-Source: X-Source-Args: X-Source-Dir: X-Source-Sender: ([173.12.184.233]) [173.12.184.233]:48156 X-Source-Auth: ethan+stoneleaf.us X-Email-Count: 2 X-Source-Cap: dG9idWs7dG9idWs7Z2F0b3IzMzA0Lmhvc3RnYXRvci5jb20= X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 18 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1389299844 news.xs4all.nl 2898 [2001:888:2000:d::a6]:42625 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:63631 On 01/09/2014 10:49 AM, Ethan Furman wrote: > So I'm working with postgres, and I get a datadump which I try to restore to my test system, and I get this: > > ERROR: value too long for type character varying(4) > CONTEXT: COPY res_currency, line 32, column symbol: "руб" > > "py6" sure looks like it should fit, but it don't. Further investigation revealed that "py6" is made up of the bytes d1 > 80 d1 83 d0 b1. > > Any ideas on what that means, exactly? For the curious, it means CYRILLIC SMALL LETTER ER, CYRILLIC SMALL LETTER U, CYRILLIC CAPITAL LETTER IE WITH GRAVE in utf-8 format. The problem was I had created the database from template0 instead of template1, and 0 is SQL-ASCII while 1 is UTF8. -- ~Ethan~