import data files from Unix to Windows?


 
Thread Tools Search this Thread
Special Forums Windows & DOS: Issues & Discussions import data files from Unix to Windows?
# 1  
Old 02-10-2005
Question import data files from Unix to Windows?

Hi,
Is there any way to import data files from Unix system to Windows system?
I have many data files on Unix machine generated every night.
I need to pick certain data from each file and plug them into this windows file on the network share drive.
Anyone has any idea?

Thanks in advance!
# 2  
Old 02-10-2005
If you want to transfer the files from remote directory on unix onto local directory on windows or viceversa,one way is to download WinSCP .Thats what im using right now.
# 3  
Old 02-10-2005
Quote:
Originally Posted by whatisthis
Hi,
Is there any way to import data files from Unix system to Windows system?
I have many data files on Unix machine generated every night.
I need to pick certain data from each file and plug them into this windows file on the network share drive.
Anyone has any idea?

Thanks in advance!
Samba.

www.samba.org
# 4  
Old 02-10-2005
Bug Thank you

thumsup9's idea is fine.
But I am looking for an automated process.
Is there any command or utility within Unix to allow me to export data file from Unix to Windows' shared drive's certain folder?
If I can get all the data files automatically exported to the windows directory, I can use VB program handle it from there.

?
# 5  
Old 02-10-2005
Quote:
Originally Posted by whatisthis
But I am looking for an automated process.
Is there any command or utility within Unix to allow me to export data file from Unix to Windows' shared drive's certain folder?
As Neo says, Samba.

With Samba, you can script the transfer...

smbmount \\\\mywinbox\\sharename /mnt
cp my_file /mnt
smbumount /mnt

There we have it, the file is on the windows box.

Cheers
ZB
# 6  
Old 05-24-2005
Quote:
Originally Posted by whatisthis
thumsup9's idea is fine.
But I am looking for an automated process.
Is there any command or utility within Unix to allow me to export data file from Unix to Windows' shared drive's certain folder?
If I can get all the data files automatically exported to the windows directory, I can use VB program handle it from there.

?
Yes, i know Samba..but i cannot add a third party application. Is there an answer out there that does not include, Samba, Sim(something) or FTP(not SOXS compliant in my world. And Yes i did do a seaarch.
# 7  
Old 05-24-2005
When you say Unix, what version/distro? Solaris/Linux/HP-UX/etc...

With what has been said before Samba would be the best way and write a scrite then to do what you are after.

From what you say you can't install any 2rd party software. If it is an important task explain this to the Unix Admin and then he'll setup Samba for you. If your teh Unix admin explain what is going on to your boss then also explain why 3rd party software is needed for this process.
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Data to import the database as snippets

Hi all, I don't know if this the right place to post my question to get some ideas on how to done this. I have a text files extracted from OCR that need to have snippets to be import to database as snippet table which have columns "snippet, date, title" I dont know if shell scripts can do it... (11 Replies)
Discussion started by: lxdorney
11 Replies

2. AIX

Do I need to configure my local windows to FTP files from local windows to a UNIX AIX server?

Hi Friends, I have this script for ftping files from AIX server to local windows xp. #!/bin/sh HOST='localsystem.net' USER='myid_onlocal' PASSWD='mypwd_onlocal' FILE='file.txt' ##This is a file on server(AIX) ftp -n $HOST <<END_SCRIPT quote USER $USER quote PASS $PASSWD put $FILE... (1 Reply)
Discussion started by: rajsharma
1 Replies

3. Shell Programming and Scripting

Logs access in windows fetching the data from a unix server

How I can get the logs that are getting stored in specific location in unix server through an Apache web server installed in unix server? Requirement is to access the logs through the URL in windows browser without any access. (1 Reply)
Discussion started by: alvida
1 Replies

4. Shell Programming and Scripting

Data Import perl script

Hi, I have a requirement for creating a Perl Script which will perform Data Import process in an automated way and I am elaborating herewith : Section 1 ) - use the following command line format : "./import.pl -h hostname -p port -f datafile.txt" Section 2) datafile.txt will... (3 Replies)
Discussion started by: scott_apc
3 Replies

5. UNIX for Dummies Questions & Answers

Can UNIX data on tape be read in Windows??

Hello All: We have acquired a business (UNIX system) and inherited data which is on SDLT tapes. We'd like to read this data and save it in Windows format, if possible. Anyone in the know on how to do that, if feasible? Please give your suggestions. Regards (2 Replies)
Discussion started by: yourstruly
2 Replies

6. UNIX for Dummies Questions & Answers

How can import data files to XL sheet.

Hi, I have the file(F1.XL) in Unix Box. it's updating every 1hr. I would like to import f1.xl to Windows excel sheet, when i need see the reports. can any one clarify, is there any VB script for importing data from UNIX, like sql connection.... thanks (1 Reply)
Discussion started by: koti_rama
1 Replies

7. UNIX for Dummies Questions & Answers

Enable a shell to collect data from unix, return to windows

hi I am very new to UNIX. I need to retrieve data from a unix system and store it and display as output on a windows system. Initiation of procedure is through JAVASCRIPT-based buttons on a HTML page. This should cause a set of commands to run which colllect data from a unix based server and... (1 Reply)
Discussion started by: rossalyn_maxter
1 Replies

8. Shell Programming and Scripting

Import data from compressed file

HI I need to import data from a file which is in comressed format but system doesn't have enough space to uncompress file Is there any way so that i can do import from compressed file. (4 Replies)
Discussion started by: ap_gore79
4 Replies

9. UNIX for Advanced & Expert Users

copy data from Windows to Unix any help?

I have a log file that I would like to copy from my windows pc to my unix pc for further processuon. Is there any command that can help me perform this task?. I already have a cron to fire up the process, but nothing seems to be coming up. I am trying to use ftp but nothing is coming forth.... (8 Replies)
Discussion started by: odogbolu98
8 Replies
Login or Register to Ask a Question