Hello All,
I want to run few DDL's from scripts and want the script to halt if any error ocuurs, this can be done by on_error_stop
But what I want to do is to display a message something like
If on_error_stop =1
{
echo "DDL failed";
exit();
}
else "DDL passed";
end
is there any way to do this?
Thanks in advance
Ashish...