473,799 Members | 3,290 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

PostgreSQL Database Forum

PostgreSQL ORDBMS database - Ask questions about PostgreSQL development, administration replication, clustering, connection pooling, tables, indexes, databases, performance, SQL, queries and more.
0
3,339
thread by: Rick Casey | last post Nov 23 '05 by: Rick Casey
Hello, I am trying to get a trigger to fire when a record is deleted that will record the deleted record in a history file. Here is the trigger code: CREATE OR REPLACE FUNCTION logPedigreesDel() RETURNS TRIGGER AS ' begin INSERT INTO PEDIGREES_hist( PedigreeID,
0
2,420
thread by: Douglas Lochart | last post Nov 23 '05 by: Douglas Lochart
Hey all, First off I am new to postgres and multi-lingual development so pardon me if the answer is overly obvious. We our database is setup for UNICODE. We have a mixture of clients accessing the database through JDBC and C (libpq). My question involves the C interface to Postgres libpq. Once a query has been made (with...
2
10,250
thread by: - | last post Nov 23 '05 by: Stu
i am using a regular expression in a select statement inside a function. how do i dynamically insert a variable into the regexp? eg. SELECT string ~ '\\d{X}' where X is the dynamic variable. I tried '\\d{' || X || '}' obviously it didn't work.
18
2,568
thread by: Marc G. Fournier | last post Nov 23 '05 by: Randy Yates
Due to recent action by Google concerning the comp.databases.postgresql.* hierarchy, we are going to make some changes that should satisfy just about everyone ... over the next 24hrs or so, traffic *to* comp.databases.postgresql.* from the mailing lists will cease and be re-routed to pgsql.* instead ... on our server (and we encourage others...
2
9,772
thread by: SmoothJazz | last post Nov 23 '05 by: SmoothJazz
Hi All! I am wanting to setup/run PostgreSQL on my server (a SuSE Linux 9.2 distro) but I'm not quite sure which way to go. I have a few books on PostgreSQL but they don't seem to match the way SuSE has installed it. The books explain how to install/make/etc. and then how to setup a "cluster". The directory structure differs alot from the...
0
3,011
thread by: Jan Szumiec | last post Nov 23 '05 by: Jan Szumiec
Hi, First of all I'd like to say that 8.0 is a great piece of software, and I've been looking forward to installing 8.0 for quite some time now. Does PG allow you to store XML documents as DOM documents? Is there such data type? If not, is it very hard to extend the type system to include a binary representation of an XML document? ...
2
2,440
thread by: Jenny | last post Nov 23 '05 by: Jenny
hi, could someone please tell me how do I get a query to show the (*) fields in table2 only when table2.field1 exist in table1.field1 thanks in advance. jenny table 1 contains -------------------------- field1
1
7,214
thread by: John French | last post Nov 23 '05 by: Nikolay A Mirin
I just installed postgresql 7.4.5 and pgadmin3 1.0.2 on FreeBSD and noticed that pgadmin allows the pgsql user to log in while ignoring the password. You can enter a wrong password or no password and still get into postgresql. I started the postmaster as a FreeBSD user named pgsql by running postmaster -i -D /usr/local/pgsql/data I changed...
0
2,049
thread by: Randy Yates | last post Nov 23 '05 by: Randy Yates
I'm just learning the libpqxx library and it appears to say that it is built on top of libpq. So I'm trying to locate libpq so I'll have access to that documentation and binaries. But I can't find it on gborg. Any pointers? -- % Randy Yates % "Maybe one day I'll feel her cold embrace, %% Fuquay-Varina, NC % ...
0
1,923
thread by: boyd | last post Nov 23 '05 by: boyd
I searched for the latest on adding the Oracle-like feature called partitioning - a nice feature for tables that grow and grow, when you still need to be able to call up data from 5 years ago - but have not found much talk about it lately. Does anyone know if this feature will be added to PostgreSQL? Maybe in version 9? Boyd
0
2,951
thread by: Mark | last post Nov 23 '05 by: Mark
hello! does anybody know how well the pg extension in PHP for PostgreSQL supports UTF-8 character sets? functions such as pg_escape_string would be of particular concern as they go whipping through strings replacing things. are these functions tuned to the input string type, the database string type, or just hardcoded as 8859-1? ...
0
3,485
thread by: Luca | last post Nov 23 '05 by: Luca
Hi, i'm trying to save images on a postgres db. I created a table like this: CREATE TABLE image(name text, image oid); and I inserted in it a file this way: INSERT INTO image VALUES ('myimage',lo_import('/home/myhome/images/leaf.jpg')); First of all: am I doing it right?
6
3,067
thread by: jao | last post Nov 23 '05 by: Bo
My company has a product in beta which uses Postgres 7.4.3. We expect to have a code freeze for our 1.0 product in March 2005. I'd really like to use Postgres 8.x in our 1.0 product. We're especially looking forward to the background writer and tablespaces. Is the 8.0 release date known? Suppose 8.0 is released in December or January. Is...
0
2,049
thread by: Mike Cox | last post Nov 23 '05 by: Mike Cox
Just to let everyone who is interested in having 5 postgresql groups in the big 8, that I've posted the second RFD. Please visit news.groups to read and discuss the Postgresql RFD. This is potential very important to all those who use Postgresql, so if in doubt, do stop by news.groups and read it. Thanks.
1
6,034
thread by: Alexander Pucher | last post Nov 23 '05 by: Timothy Perrigo
Hi, struggling around with this for some time: How can I use a table name as a parameter in a PL/pgSQL function ?? I tried this but it didn't work... CREATE OR REPLACE FUNCTION my_row_count(text) RETURNS int4 AS '
0
1,828
thread by: Krause, Lewis | last post Nov 23 '05 by: Krause, Lewis
I know there is a command to add the column. I want to back up the table before I alter it. What is the best way. It has a couple indexes and a trigger. If I am in the wrong forum please direct me to the right one. Thanks. Lewie
1
2,112
thread by: Jerry LeVan | last post Nov 23 '05 by: Michael Fuhr
I guess the subject says it all, can I install the B5 release to a B4 db without starting from scratch? Jerry ---------------------------(end of broadcast)--------------------------- TIP 2: you can get off all lists at once with the unregister command (send "unregister YourEmailAddressHere" to majordomo@postgresql.org)
2
2,068
thread by: Net Virtual Mailing Lists | last post Nov 23 '05 by: John DeSoi
Hello, I have a table with a timestamp column and I want to set this to a value of now() - a random number of days between 0 and 45 for each row... I've tried to do this a bunch of different ways and can't figure it out... Here is my latest version: update sometable set entered_dt = now() - interval round(random()*45)||' days';
2
2,110
thread by: Joost Kraaijeveld | last post Nov 23 '05 by: Jim Seymour
Hi all, I have three questions about 1 table CREATE TABLE public.logs ( rule_name varchar(32) NOT NULL, bytes int8 NOT NULL, pkts int8 NOT NULL,
16
28,517
thread by: Adam Witney | last post Nov 23 '05 by: Adam Witney
Hi, Is it possible for the COPY command to read data from a file, but skip specific columns? Thanks Adam
10
2,280
thread by: matthias | last post Nov 23 '05 by: Karsten Hilbert
I am currently creating a database with less than 20 simple tables (only SQL 92 types, simple constraints, no PostgreSQL specific stuff, no stored procedures...) Unfortunately, some of those tables will contain up to 4 Million entries, making the size of the entire database 700-1000MB. In order to maintain good query times (hopefully <1-3...
11
9,550
thread by: David Pradier | last post Nov 23 '05 by: Bill Harris
Hi ! I've just inherited the responsibility of a postgresql database of roughly 480 tables and 6460 columns, mainly without constraints, not even foreign keys. I'd like to make it a little more orthodox (lots and lots of constraints, yeah !!), but I need a tool to make a documentation about every column, at least, as some column are...
0
1,983
thread by: Marc G. Fournier | last post Nov 23 '05 by: Marc G. Fournier
Its been almost 4 weeks since Beta4, and alot of work, involving alot of bug fixes, and documentation improvements, to the source tree, we have just released our 5th Beta of 8.0.0. All of our major Open Items have now been completed, and we're slowly entering the final stages, involving alot of testing and documentation changes. For a...
0
1,321
thread by: phil campaigne | last post Nov 23 '05 by: phil campaigne
Occasionally I want to store a null value for my java.sql.Time--> Time column in Postgresql. update event set game_clock=null where event_id=1; I can retreive the record with the null value (type Time) if I select on the primary key, select game_clock from event where event_id = 1; but when I try to select on the null column value, I get...
0
2,523
thread by: Sally Sally | last post Nov 23 '05 by: Sally Sally
I am trying to figure out how I can change the default operator class of the index created for my primary key field. Is it even possible since I am not able to find the syntax? Or do I need to create the primary key and then an additional index with the operator class I want. (It would be a waste of space) Thanks Sally

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.