You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On MPP database platforms, INSERT INTO statements as used here are extremely slow. We should use SELECT INTO statements, creating several temp tables, and merging them into the final temp table using another SELECT INTO. This will be several orders of magnitude faster on some platforms.
The text was updated successfully, but these errors were encountered:
On MPP database platforms, INSERT INTO statements as used here are extremely slow. We should use SELECT INTO statements, creating several temp tables, and merging them into the final temp table using another SELECT INTO. This will be several orders of magnitude faster on some platforms.
The text was updated successfully, but these errors were encountered: