Re: automation question

2008-01-04 Thread Moon's Father
learnt. On Jan 4, 2008 10:15 AM, B. Keith Murphy <[EMAIL PROTECTED]> wrote: > Martin, > > I took a quick look at the tools that you mentioned. Seems you are > heavily involved in Java :) > > We don't use Java at all, and other than using cron (which I do use for > backups and standard stuff like

Re: automation question

2008-01-03 Thread B. Keith Murphy
Martin, I took a quick look at the tools that you mentioned. Seems you are heavily involved in Java :) We don't use Java at all, and other than using cron (which I do use for backups and standard stuff like that) not really what I am looking for. After thinking about this, I suspect that t

Re: automation question

2008-01-03 Thread B. Keith Murphy
Martin, Martin Gainty wrote: 3 ideas come to mind- cron and or cruisecontrol for off-hours scripting ant for handling cross-platform scripting maven for implementing dependency checking as well as the ability to pull from online repositories I will take a look at these. I am certainly famili

RE: automation question

2008-01-03 Thread Martin Gainty
3 ideas come to mind- cron and or cruisecontrol for off-hours scriptingant for handling cross-platform scriptingmaven for implementing dependency checking as well as the ability to pull from online repositories Youtube.comI worked with a company last summer that implemented identical functional

RE: automation question: How do I copy the data from one table to another table with a time stamp every night?

2001-01-24 Thread Mark Maunder
from one DB, parsing and inserting into another. Mark. -Original Message- From: Chuck Barnett [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 24, 2001 6:22 PM To: Steve Ruby Cc: [EMAIL PROTECTED] Subject: Re: automation question: How do I copy the data from one table to another table wi

Re: automation question: How do I copy the data from one table to another table with a time stamp every night?

2001-01-24 Thread Eric Frazier
Hi, I do what to know this literal question. But what about if you are doing this across two servers? You certainly don't want to copy they whole table to the second database to update the second with the first. And I know someone will say use replication, but I am more interesting in a general

RE: automation question: How do I copy the data from one table to another table with a time stamp every night?

2001-01-24 Thread Cal Evans
CRON job. 'course you could do it in PERL as well. Cal http://www.calevans.com -Original Message- From: Chuck Barnett [mailto:[EMAIL PROTECTED]] Sent: Wednesday, January 24, 2001 12:22 PM To: Steve Ruby Cc: [EMAIL PROTECTED] Subject: Re: automation question: How do I copy the dat

Re: automation question: How do I copy the data from one table to another table with a time stamp every night?

2001-01-24 Thread Steve Ruby
Chuck Barnett wrote: > > Thanks for replying. > I know the SQL commands, I want to know how to automate the whole sequence. > > I've always written php pages that do the calls. I want to write a script > to do it on the server as a cron job or something. Ahhh, pardon my confusion, since this

Re: automation question: How do I copy the data from one table to another table with a time stamp every night?

2001-01-24 Thread Chuck Barnett
y" <[EMAIL PROTECTED]> To: "Chuck Barnett" <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Wednesday, January 24, 2001 12:34 PM Subject: Re: automation question: How do I copy the data from one table to another table with a time stamp every night? > Chuck Barnett

Re: automation question: How do I copy the data from one table to another table with a time stamp every night?

2001-01-24 Thread Steve Ruby
Chuck Barnett wrote: > > How do I copy the data from one table to another table with a time stamp > every night? > > example: table A contains x,y,z. > > at midnight, I want to copy table A's contents to table B (B has same > fields, just adds a date field) and reset x,y,z to zero. > what d