Re: [JBoss-user] dbase is acting way too slow

2001-07-20 Thread Burkhard Vogel
CTED]> To: <[EMAIL PROTECTED]> Sent: Friday, July 20, 2001 7:16 PM Subject: RE: [JBoss-user] dbase is acting way too slow > I don't want to use an Oracle URL for a Postgresql DB. I'm wanting to know > why the URL's ppl have suggested to me are a bit different than mine and

RE: [JBoss-user] dbase is acting way too slow

2001-07-20 Thread Grobe, Gary
is same application work in subsecond times on this same box w/ other app servers. So something is still wrong w/ my configuration. -Original Message- From: Burkhard Vogel [mailto:[EMAIL PROTECTED]] Sent: Friday, July 20, 2001 3:44 AM To: [EMAIL PROTECTED] Subject: Re: [JBoss-user] dbase is act

Re: [JBoss-user] dbase is acting way too slow

2001-07-20 Thread Dmitri Colebatch
Have you tried writing a standalone java application that connects to the database? Perhaps the problem is in postgres' configuration. Check your pg_hba.conf file. cheers dim On Fri, 20 Jul 2001, G.L. Grobe wrote: > Since I still don't seem to be connecting to the pool, still working on > thi

Re: [JBoss-user] dbase is acting way too slow

2001-07-20 Thread Burkhard Vogel
g if you use the above URL? Burkhard - Original Message - From: "G.L. Grobe" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, July 20, 2001 10:38 AM Subject: Re: [JBoss-user] dbase is acting way too slow > Since I still don't seem to be connectin

Re: [JBoss-user] dbase is acting way too slow

2001-07-20 Thread G.L. Grobe
Since I still don't seem to be connecting to the pool, still working on this. What should the ... of the jboss.jcml file be. I don't understand the url parts. Chptr 3 says it's the JDBC URL used to connect to the data source. When making my own connections, it used to be: "jdbc:postgresql:acais

Re: [JBoss-user] dbase is acting way too slow

2001-07-19 Thread Burkhard Vogel
n:servsoft/servsoft@pluto:1521:servsoft jdbc:oracle:thin:@pluto:1521:servsoft user pwd Hope this helps. Let me know if you need more. Regs, Ijonas. - Original Message - From: "G.L. Grobe" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, July

Re: [JBoss-user] dbase is acting way too slow

2001-07-18 Thread G.L. Grobe
I didn't know about having to do datasource's w/ app servers, but I can see how the db pooling would not have been used. Thnxs, this looks like my problem. Now I'm trying to get a proper mapping w/ a resource manager and resource reference in jboss.xml. Currently w/ this config, I get an exceptio

Re: [JBoss-user] dbase is acting way too slow

2001-07-18 Thread Burkhard Vogel
eption Ex) { prepStmt=null; } if( con!=null) try { con.close(); } catch(Exception Ex) { con=null; } } See how fast that is. Burkhard - Original Message - From: "G.L. Grobe" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, July 18,

Re: [JBoss-user] dbase is acting way too slow

2001-07-17 Thread Toby Allsopp
On Tue, Jul 17, 2001 at 05:07:15PM -0500, G.L. Grobe wrote: ... > When the code below executes, it goes very quickly as it runs through the > method, the the next time this method get's called ... there's a pause > before it executes. I'm sure the code is fine, I beleive it's still a config > prob

Re: [JBoss-user] dbase is acting way too slow

2001-07-17 Thread G.L. Grobe
nt = 0; while (rs.next()) { shells.put(new Integer(++cnt), rs.getString("shell")); } } - Original Message - From: "Robert Schulz" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, July 17, 2001 1:38 AM Subject: RE

Re: [JBoss-user] dbase is acting way too slow

2001-07-17 Thread Burkhard Vogel
TECTED]] > > Sent: Tuesday, July 17, 2001 11:31 AM > > To: [EMAIL PROTECTED] > > Subject: Re: [JBoss-user] dbase is acting way too slow > > > > > > Well, seems I've finally got the database configured correctly, at least > it > > starts w/o

RE: [JBoss-user] dbase is acting way too slow

2001-07-16 Thread Robert Schulz
boss.MinervaXACMFactory 10 8082 30 -Original Message- From: G.L. Grobe [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 17, 2001 3:45 PM To: [EMAIL PROTECTED] Subject: Re: [JBoss-user] dbase is acting way too slow Oh yeah, psql works just fine. And the same qu

Re: [JBoss-user] dbase is acting way too slow

2001-07-16 Thread G.L. Grobe
e are not particularly complex though. > > The select you describe should be around 10-20ms > or so ... > > R. > > -Original Message- > From: G.L. Grobe [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, July 17, 2001 11:31 AM > To: [EMAIL PROTECTED] > Subject: Re:

RE: [JBoss-user] dbase is acting way too slow

2001-07-16 Thread Robert Schulz
Message- From: G.L. Grobe [mailto:[EMAIL PROTECTED]] Sent: Tuesday, July 17, 2001 11:31 AM To: [EMAIL PROTECTED] Subject: Re: [JBoss-user] dbase is acting way too slow Well, seems I've finally got the database configured correctly, at least it starts w/o any errors. But I'm still getti

Re: [JBoss-user] dbase is acting way too slow

2001-07-16 Thread G.L. Grobe
Well, seems I've finally got the database configured correctly, at least it starts w/o any errors. But I'm still getting my same original behavior. The problem I started to try and fix. My dbase queries are extremely slow, but they work. I'm doing a query through *7* records in a table w/ only 5

Re: [JBoss-user] dbase is acting way too slow

2001-07-16 Thread Richard Bottoms
At 06:45 PM 7/16/01 -0500, you wrote: >Now I am getting confused again. I do not see any jboss.jcml files in >~/tomcat/conf/default nor do I see anywheres in the docs that state this. That's /jboss/conf/tomcat/jboss.jcml I believe. r.b. ___ JB

Re: [JBoss-user] dbase is acting way too slow

2001-07-16 Thread G.L. Grobe
/jboss.jcml file, but not sure what's correct. So what set of ~/tomcat/conf files are we talking about? Thnxs. - Original Message - From: "Burkhard Vogel" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, July 16, 2001 10:17 AM Subject: Re: [JBoss-user] d

Re: [JBoss-user] dbase is acting way too slow

2001-07-16 Thread G.L. Grobe
tantDB - Original Message - From: "Burkhard Vogel" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, July 16, 2001 10:17 AM Subject: Re: [JBoss-user] dbase is acting way too slow > Hi, > still you are completly misconfigured, I really wonder how it works &g

Re: [JBoss-user] dbase is acting way too slow

2001-07-16 Thread Burkhard Vogel
iginal Message - From: "G.L. Grobe" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, July 16, 2001 8:07 AM Subject: Re: [JBoss-user] dbase is acting way too slow > Ok, I've found a few mis-configurations problems in my jboss.jcml, but after > fixin

Re: [JBoss-user] dbase is acting way too slow

2001-07-15 Thread G.L. Grobe
Ok, I've found a few mis-configurations problems in my jboss.jcml, but after fixing them and now that I understand it a bit more, they still don't seem to be taking. My postgresql database still works, but is very, very, very slow. --- jboss.jcml ---

Re: [JBoss-user] dbase is acting way too slow

2001-07-15 Thread G.L. Grobe
.2 Started in 0m:41s - Original Message - From: "Burkhard Vogel" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Sunday, July 15, 2001 9:08 AM Subject: Re: [JBoss-user] dbase is acting way too slow > Hi, > this is general DB-config stuff. the most likely scen

Re: [JBoss-user] dbase is acting way too slow

2001-07-15 Thread Burkhard Vogel
From: "G.L. Grobe" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Saturday, July 14, 2001 9:18 PM Subject: Re: [JBoss-user] dbase is acting way too slow btw - I'm using BMP, does this change anything since the docs only talk about CMP for this part of the config? ---

Re: [JBoss-user] dbase is acting way too slow

2001-07-14 Thread G.L. Grobe
btw - I'm using BMP, does this change anything since the docs only talk about CMP for this part of the config?   - Original Message - From: G.L. Grobe To: [EMAIL PROTECTED] Sent: Saturday, July 14, 2001 1:18 AM Subject: [JBoss-user] dbase is acting way too slow