It happens that many SAS programs are indeed a lot of chained PROC SQL. It is quite easy in this case to use PySpark SQL feature (spark.sql()) to reuse these PROC SQL. Of course SAS SQL is not compliant to SQL standard and you will have to adapt some functions / find the equivalent. But you can leverage the logic, I have done it few times. If your SAS program does not use PROC SQL or for the other parts of your program, you will need to adapt and translate...
... View more