Hello everyone,
I have a question about sqlcl. I'm testing and comparing to SQL plus. And I was wondering if it is possible to loop through multiple schemas and execute a command? Something like
sql /nolog
FOR s IN (urls)
LOOP
connect to url
execute a command
END LOOP;
Usually, I do this using bash scripts... But I'm thinking Since I see sqlcl allows scripting, maybe it has a solution for this?
Regards,