I created an index for my ginormous (250 million+ records) SQL table and it has been several hours. How can I tell if it's still going? Or if the process is frozen/dead?
If you have an answer about how to check if SQL (SQLite3) is still running in general, that'd be super. However, if you have an approach for my specific case, that's good as well. This is what I did.
CREATE INDEX index_name ON table_name(column_name);