in reply to Netware-SQL server transfer

First of all... I'll assume your question is ...can i get data off of the internet using a perl script and put it into a SQL Server DB

Short Answer: Yes
Long Answer: have a look at DBI and WWW::Mechanize or LWP.

BTW Netware has ZERO to do with it. If I'm understanding your question correctly. All you need is a SQL Server DB, which you have access to, with (optionally) an ODBC datasource setup for that DB. You can also create it dynamically. Please be sure and put

use strict; use warnings;
in your script.. will save you heartache in the end.


Grygonos