> Well, it strange, but proc sql with delete statement,
> using indexes works twice as fast as data step... 😕
>
>
> I thought that data step would have to work much
> faster than procedures.
Proc Sql uses a completely different code path than a data step. Data step is much older and tends to be more serialized than SQL, so it tends not to be take advantage of multiple threads/processors as well as SQL can/does.