I want to insert records into TempTable. Something like that:
insert into
SELECT * FROM MyTable
MyTable contains a large number of entries, so "insert into" takes a lot of time.
If I try to run:
SELECT COUNT(*) FROM
it always returns “0” until all records from “MyTable” have been inserted with the INSERT INTO command.
How can I get a progress count that tells me how many records are in ## tempT?
I need to update the progress bar value while executing an SQL command.
Thank.
source
share