Re: LOAD DATA INFILE (url)

2005-12-05 Thread Mark Matthews
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Arno Coetzee wrote:
 Test USER wrote:
 
 Can't get this to work, but i would like to specify LOAD DATA to use
 an INFILE from an URL.

 For example
 LOAD DATA LOCAL INFILE 'http://www.testserver.com/data.csv' But i get
 an error message saying file not found.

 Anyone know if this is even possible ?

 -
 FREE E-MAIL IN 1 MINUTE!
 - [EMAIL PROTECTED] - http://www.pc.nu

  

 it is possible .
 
 you have to write your own script which fetches the file (using wget)
 and placing the file in a directory where it can be accessed. then you
 can load that file.
 
 i currently have something like this running...
 
 i make a dump file on the remote server runing a script with crontab. i
 gzip that file just to make the file transfer faster . the local server
 then fetches the file (wget) and gunzips it and then i load the file.
 works pretty good.
 

The JDBC driver, and the mysqli interface for PHP support this for
LOAD DATA LOCAL INFILE, check the documentation for each if this is an
option for you.

-Mark


- --
Mark Matthews
MySQL AB, Software Development Manager - Connectivity
www.mysql.com
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.1 (MingW32)
Comment: Using GnuPG with Thunderbird - http://enigmail.mozdev.org

iD8DBQFDlGOEtvXNTca6JD8RAlGyAJwNUa73auCDBjIyib7ikIBrUb1vsQCfUPV5
eoaYiyOOX4T3YVEuOrjj+9A=
=/wQd
-END PGP SIGNATURE-

-- 
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]



LOAD DATA INFILE (url)

2005-12-01 Thread Test USER
Can't get this to work, but i would like to specify LOAD DATA to use an INFILE 
from an URL.

For example
LOAD DATA LOCAL INFILE 'http://www.testserver.com/data.csv' 
But i get an error message saying file not found.

Anyone know if this is even possible ?

-
FREE E-MAIL IN 1 MINUTE!
 - [EMAIL PROTECTED] - http://www.pc.nu

-- 
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]



Re: LOAD DATA INFILE (url)

2005-12-01 Thread Peter J Milanese
I have never seen this. Mysql would have to do a wget of the file then dump it. 
Last I knew it wasn't a web browser. There may be a way to do the wget inline 
though, or at least write something in shell or perl to do it. Is this cron'd 
or something, or a one time thing?



-
Sent from my NYPL BlackBerry Handheld.


- Original Message -
From: Test USER [EMAIL PROTECTED]
Sent: 12/01/2005 04:55 AM
To: mysql@lists.mysql.com
Subject: LOAD DATA INFILE (url)

Can't get this to work, but i would like to specify LOAD DATA to use an INFILE
from an URL.

For example
LOAD DATA LOCAL INFILE 'http://www.testserver.com/data.csv'
But i get an error message saying file not found.

Anyone know if this is even possible ?

-
FREE E-MAIL IN 1 MINUTE!
 - [EMAIL PROTECTED] - http://www.pc.nu

--
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]


--
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]



Re: LOAD DATA INFILE (url)

2005-12-01 Thread Test USER
Hi thanks for your answer!
I would like this to be done via cron 3-4 times a day.

Quoting Peter J Milanese [EMAIL PROTECTED]:

 I have never seen this. Mysql would have to do a wget of the file then
 dump it. Last I knew it wasn't a web browser. There may be a way to do
 the wget inline though, or at least write something in shell or perl to
 do it. Is this cron'd or something, or a one time thing?
 
 
 
 -
 Sent from my NYPL BlackBerry Handheld.
 
 
 - Original Message -
 From: Test USER [EMAIL PROTECTED]
 Sent: 12/01/2005 04:55 AM
 To: mysql@lists.mysql.com
 Subject: LOAD DATA INFILE (url)
 
 Can't get this to work, but i would like to specify LOAD DATA to use an
 INFILE
 from an URL.
 
 For example
 LOAD DATA LOCAL INFILE 'http://www.testserver.com/data.csv'
 But i get an error message saying file not found.
 
 Anyone know if this is even possible ?
 
 -
 FREE E-MAIL IN 1 MINUTE!
  - [EMAIL PROTECTED] - http://www.pc.nu
 
 --
 MySQL General Mailing List
 For list archives: http://lists.mysql.com/mysql
 To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]
 
 



 

-
FREE E-MAIL IN 1 MINUTE!
 - [EMAIL PROTECTED] - http://www.pc.nu

-- 
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]



Re: LOAD DATA INFILE (url)

2005-12-01 Thread Arno Coetzee

Test USER wrote:

Can't get this to work, but i would like to specify LOAD DATA to use an INFILE 
from an URL.


For example
LOAD DATA LOCAL INFILE 'http://www.testserver.com/data.csv' 
But i get an error message saying file not found.


Anyone know if this is even possible ?

-
FREE E-MAIL IN 1 MINUTE!
- [EMAIL PROTECTED] - http://www.pc.nu

 


it is possible .

you have to write your own script which fetches the file (using wget) 
and placing the file in a directory where it can be accessed. then you 
can load that file.


i currently have something like this running...

i make a dump file on the remote server runing a script with crontab. i 
gzip that file just to make the file transfer faster . the local server 
then fetches the file (wget) and gunzips it and then i load the file. 
works pretty good.


--
Arno Coetzee
Developer
Flash Media Group
Office : +27 12 342 3490
Mobile : +27 82 693 6180
Fax : + 27 12 430 4269
www.flashmedia.co.za

FMG Total messaging solution.  For all your GSM (SMS and USSD) messaging needs.  
Quick and easy do-it-yourself interfaces. http://www.flashmedia.co.za/tms.php 


--
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]