Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Re: Urgent: Help Please
Sted Alana wrote:
> How to copy files (ie. .sql files) from one account to another under UNIX
> OS or SQL*plus within UNIX?
Oooh, very basic knowledge needed here. Let me have a look.... I found something:
prompt> cp file1 file2
where file1 is the source file and file2 is the filename of the destination file. You need read privileges on file1 and write privileges where you want to store the copy.
Example:
adams_at_galaxy> cp /home/douglas/drop_database.sql /home/adams/create_stats.sql
Regards,
Knut
P.S. From sqlplus you can do the same with a ! on front:
SQLPLUS> !cp /home/douglas/drop_database.sql /home/adams/create_stats.sql Received on Thu Apr 25 2002 - 09:21:58 CDT
![]() |
![]() |