I'm trying to create a table from a view with fields from several tables,in the same tablespace:

create table table_name as
select * from view_name;

But I get errors everytime...Am I doing it right?
Thanks