In SQL Server Management Studio, I have a Server Object-> Linked Server where there are cube views. I am trying to make a copy of all of these views and save them on a separate SQL database on same server so that I can connect to these new views using things like PowerBI and Power Query. Any suggestions as to how I would go about doing this? I know that I could write individual queries such as:
Select * INTO [new_table] from [linked_server_view].[Table]
However there are hundreds of views in the Linked Server and this would be very time consuming.
Thanks,