RE: moving directories

2005-09-23 Thread Rizwan Merchant
That did the trick! Thank you very much. Rizwan Merchant Software Developer Alpha-IT Technologies 416-449-2166 [EMAIL PROTECTED] -Original Message- From: Antoine Levy-Lambert [mailto:[EMAIL PROTECTED] Sent: Friday, September 23, 2005 1:42 PM To: Ant Users List Subject: Re: moving

RE: moving directories

2005-09-23 Thread Rizwan Merchant
;move" task. Is there any way I can force the task to copy all folders and files, including hidden ones? I also tried manually changing the attributes to "not hidden" before running the move task, but that didn't work either. Thanks, Rizwan Merchant Software Developer Alpha-IT

RE: moving directories

2005-09-23 Thread Rizwan Merchant
Hi, I'm using version 1.6.5 Rizwan Merchant Software Developer Alpha-IT Technologies 416-449-2166 [EMAIL PROTECTED] -Original Message- From: Matt Benson [mailto:[EMAIL PROTECTED] Sent: Friday, September 23, 2005 12:21 PM To: Ant Users List Subject: Re: moving directories --- R

moving directories

2005-09-23 Thread Rizwan Merchant
ctory, all its subfolders and files to the new location, but it leaves behind the directory structure (i.e empty folders). I know that the "includeEmptyDirs" attribute for the move task is defaulted to true, which means nothing should be left behind. Any help is appreciated. Thanks.

RE: moving directories

2005-09-13 Thread Rizwan Merchant
anyone tell me what I am doing wrong? Thanks. The command I am using is Rizwan Merchant Software Developer Alpha-IT Technologies 416-449-2166 [EMAIL PROTECTED] -Original Message- From: Rizwan Merchant [mailto:[EMAIL PROTECTED] Sent: Tuesday, September 13, 2005 2:35 PM

RE: moving directories

2005-09-13 Thread Rizwan Merchant
fileset as Does that not include all directories, subdirectories and files under the directory I want moved? Rizwan Merchant Software Developer Alpha-IT Technologies 416-449-2166 [EMAIL PROTECTED] -Original Message

moving directories

2005-09-13 Thread Rizwan Merchant
aves behind the directories UHM-* in the original directory and also creates the same in the backup directory. Can anyone please tell me why the above command does not execute successfully? Thanks. Rizwan Merchant Software Developer Alpha-IT Technologies 416-449-2166 [EMAIL PROTECTED]

RE: sql task sp_dboptions problem

2005-08-25 Thread Rizwan Merchant
et messy quite quick! /t >-Original Message- >From: Rizwan Merchant [mailto:[EMAIL PROTECTED] >Sent: Thursday, August 25, 2005 9:00 PM >To: 'Ant Users List' >Subject: RE: sql task sp_dboptions problem > > >I don't think so, because the cleanDB.sql fil

RE: sql task sp_dboptions problem

2005-08-25 Thread Rizwan Merchant
I don't think so, because the cleanDB.sql file still refers to a specific database. What I want to do is somehow pass a parameter to the cleanDB.sql file so that the file can be generic. -Original Message- From: RADEMAKERS Tanguy [mailto:[EMAIL PROTECTED] Sent: Thursday, August 25, 2005

RE: sql task sp_dboptions problem

2005-08-25 Thread Rizwan Merchant
at instead of using the tasks' "src" attribute, you put the sql from cleanDB.sql in you're ant file as such: -- example code from cleanDB.sql DROP DATABASE ${the.database.i.wanted.to.pass}; Moran > -----Original Message- > From: Rizwan Merch

RE: sql task sp_dboptions problem

2005-08-25 Thread Rizwan Merchant
nection settings than your Ant initiated connections. Look up the error in a sql site like "www.sqlmag.com", I'm sure there will be an explanation like set AutoCommit on or something like that. moran > -----Original Message- > From: Rizwan Merchant [mailto:[EMAIL PROTECT

sql task sp_dboptions problem

2005-08-25 Thread Rizwan Merchant
Hi, I am trying to run an sql task which contains the following command exec sp_dboption N'on_develop', N'autoclose', N'false' I can run this command from SQL Query Analyzer without any problems, but when I try to run this via ant sql task I get the following error: [sql] Failed to exe

passing parameter to sql task

2005-08-24 Thread Rizwan Merchant
Hi, I am trying to run the sql task on a file using the src attribute of the task (as follows) Is there any way I can generalize the above script to delete *ANY* database on the server by sending a parameter to the cleanDB.sql file? So basically, instead of spec

RE: CVS failure notification..

2005-08-19 Thread Rizwan Merchant
19, 2005 12:58 PM To: Ant Users List Subject: RE: CVS failure notification.. Hello, --- Rizwan Merchant <[EMAIL PROTECTED]> wrote: > I looked through Mailloggers..it doesnt seem to have > the capability to send > out emails based on specific target errors..i.e > error on targe

RE: CVS failure notification..

2005-08-19 Thread Rizwan Merchant
2]http://ant.apache.org/manual/listeners.html#MailLogger [3]http://ant.apache.org/manual/CoreTasks/recorder.html --- Rizwan Merchant <[EMAIL PROTECTED]> wrote: > > Thanks Ivan, I will try that. will the same work for > javac task? I noticed > there is no "output" or &quo

RE: CVS failure notification..

2005-08-19 Thread Rizwan Merchant
dule out. Instead of trying to find the exact error, mail the whole error file :) Regards Ivan [1]http://ant.apache.org/manual/CoreTasks/cvs.html [2]http://ant.apache.org/manual/CoreTasks/conditions.html --- Rizwan Merchant <[EMAIL PROTECTED]> wrote: > > Hi, > I'm using a

CVS failure notification..

2005-08-19 Thread Rizwan Merchant
Hi, I'm using ant to checkout code from the CVS. If the checkout is not successful I would like to send an email to someone to notify them of the problem. How do I detect this error in ant? Say the password on the cvs account is wrong, cvs notifies of bad login and then the ant continues executin