Search found 7 matches

by moti
Thu Mar 20, 2025 11:14 am
Forum: General
Topic: retrive qtemp files from a batch job ?
Replies: 2
Views: 28119

Re: retrive qtemp files from a batch job ?

Didn't get an answer yet? :o
by moti
Sun May 26, 2024 8:09 am
Forum: General
Topic: Pointer not set for location referenced - MCH3601
Replies: 9
Views: 29861

Re: Pointer not set for location referenced - MCH3601

Hi,

In order to better understand the problem' we need to see the ENTIRE Joblog or at least more than you're showing.
There is supposed to be another message BEFORE the "Pointer not set for location referenced" message.
Usually it's about a file that doesn't exist in the *Libl.
Change (if it ...
by moti
Wed May 22, 2024 2:36 pm
Forum: General
Topic: QSQPTABL
Replies: 2
Views: 17146

Re: QSQPTABL

Hi,
1. Try and duplicate the PHYSICAL file to your library.
2. If you succeed, update the new file with the relevant data.
3. Copy the new file to the original file (*Replace or *Add).

Hope it helps....

Have a nice day,
Moti.
by moti
Wed Aug 18, 2021 3:07 pm
Forum: General
Topic: Strange problem in SFTP script
Replies: 5
Views: 34346

Re: Strange problem in SFTP script

Scott,

YOU'RE THE GREATEST !!!!!

I changed the script as you suggested and it worked beautifully.....

Thank you VERY MUCH.

Have a nice day.
Moti.
by moti
Wed Aug 18, 2021 8:32 am
Forum: General
Topic: Strange problem in SFTP script
Replies: 5
Views: 34346

Re: Strange problem in SFTP script

Scott hi,

I tried to change the statement to "continue connecting (yes/no/fingerprint)?" {send "yes\n"; exp_continue} (without the "[ ]"), but it still stops...
I just looked at the log again.
After the "spawn" statement I see a line as follows:
RSA key fingerprint is SHA256:YZ1tnZNGc7gfuEVxu9Ee31 ...
by moti
Wed Aug 18, 2021 8:16 am
Forum: General
Topic: Strange problem in SFTP script
Replies: 5
Views: 34346

Re: Strange problem in SFTP script

Scott hi,

That's the way i originally found out about the addition of the [fingerprint] text....
The original script was indeed like that:
expect {
default {exit 2}
"continue connecting (yes/no)?" {send "yes\n"; exp_continue}
"password:" {send "$env(SSH_PASS)\n"; exp_continue}
"sftp ...
by moti
Tue Aug 17, 2021 1:10 pm
Forum: General
Topic: Strange problem in SFTP script
Replies: 5
Views: 34346

Strange problem in SFTP script

HI,
I'm using a SFTP script for some time, encountering no problems.
The script is as follows:
#!/usr/local/bin/expect -f
set timeout 500
spawn sftp $env(SSH_USER)@$env(SSH_HOST)
expect {
default {exit 2}
"continue connecting (yes/no/)?" {send "yes\n"; exp_continue}
"password:" {send "$env ...