Sponsored Content
Top Forums UNIX for Advanced & Expert Users Connect to database through FTP server Post 302956948 by sparks on Monday 5th of October 2015 11:52:30 AM
Old 10-05-2015
Thankyou so much Corona688 . I never used perl before, do you mind if you can share the sample code how it looks and how to connect and execute the query.
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

ftp script not able to connect to ftp server.

I have the following ftp script to get files from a remote location. However, on running the script I find that I am not even able to connect to ftp server. I am able to connect to ftp server using other GUI ftp tools like WS_FTP using the same IP. IP used here is a dummy IP. What can go... (3 Replies)
Discussion started by: gram77
3 Replies

2. AIX

ftp connect in passive mode , ftp settings

how to connect to ftp server in passive mode? ftp server.abc and how can i see ftp settings, doesn't exist some ftpd.conf there is some other file where i check the options and configurations of ftp server? Thanks (3 Replies)
Discussion started by: prpkrk
3 Replies

3. Shell Programming and Scripting

How to connect to FTP server which requires SSL authentication?

Hello, I tried searching through lot of threads for a solution but couldn't fetch the exact solution, so I am creating a new thread. I am trying to connect to a FTP server 1) using a simple FTP command, it gives the error : 534 Policy requires SSL. Login failed. 2) using SFTP... (19 Replies)
Discussion started by: amitshete
19 Replies

4. UNIX for Advanced & Expert Users

Unable to use FTP command to connect from one server to another

Hi, I have two unix servers A and B. from A i am trying to use the ftp command to connect to B but I am getting the "ftp: connect: A remote host refused an attempted connect operation." I checked the following things : 1.) Unix Server details for A and B after running the command uname -a... (3 Replies)
Discussion started by: mick_000
3 Replies

5. Linux

Generate public key to connect from one ftp server to other server

How to generate public key to connect from one ftp server to other server to use in scripting. (0 Replies)
Discussion started by: sridhardwh
0 Replies

6. UNIX for Advanced & Expert Users

Public key to connect from one ftp server to other server

How to generate public key to connect from one ftp server to other server to use in scripting. (1 Reply)
Discussion started by: sridhardwh
1 Replies

7. Linux

Unable to connect to Server machine from a client machine using ftp service

Hi, Could you please help me with the below issue.. I'm running RHEL6 OS on both server (192.168.0.10) and client machines (192.168.0.1). I'm trying to connect to server from the client machine using ftp service. I have installed vsftpd daemon on both the machines. I'm getting... (4 Replies)
Discussion started by: raosr020
4 Replies

8. Shell Programming and Scripting

Connect to FTP find files and export them to another server

Hi I'm trying to make script that will connect to FTP Server than find files that contain word HIGH in name and than export them to another server. Can anyone tell me if something like this is possible? Thanks :) (7 Replies)
Discussion started by: steve87bg
7 Replies

9. Shell Programming and Scripting

Not able to connect to new FTP server

Hi All, We have done new FTB setup. I am not able to to connect to this new target server. Here is the new setup to send files to the FTB : - Login : FTB-TAN-DEV-SAP - Protocol : SFTP - Port : 54322 - Hostname : ftb-dev.apj.hp - Env : DEV - Target ID : 3225 I tried connecting to the... (5 Replies)
Discussion started by: ROCK_PLSQL
5 Replies

10. AIX

Connect to database server and execute sql

I have a requirement and below is the detail. Create a shell script and needs to run in server "a". Connect to teradata database server "b". execute the .sql file from server "a" Save the output of the query to a file in server "a" Schedule this shell script to run every day for every 4... (1 Reply)
Discussion started by: MadhuSeven
1 Replies
AnyEvent::DBD::Pg(3pm)					User Contributed Perl Documentation				    AnyEvent::DBD::Pg(3pm)

NAME
AnyEvent::DBD::Pg - AnyEvent interface to DBD::Pg's async interface SYNOPSIS
use AnyEvent::DBD::Pg; my $adb = AnyEvent::DBD::Pg->new('dbi:Pg:dbname=test', user => 'pass', { pg_enable_utf8 => 1, pg_server_prepare => 0, quote_char => '"', name_sep => ".", }, debug => 1); $adb->queue_size( 4 ); $adb->debug( 1 ); $adb->connect; $adb->selectcol_arrayref("select pg_sleep( 0.1 ), 1", { Columns => [ 1 ] }, sub { my $rc = shift or return warn; my $res = shift; warn "Got <$adb->{qd}> = $rc / @{$res}"; $adb->selectrow_hashref("select data,* from tx limit 2", {}, sub { my $rc = shift or return warn; warn "Got $adb->{qd} = $rc [@_]"; }); }); $adb->execute("update tx set data = data;",sub { my $rc = shift or return warn; warn "Got exec: $rc"; #my $st = shift; #$st->finish; }); $adb->execute("select from 1",sub { shift or return warn; warn "Got $adb->{qd} = @_"; }); $adb->selectrow_array("select pg_sleep( 0.1 ), 2", {}, sub { shift or return warn; warn "Got $adb->{qd} = [@_]"; $adb->selectrow_hashref("select * from tx limit 1", {}, sub { warn "Got $adb->{qd} = [@_]"; $adb->execute("select * from tx", sub { my $rc = shift or return warn; my $st = shift; while(my $row = $st->fetchrow_hashref) { warn "$row->{id}"; } $st->finish; exit; }); }); }); AE::cv->recv; METHODS
connect() Establish connection to database selectrow_array( $query, [\%args], $cb->( $rc, ... )) Execute PG_ASYNC prepare, than push result of "fetchrow_array" into callback selectrow_arrayref( $query, [\%args], $cb->( $rc, @row )) Execute PG_ASYNC prepare, than push result of "fetchrow_arrayref" into callback selectrow_hashref( $query, [\%args], $cb->( $rc, \%row )) Execute PG_ASYNC prepare, than push result of "fetchrow_hashref" into callback selectall_arrayref( $query, [\%args], $cb->( $rc, @rows )) Execute PG_ASYNC prepare, than push result of "fetchall_arrayref" into callback selectall_hashref( $query, [\%args], $cb->( $rc, @rows )) Execute PG_ASYNC prepare, than push result of "fetchall_hashref" into callback selectcol_arrayref( $query, { Columns => [...], ... }, $cb->( $rc, @rows )) Execute PG_ASYNC prepare, than push result of "fetchall_hashref($args{Columns})" into callback execute( $query, [\%args], $cb->( $rc, $sth )) Execute PG_ASYNC prepare, than invoke callback, pushing resulting sth to it. Please, note: result already passed as first argument AUTHOR
Mons Anderson, "<mons@cpan.org>" LICENSE AND COPYRIGHT
Copyright 2010 Mons Anderson. This program is free software; you can redistribute it and/or modify it under the terms of either: the GNU General Public License as published by the Free Software Foundation; or the Artistic License. perl v5.10.1 2010-11-30 AnyEvent::DBD::Pg(3pm)
All times are GMT -4. The time now is 04:05 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy