Grokbase
x

PostgreSQL - General

 Topics | People | Info | Saved by | Page 1 of 1647: 1 2 3 > >>

client_encoding

By Dean Gibson (DB Administrator) at Feb 22, 2008, 03:59 am UTC

If I "ALTER DATABASE ... SET client_encoding TO DEFAULT", is the default the "client_encoding" in postgresql.conf when the server was last started, or the value at the time the "ALTER DATABASE ... SET client_encoding TO DEFAULT" statement is executed? In other words, if I "ALTER DATABASE ... SET... More...

Feedback on PLJava

By Pascal Cohen at Feb 22, 2008, 03:33 am UTC

Hello Are there users of PL/Java ? I would like to get some feedback on using it. As we could use triggers and as we have already some kinds of 'applicative' triggers written in Java, I was wondering if I could just reuse the code and plug it Thanks for any advice ---------------------------(end of... More...

Postgres 8.3 broke everything

By Alex Turner at Feb 22, 2008, 02:28 am UTC

Upgrading to Postgres 8.3 broke virtually every site we host, and I finally figured out why. In 8.2 you could do this: create table foo ( ---------------------------(end of broadcast)--------------------------- TIP 5: don't forget to increase your free space map settings More...

need some help on figuring out how to write a query

By Justin at Feb 22, 2008, 02:09 am UTC

need to write a query for sales order table where we get the qty order * price for all line items by week then average then create a moving Average past 10 weeks of entered sales orders line items. So what will happen is some one will enter a date range going back 6 month from the present date then... More...

New inst. 8.3.0 has no client

By John D. Tiedeman at Feb 22, 2008, 01:48 am UTC

This is a multi-part message in MIME format. ------=_NextPart_000_0006_01C874BE.C1A16FD0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable When I upgraded to Kubuntu 7.10 I opted to install 8.3 rather than stick = with 8.2. I knew to dump my 8.2 files first.... More...

ts_headline

By Stephen Davies at Feb 22, 2008, 12:07 am UTC

I am a bit puzzled by the output of ts_headline (V8.3) for different queries. I have one record in a test documentation table and am applying different queries against that table to check out the ts_headline outputs. The "document" in question has 2553 words which generate 519 tokens in the... More...

Install problem w/8.3 on windows 2000 : application failed to initialize properly (0xc0000022)

By Dee at Feb 21, 2008, 10:30 pm UTC

Hi. This is my first post to this list. So please let me know if my question is in the wrong area. I am trying to install version 8.3.0.1 on an old windows 2000 box I inherited. Firewall s/w is installed but disabled. I am logged in as a user with Administrative rights. When the installing gets to... More...

Disable Triggers

By Terry Lee Tucker at Feb 21, 2008, 10:07 pm UTC

Greetings: We have been working diligently toward integrating Slony into our production databases. We've been having trouble with various tables, although being replicated perfectly in the initial replication stage, afterwards, getting out of sync. I have finally figured out what the problem is. We... More...

No pgxs.mk with win32 binaries

By Mike Leahy at Feb 21, 2008, 8:04 pm UTC

Hello list, I'm trying to build the PL/R module on Win32 with PostgreSQL 8.3. I've done this before with no trouble using several 8.2.x versions of PostgreSQL (from the win32 installer). However, now that I'm trying to update things for 8.3, it seems that the pgxs.mk file needed by the PL/R... More...

Mac ordering with locales

By Pascal Cohen at Feb 21, 2008, 7:14 pm UTC

Hello We are using different OS (Mac, win (with a small w!) and Linux). We had some problems when doing some ordering on names. I found that it seemed to be related on locale, While on Linux it used default locales (en_US.UTF-8 or something like that), I had a nice behavior). I learned to check th... More...

PostgreSQL 8.3.0 RPMs are available for download

By Devrim GUNDUZ at Feb 21, 2008, 5:33 pm UTC

PostgreSQL New RPM Sets Versions: 8.3.0 Set labels: 8.3.0-1PGDG Release Info: The PostgreSQL RPM Building Project has released RPMs for 8.3.0 and they are available in main FTP site and its mirrors. We currently have RPMs for: - Fedora 7 - x86 - Fedora 7 - x86_64 - Fedora 8 - x86 - Fedora 8 -... More...

text and bytea

By hernan gonzalez at Feb 21, 2008, 4:34 pm UTC

post this as comment in the docs, but perhaps someone who knows better can correct or clarify) =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=... More...

Re: Vacuous errors in pg_dump ... | pg_restore pipeline

By Doug McNaught at Feb 21, 2008, 3:25 pm UTC

How about: CREATE DATABASE newdb TEMPLATE olddb; DATABASE). I think the 'createdb' program also has an option for choosing the template. ---------------------------(end of broadcast)--------------------------- TIP 2: Don't 'kill -9' the postmaster... More...

Querying the schema for column widths - what syntax do I use?

By Howard Wilkinson at Feb 21, 2008, 2:37 pm UTC

I am working on some upgrades to the MyDNS open source product. I have some expertise in MySQL but am not overly familiar with PostgreSQL and need some guidance on how to query the schema for the maximum size of data a column can hold. In MySQL I can do either: a "DESCRIBE" command or do "SELECT... More...

selective backup and restore

By luca.cicir...@email.it at Feb 21, 2008, 1:55 pm UTC

Hi All. Is it possible in postgreSQL 8.2.4, using pg_dump.exe, make a backup/restore conditioned to the key of some tables (respectingexisting constraints)? I'm using Windows Xp and Windows Server 2003.Thanks in advance.Luca. Email.it, the professional e-mail, gratis per te: http://www.email.it/f... More...

How to view temp tables

By pc at Feb 21, 2008, 1:51 pm UTC

My php code is creating temporary table named mytemp,but when I run a selec * from mytemp I cannot see the table.How can I see the table from postgresql command prompt? ---------------------------(end of broadcast)--------------------------- TIP 6: explain analyze is your friend More...

unnesesary sorting after Merge Full Join

By Alexey Nalbat at Feb 21, 2008, 10:08 am UTC

Hello. I'd like to use ORDER BY in any specified order and LIMIT, OFFSET for paging query results. The query is FULL OUTER JOIN of two tables by field id. I think the results of Merge Full Join to be ordered by some "combined id". And there is no need in extra Sort if I specify ORDER BY that... More...

Trigram performance penalty on varchar?

By Mario Lopez at Feb 21, 2008, 09:56 am UTC

Hi, I am indexing a 100 million record table composed of varchar(255) as the field to be indexed. I have always seen that examples of pg_trgm are based on text type fields. Is this by any special reason?. My computer is creating the index since 5 hours ago so I guess there must be something... More...

How to make update rapidly?

By hewei at Feb 21, 2008, 09:15 am UTC

Hi,Every body; I have a table contains 100,000 rows, and has a primary key(int). Now ,I need to execute sql command like "update .......... where id=*"(id is primary key). I expect execute 1200-1600 sqlcommands per second(1200-1600/s). In test,when the id increase by degrees in sqlcommands, then I... More...

Error in PlPython procedure

By mars_osrp at Feb 21, 2008, 05:05 am UTC

Hi All, I am using PlPython procedure to insert data in a table: plan = plpy.execute("insert into test(id,name) values(1 , 'test_py')") I am getting error: ERROR: invalid input syntax for integer: "<PLyResult object at 0x374a5a70>" In fact preparing a plan and passing a list of values for columns... More...

spacer
 Topics | People | Info | Saved by | Page 1 of 1647: 1 2 3 > >>
Home > Groups > postgresql.org > PostgreSQL - General