Re: [OT] Java as a Daemon

2005-07-15 Thread Martin Gainty
2005 10:00 PM Subject: Re: [OT] Java as a Daemon Hi Guys, Thanks for all the input. I'll suggest the oracle dbms_job approach seems reasonable. My last option would be to create a cron job. Richard On 7/14/05, Martin Gainty <[EMAIL PROTECTED]> wrote: Jesse

Re: [OT] Java as a Daemon

2005-07-15 Thread Richard Reyes
gt;>update that needs to be "communicated". And then somehow make the update > >>>in the second Oracle-db. > >>> > >>>just my 2cents > >>>Alexander > >>> > >>>-Original Message- > >>>From: Richard

Re: [OT] Java as a Daemon

2005-07-15 Thread Duncan Mills
EMAIL PROTECTED] Sent: Thursday, July 14, 2005 3:53 AM To: Struts Users Mailing List Subject: [OT] Java as a Daemon Hello Guys, I need your suggestions. I have a task to create an application to sync records between 2 Oracle 10g database. Not the whole records of the database though,

Re: [OT] Java as a Daemon

2005-07-14 Thread Richard Reyes
municated". And then somehow make the update > >in the second Oracle-db. > > > >just my 2cents > >Alexander > > > >-Original Message- > >From: Richard Reyes [mailto:[EMAIL PROTECTED] > >Sent: Thursday, July 14, 2005 3:53 AM > >To: Struts

Re: [OT] Java as a Daemon

2005-07-14 Thread Richard Reyes
how you make out, > Maritn- > Original Message - > From: "Duncan Mills" <[EMAIL PROTECTED]> > To: "Struts Users Mailing List" > Sent: Thursday, July 14, 2005 4:41 AM > Subject: Re: [OT] Java as a Daemon > > > > Indeed the Oracle Databa

Re: [OT] Java as a Daemon

2005-07-14 Thread Martin Gainty
pport contract! In any case let us know how you make out, Maritn- Original Message - From: "Duncan Mills" <[EMAIL PROTECTED]> To: "Struts Users Mailing List" Sent: Thursday, July 14, 2005 4:41 AM Subject: Re: [OT] Java as a Daemon Indeed the Oracle Database i

Re: [OT] Java as a Daemon

2005-07-14 Thread Daniel Henrique Ferreira e Silva
Subject >"Struts Users Re: [OT] Java as a Daemon >Mailing List" > <[EMAIL PROTECTED] > he.org> > > > > > > > > I would probably go the route o

Re: [OT] Java as a Daemon

2005-07-14 Thread David Whipple
quot;Struts Users Re: [OT] Java as a Daemon Mailing List" <[EMAIL PROTECTED]

Re: [OT] Java as a Daemon

2005-07-14 Thread Duncan Mills
lto:[EMAIL PROTECTED] Sent: Thursday, July 14, 2005 3:53 AM To: Struts Users Mailing List Subject: [OT] Java as a Daemon Hello Guys, I need your suggestions. I have a task to create an application to sync records between 2 Oracle 10g database. Not the whole records of the database though, just the no

RE: [OT] Java as a Daemon

2005-07-14 Thread Jesse Alexander (KBSA 21)
my 2cents Alexander -Original Message- From: Richard Reyes [mailto:[EMAIL PROTECTED] Sent: Thursday, July 14, 2005 3:53 AM To: Struts Users Mailing List Subject: [OT] Java as a Daemon Hello Guys, I need your suggestions. I have a task to create an application to sync records between 2

Re: [OT] Java as a Daemon

2005-07-14 Thread Richard Reyes
thanks On 7/14/05, Leon Rosenberg <[EMAIL PROTECTED]> wrote: > I'm with Larry. Cron rocks. The only problem you should have in mind: if > your job needs more then the time between the jobs, you've lost. > We had actually this problem, and it killed the db, because (2 years > after initially written

Re: [OT] Java as a Daemon

2005-07-14 Thread Leon Rosenberg
I'm with Larry. Cron rocks. The only problem you should have in mind: if your job needs more then the time between the jobs, you've lost. We had actually this problem, and it killed the db, because (2 years after initially written) the script lasted more then 24 hours, and after a week 5 instances

Re: [OT] Java as a Daemon

2005-07-13 Thread Larry Meadors
I would probably go the route of the .sh file. At the risk of starting a big flame war, cron is solid as a rock, and all of the memory used by your app will be freed up when the JVM exits. Why make it more complex by adding quartz or tomcat to the mix if you do not have to. Simple is *almost* alw

Re: [OT] Java as a Daemon

2005-07-13 Thread Richard Reyes
> -Original Message- > From: Richard Reyes > Subject: [OT] Java as a Daemon > > Hello Guys, > > I need your suggestions. I have a task to create an application to > sync records between 2 Oracle 10g database. Not the whole records of > the database though, just t

RE: [OT] Java as a Daemon

2005-07-13 Thread David G. Friedman
thout needing to run any additional code, crontab, atq, etc. All of this from inside your Struts webapp. FYI, Quartz is at http://www.opensymphony.com/quartz and no, I have no affiliation with them. LOL. Regards, David -Original Message- From: Richard Reyes Subject: [OT] Java as a D

[OT] Java as a Daemon

2005-07-13 Thread Richard Reyes
Hello Guys, I need your suggestions. I have a task to create an application to sync records between 2 Oracle 10g database. Not the whole records of the database though, just the now and then transactional updates. Access to the db's would be both via web services. I think I have an option to do th