Hi there, I do want to pick up on this topic again, as I am still having troubles: Like last time I want to execute a shell command from within SAS, but this time using %unquote(%nrbquote(.....)) : %sysexec %unquote(%nrbquote(
ssh johndoe@some.server.host
<MYSQL credentials> > /home/some/path/test42.txt
<<< "select * from information_schema.TABLES WHERE table_schema = 'some_value' ")); I do get neither Errors nor Warnings, however, when I %PUT the &SYSRC. I can see, it has a value of "2", i.e. ERROR-message. I do know for sure that the shell command is correct, as I tested it interactively in the shell prompt and it worked just fine, meaning: it "filled" the textfile "test42". What's going on herre?
... View more