Reputation: 2222
I have a table with almost 200,000,000 records. It takes a long long time to query.
Any idea about improving the performance?
Upvotes: 0
Views: 1413
Reputation: 8513
In addition to indexing you should also consider:
compress=yes
option if you're not already. This will shrink the size of the table on disk resulting in less disk I/O (the slowest part of querying).Upvotes: 1
Reputation:
Consider adding index on id-type columns in that table.
BTW, this has nothing to do with SAS EG performance, but everything to do with the underlying BASE SAS engine.
Upvotes: 2