this is my stored procedure: -------------------- CREATE PROCEDURE [dbo].[test] AS insert INTO TempTable (...) SELECT ... FROM view GO -------------------- I don't get error messages but it doesn't creat the table I need and doesn't insert anything. What's wrong with this procedure?