Skip to Main Content

Oracle Forms

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

ORA-20000: 550 ...: Access is denied.

617929Jun 7 2010 — edited Jun 8 2010
Hi, I created this procedure :

PROCEDURE SSS IS
l_conn UTL_TCP.connection;
BEGIN
l_conn := ftp.login('host', '21', 'user', 'passwd');
ftp.ascii(p_conn => l_conn);
ftp.put(p_conn => l_conn,
p_from_dir => 'LOG_DIR',
p_from_file => 'CreaBolla.log',
p_to_file => /.../CreaBolla.log');
ftp.logout(l_conn);
END;

When execute it Ihave this error. Can someone help me?

Thank you
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Jul 5 2010
Added on Jun 7 2010
1 comment
2,628 views