VSAM file processing using Perl code

2003-07-23 Thread sekhar kavuru
a VSAM file (flat file with data and index components on MainFrame systems) need to be processed , possibly using perl code. Any ideas and suggestion as to how to accomplish thisusing Perl. Thanks Kavuru Do you Yahoo!? Yahoo! SiteBuilder - Free, easy-to-use web site design software

ANSI_NULLS and ANSI_WARNINGS

2004-05-28 Thread sekhar kavuru
I have a perl application Sql query trying to get data from different servers but I get the error Heterogeneous queries require the ANSI_NULLS and ANSI_WARNINGS options to be set for the connection. This ensures consistent query semantics. Enable these options and then reissue your query. My

Need help with regex

2005-10-28 Thread sekhar kavuru
Hi All I need a REGEX to get a string between two characters from a static string e.g. /install/sql/foo.c@@/main/integration/1 I need to get foo.c , i.e string between / and @@ First it needs find where @@ occurs in the string and trace back to file name until it encounters / character.

RegExp help

2005-11-03 Thread sekhar kavuru
my $str = "/install/sql/foo.c; from$str string I need to get "/install/sql/ Any help$Bill Luebkert [EMAIL PROTECTED] wrote: [EMAIL PROTECTED] wrote: how about we find your start and work forward? Brian did the end and work backward, but i always like trying to find an alternative way to look

Perl code to get next date Example : 12/31/2005 = 01/01/2006

2005-12-09 Thread sekhar kavuru
I need help with a generic function that can give the value of next day Example: 12/31/2005= 01/01/2006I want to accomplish this without Cal::DateThanksSekhar__Do You Yahoo!?Tired of spam? Yahoo! Mail has the best spam protection around

Logic to create directories

2006-08-07 Thread sekhar kavuru
I need to create directory(s)if it does not exist The program will display an error if the specified path is not found and the path will be as follows e.g c:/dir1/dir2/dir3/dir4/dir5/dir6/dir7 Taking the above as input, Is therea simple way to create thesesubfolders (only if exists) starting

Re: Logic to create directories

2006-08-08 Thread sekhar kavuru
Andy,Thanks for the solution it is easy to implement and no dependencies on any modules.Thanks to all whogave suggestions. This is an excellent forum .SekharAndy Bach [EMAIL PROTECTED] wrote: Lyndon Rickards wrote:sekhar kavuru wrote: the path will be as followse.g