I am trying to use DBD::Informix to query a remote database.
I am connected to a local database and then issuing a remote sql query:
select * from perf_info@roushprod:archive_info
roushprod is in the sqlhosts file. The statement works correctly outside of the
DBD/DBI functions.
Title: RE: [Perl-unix-users] Substitution help needed
Craig,
try this.
#!/usr/bin/perl -w
use strict;
my $s = " ) in psfs1 extent size 40 next size 10 lock mode row;";
print "$s\n";
$s =~ s/\)/\)\;/;
print "$s\n";
Steve Aaron