I have a view that I want to create a table from in SQL Enterprise Manager, but I always get an error when I run this query:
CREATE TABLE A AS (SELECT top 1
In SQL SERVER you do it like this:
SELECT * INTO A FROM dbo.myView
This will create a new table A with the contents of your view. See here for more info.
A