• I just ran a quick experiment with this code:

    DECLARE @i INT = 0;

    WHILE @i < 300

    BEGIN

    SELECT * FROM dbo.Agent AS a

    SET @i += 1;

    END

    I was able to see all 300 execution plans from within SSMS. I'm running 2014. I connected to both a v11 Azure database and a v12. No issues on any of them. Were you getting errors?

    "The credit belongs to the man who is actually in the arena, whose face is marred by dust and sweat and blood"
    - Theodore Roosevelt

    Author of:
    SQL Server Execution Plans
    SQL Server Query Performance Tuning