I have Outlook .pst files from a previous job that contain my contacts and emails. My new company uses Lotus Notes 5.0.12. Are there any utilities (or functions within my LN client) to convert .pst files to LN?
I am trying to write a compact AWK script to read a file that contains a list of id's like this:
444
234
236
I have a second file that is pipe delimited where the 6th record is this id like this:
name|address1|address2|hphone|wphone|444|
I want to print out to the screen any record in the...
Mike,
Thanks for the response. I've found it very common for Perl to cause core dumps when reading very large files.
I tried your code and had the same problems. I watched one version of the program and saw the panic:popstack errors flying down the screen.
I just can't figure out why it...
I get core dumps when I use Perl to read very large programs using either:
while(<IN>) { }
or
perl -ne ' ' filename
I am trying to read files that are 300 meg + on a machine with 6 CPU's and 8GB of memory. Disk space isn't a problem.
Is there some way to keep Perl from reading the...
I am trying to pass a command line variable using dbaccess and cannot figure out how to get Informix to recognize the variable.
Here is what I am doing:
dbaccess <database name> test.sql 2
test.sql
select * from home where type > $1
Obviously, $1 does not work. How can I get my command line...
Sure. Packed decimal format is used in COBOL to store numbers in half the number of bytes. Don't feel bad, I just learned what packed decimal format was when I couldn't read the number information in a mainframe output file.
For example, if I have the number 12345, it would be stored as the...
Does anyone have any C code that can be used to convert packed decimal to decimal formats? I also need to convert decimal formats to packed decimal.
Thanks,
Robert
This function would be used repeatedly as I read through a file and pass the zip code to the function. The not_found string is only sent back if I can't find the zip code in the linked list. My hope is that most of the zip codes will be found and that I will return a string value pulled from...
I am trying to write a function that will return a string to the main program. Basically, I am building a Perl-type hash in C to use zip code as my key and a string as the stored value. The function below is supposed to search the linked list and return the data string that is associated with...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.