Create Proc usp_SelectItems
(
@TableName nvarchar(100)
)
as
begin

DECLARE @Sql NVARCHAR(MAX);
SET @Sql = N'SELECT TOP 10 * INTO #Temp_Table_One
              FROM ' + QUOTENAME(@TableName)
          + N' SELECT * FROM #Temp_Table_One '

EXECUTE sp_executesql @Sql

end