Question 1:
I'm running a query like this:
select *
into table
from view
The view has a lot of calculations and the query is running for over 15 hours. I know how many rows I need to have in the data. Is there a way to know how many rows were insert to table till now so I will know if to keep with this process or find another way to execute this.
Question 2: is the Insert into , select from
more efficient than select * into
? when you are trying to move data from view to a table?
Thanks