Tried to use "ldd" but i am getting not a dynamic executable
Tom Lane wrote:
Jamie Deppeler <[EMAIL PROTECTED]> writes:
I am building a rpm for RHEL 5
The rpm contains a compiled version for postgresql-8.3.3 and tomcat
6 and java 1.6.
When i try to in
There is a few reason why I am making this installer
1. Need to make a installer that just uses one rpm file
2. It needs to come with a prebuild database
3. Custom changes have been made to tomcat configuration
Joshua D. Drake wrote:
On Thu, 2008-07-10 at 10:28 +1000, Jamie Deppeler wrote
Hi,
Not sure if this the correct place to post this issue but hopefully
someone can help.
I am building a rpm for RHEL 5
The rpm contains a compiled version for postgresql-8.3.3 and tomcat
6 and java 1.6.
When i try to install the rpm on blank test system i get the
following depend
trying to install Postgresql 8.3 and i keep getting these errors
libodbc.so is needed
libodbcinst.so is needed
Hopefully someone can help me
--
Sent via pgsql-general mailing list (pgsql-general@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-gene
Hi,
I am trying to build a new installer application.
I am in the process of upgrading postgresql 8.1 to 8.3.3 but i am having
a issue which i can't seemed to resolve.
Error output from rpmbuilder
+ su -c - user'$RPM_BUILD_ROOT/usr/local/app/pgsql/bin/postmaster -D
$RPM_BUILD_ROOT/usr/local/
Richard Huxton wrote:
Jamie Deppeler wrote:
Hi,
We currently running Windows 2003 issues with time zone set to
(GMT-05:00) Eastern Time (US & Canada). Problem that we currently
have with Postgresql 8.1.5 is that time zone is being reported with a
incorrect off set –4 not –5 and thi
Hi,
We currently running Windows 2003 issues with time zone set to
(GMT-05:00) Eastern Time (US & Canada). Problem that we currently have
with Postgresql 8.1.5 is that time zone is being reported with a
incorrect off set –4 not –5 and this is causing incorrect time to be set.
Below is exampl
Alexander Staubo wrote:
On 5/1/07, Jan Bilek <[EMAIL PROTECTED]> wrote:
Is Slony-I capable of load balancing and how to set it up? We
searched the
web and some people mentioned that Slony-I could do load balancing, but
haven't found how to make Slony-I to do it.
You might want to check pgclus
Is this a safe setting for g5 1gig ram Os 10.4.9
sysctl -w kern.sysv.shmmax=167772160
sysctl -w kern.sysv.shmmin=1
sysctl -w kern.sysv.shmmni=32
sysctl -w kern.sysv.shmseg=8
sysctl -w kern.sysv.shmall=65536
---(end of broadcast)---
TIP 9: In versio
Is it possible to set shared memory settings on the fly in OS X like you
can in Linux e.g. sysctl -w kernel.shmmax=134217728
I have tried sysctl -w kern.sysv.shmmax=134217728 with no luck, i know you can edit /etc/sysctl.conf file.
But i would sooner set these settings as part of the postgresql
Hi,
Have a quick question is possible to record a primary from a insert stament
eg
xprimary := insert into schema.table(.,.,.,.) VALUES ();
---(end of broadcast)---
TIP 2: Don't 'kill -9' the postmaster
Here is my problem
I have a level structure which is 5 levels deep with 6 tables, for this
example i will call it table1,table2,table3,table4,table5,table6
(1)table1
(2)table2
(3)table3
(4)table4
(5)table5,table6
(6)table7,table8
table5 and table6 have fk keys pointing to table1,table2,table3
Hi,
I am having a problem with a delete function. The delete function uses 3
tables (tablea,tableb,tablec) tablec stores actual values and tablea+b
stores summaries when a entry in tablec is deleted i updated the values
in tablea+b, The problem when i do a cascade delete on tablea tablec
dele
PostgreSQL 8.1.3 on i486-pc-linux-gnu, compiled by GCC cc (GCC) 4.0.3
20060104 (prerelease) (Debian 4.0.2-6)
Michael Fuhr wrote:
On Thu, Jul 13, 2006 at 04:58:26PM +1000, Jamie Deppeler wrote:
db=# \d job
Table "job"
happens when the disk is nearing to full
cant this be avoided, why does postgres hang.
thanks,
regards
Surabhi
*From:* [EMAIL PROTECTED] on behalf of Michael Fuhr
*Sent:* Thu 7/13/2006 11:48 AM
*To:* Jamie Deppeler
*Cc
; PRIMARY KEY, btree ("primary")
Michael Fuhr wrote:
On Thu, Jul 13, 2006 at 04:28:50PM +1000, Jamie Deppeler wrote:
From psql
db=# select "primary" from job where "primary" = 370;
primary
-
370
(1 row)
db=# delete from job where "primary&q
Michael Fuhr wrote:
[Please copy the mailing list on replies so others can participate
in and learn from the discussion.]
On Thu, Jul 13, 2006 at 03:32:43PM +1000, Jamie Deppeler wrote:
Michael Fuhr wrote:
On Thu, Jul 13, 2006 at 01:45:36PM +1000, Jamie Deppeler wrote:
Just
Just today i have noticed i have one certain table that i cannot delete
any records from
1 have delete all Triggers, Vacuumed the tables removed all foreign keys
that linked to this table.
--
*Jamie Deppeler
*Database Administrator
*once:technologies pty ltd
*
*Do It Once!*
46 Roseneath
Hi trying to wtite a trigger to update summary fields in a seperate
table to do this i am planning on using trigger.
problem i have at the moment the update trigger doesnt seem to be
fireing but the insert works.
Trigger
CREATE TRIGGER "setSummary" AFTER INSERT OR UPDATE
ON "parts" FOR EACH RO
Hi,
Since pg_dump doesnt support password is there a way that password can
be supplied -w option. Currently writting a application to do backups in
java as i need a solution that is cross platform. Any help would be
greatfully recieved.
---(end of broadcast)-
I am having with this simple trigger i wrote, worked when i created it
but now i get this error "Stack depth Limit Exceeded"
If someone could tell me what i am doing wrong i would be greatfull
Trigger
CREATE TRIGGER "updateKeys" AFTER UPDATE
ON "projects"."resource" FOR EACH ROW
EXECUTE PROC
ON "contacts"."addContactField" () RETURNS
trigger AS
$body$
begin
update contacts.person
set "contact" = new.firstname
where person."primary" = new."primary";
return null;
end;
$body$
LANGUAGE 'plpgsql' VOLATILE CALLED ON NULL INPUT
At the moment i am trying to execute a very simple function but i am
getting the following error stack depth limit exceeded
function
CREATE OR REPLACE FUNCTION "contacts"."addContactField" () RETURNS
trigger AS
$body$
begin
update contacts.person
set "contact" = new.firstname
where person.
Vivek Khera wrote:
On Jul 20, 2005, at 3:37 AM, Jamie Deppeler wrote:
Hi, i have just installed 10.4 on one of our machines and cannot get
past this error during make
gcc -no-cpp-precomp -O2 -Wall -Wmissing-prototypes -Wpointer-arith -
Wendif-labels -fno-strict-aliasing -dynamiclib
hville, TN 37203-6320
615-260-0005
On Jul 20, 2005, at 8:35 PM, Jamie Deppeler wrote:
Hi,
Having an issue with 10.4.2 at the moment when i initialize the
database no user is being created.
I have setup Postgresql 8.0.3 on 10.3 without any issue, has anyone
come accross this prob
Hi,
Having an issue with 10.4.2 at the moment when i initialize the
database no user is being created.
I have setup Postgresql 8.0.3 on 10.3 without any issue, has anyone come
accross this problem before?
---(end of broadcast)---
TIP 1: if po
Hi, i have just installed 10.4 on one of our machines and cannot get
past this error during make
gcc -no-cpp-precomp -O2 -Wall -Wmissing-prototypes -Wpointer-arith
-Wendif-labels -fno-strict-aliasing -dynamiclib -install_name
/usr/local/pgsql/lib/libpq.4.dylib -compatibility_version 4
-curr
Sorry this question is off topic.
Does anyone know a good resource for tomcat tuning
---(end of broadcast)---
TIP 3: Have you checked our extensive FAQ?
http://www.postgresql.org/docs/faq
There are probability* *a few around, but i think most people just use a
flowcharting software to created designs. I know for the work that i do
with postgresql i use smartdraw as it can do anything i want then i
apply these designs to postgresql using EMS Manager.
Rob Brenart wrote:
I'm loo
Hi,
I am application that we have built using postgresql 8.0.3 and tomcat
5.0.28. In the java code i have put a state set autocomit to false
which should be fine but comes up with the error SET AUTOCOMMIT TO OFF
is no longer supported.
I have tried using 2 drivers 7.4 and 8 jdbc driver
st
This is a simple question what is the best way to execute a SQL script,
this script will create schemas and tables for a database i created.
---(end of broadcast)---
TIP 1: subscribe and unsubscribe commands go to [EMAIL PROTECTED]
I would recomend Postgresql by Korry and Susan Douglas, I think most
people use this as there resource :)
I think a new version for postgres 8 is comming out soon
---(end of broadcast)---
TIP 8: explain analyze is your friend
Hi,
I am trying to install postgresql 8 on a G5 OS X machine and cannot get
past this error i have tried changing the shared buffer with no luck.
Error message:
/usr/local/pgsql/data postgres$ FATAL: could not create shared memory
segment: Invalid argument
DETAIL: Failed system call was sh
Hi,
We are having an issue importing international characters into postgresql 8.
example Renée
The error message we get is ERROR: invalid byte sequence for encoding
"UNICODE": 0xe92044
Any help would be greatfully recieved
Jamie
---(end of broadcast)--
Hi,
I am trying to write a function that will allow a postgres to convert a
text string into a hex value but there doesnt seem a function to do it,
only one i could find is to_hex(number) example of what i have done is
update table1
Set field2 = encode((select md5('field1')),'hex')
where n
Hi to all,
I have one problem with PostgreSQL and Java. I have a table with Primary
key(serial) field, but after I insert a record i am unable to retrieve
this value. I have tried getGeneratedKeys() and i get nothing returned.
There is another method to retrieve this field?
thanks
-
Does any one know if this can be applied to windows server as through
the beta this only worked on linux based machines.
---(end of broadcast)---
TIP 3: if posting/reading through Usenet, please send an appropriate
subscribe-nomail command to [
Hi
have a pretty simple question i know its possible to catch a delete
statement through a trigger is it possible to prevent the delete from
happing through the same trigger function?
---(end of broadcast)---
TIP 8: explain analyze is your friend
What i am trying to do is to update a field based on a sql query
set notes='hello' is just being used as a test but i can not seem to make this simple update work
Michael Fuhr wrote:
On Wed, Jan 19, 2005 at 03:45:53PM +1100, Jamie Deppeler wrote:
Think im doing somet
Hi,
Think im doing something wrong here, cant seem to resolve the problem i
have a trigger which is calling a update function and when it gets to a
update it goes into a infinite loop
code
Trigger
CREATE TRIGGER "new_trigger" AFTER INSERT OR UPDATE
ON "chargeratetest" FOR EACH ROW
EXECUTE PROCED
Daniel Schuchardt wrote:
lol wrote:
Hi,
I'm currently testing several databases for an application written in
Delphi 7. I use zeos lib to access PostreSQL8-RC1 on MS-Windows 2000
SP4. PostrgreSQL is extremly slow, with a lot of disk access on INSERT
request. Have-you seen this problem ? May be some
Can anyone suggest good open source replicator system for pgsql
Thanks
JD
---(end of broadcast)---
TIP 9: the planner will ignore your desire to choose an index scan if your
joining column's datatypes do not match
Hi,
having a small problem in a trigger i want to automatically update a
date field but when i use for example
update table
set field = current_date
where table.pk = new.pk
or
update table
set field = now()
where table.pk = new.pk
this crashes think link between server and db, i have tried using
Problem i am having at the moment i cant get a true alpha sort to work
as Order By is sorting A..Z then a..z where i need aA..zZ sort
independant of case.
SQL Query
SELECT
*
FROM
person
WHERE
(salutation LIKE '%To%')
ORDER BY
person.lastname
Results
Ahsteit
Bloggs
Cap
Carrey
Diver
Duckula
Golds
Tino Wildenhain wrote:
Hi,
Am Freitag, den 17.12.2004, 09:41 +1100 schrieb Jamie Deppeler:
Hi,
I was just wondering is it possible to encrypt a filed in the database
with md5? i know it is possible to do it with DB users
No. You cannot encrypt with md5 because you
Hi,
I was just wondering is it possible to encrypt a filed in the database
with md5? i know it is possible to do it with DB users
---(end of broadcast)---
TIP 2: you can get off all lists at once with the unregister command
(send "unregister You
What i want to be able to do is create a tempory table and when i need a
value stored in the table i want to check that the table has been
created if it has not do a create temp table or just do an update.
Michael Fuhr wrote:
On Tue, Dec 07, 2004 at 09:22:51AM +1100, Jamie Deppeler wrote
Hi,
Newbie question
I have a result set returned through a function or rule, i know i will
have process the result set through a for loop, my question is how can i
get length of result set?
---(end of broadcast)---
TIP 4: Don't 'kill -9' the postma
Is it possible to detect the instance of a Temporary through a function?
---(end of broadcast)---
TIP 8: explain analyze is your friend
Hi,
What i am trying to do is
i have a join table eg
primarykey
field1
field2
and based on SQL Select have the values of field1 inserted into a new
table which will scroll which will launch a trigger but im having
problems getting this to work? Any ideas anyone?
sql select may return 1 or more r
Problem
I am trying to store value in a TEMPORARY table and I am getting the
following error
ERROR: relation with OID 51533 does not exist
Trigger
CREATE TRIGGER "createtemporytable" AFTER INSERT
ON "component" FOR EACH ROW
EXECUTE PROCEDURE "createtemp"();
Function
begin
CREATE temporary TABLE
HI,
Planning on witting a rule for a view, and i was wondering if anyone
could suggest a good Internet resource?
thx
begin:vcard
fn:Jamie Deppeler
n:Deppeler;Jamie
org:Once;Development
adr:;;46 Roseneath Street;North Geelong;Vic;3215;Australia
email;internet:[EMAIL PROTECTED]
title:Database Admin
Hi
Finally getting this trigger ro work have one last problem, im trying to
use Trigger variables
sample code
UPDATE wip.resource
set "name" = datarecord.borname
where wip.resource."primary" = OLD."primary";
get the following error
Error: record "old" is not yet assigned
would be grea
Hi , i have designed a trigger function called test2(Integer)
im trying to use it with a trigger but get errors that function cannot
be found
Trigger statement is
CREATE TRIGGER "new_trigger566" BEFORE INSERT
ON "customer" FOR EACH ROW
EXECUTE PROCEDURE test2("primary");
get the error test2() can
Hi,
Just doing some testing at the moment and trying to make a trigger that
consists of a insert statement which as a result of an sql querty!
Is this possible? if so could someone give me some pointers as i am
having no luck trying to get this to work, have even tried this but
still doesnt wor
This may be a bit of stupid question but it is the first time i have
played around with rules and i am trying to convert a sql statement into
a rule
sample sql querty
INSERT INTO schema.table2
(
"field1",
"field2",
"field3",
"field4",
"field5",
"field6",
"field7",
Hi,
This post is a bit off topic im looking a good sql book can someone give
me a recommendation?
---(end of broadcast)---
TIP 1: subscribe and unsubscribe commands go to [EMAIL PROTECTED]
Hi
have a bit of a issue im planning on using tableoid to select the
appropate table, but im not sure that you can in sql select statement?
If not is there another approch i could be using?
--
*Jamie Deppeler
*Database Administrator
---(end of broadcast
l change making referencing impossible.
Any ideas would helpful
--
Jamie
Deppeler
Database Administrator
Cormoran
Communication
Do It Once!
impossible.
--
Jamie
Deppeler
60 matches
Mail list logo