For my Project Purpose I want to create a table from the data fetched from a view. I am using the basic statement:
CREATE TABLE TABLE_NAME AS (SELECT * FROM VIEW_NAME) ;
The problem is that Around 3 cores of data will be fetched from that view and as the view has joins on many tables and many conditions are applied the performance of the view is bit slow. When I am trying the basic syntax (as mentioned above) after sometime the session is getting timed out and hence it fails. Any alternative way to do this?