How can we help you today? How can we help you today?

BUG: Code analysis raises PE002 warning when creating an index on a temp table

The PE0002 warning (Schema name for table or view is not specified) is raised when creating an index on a temp table. It is (correctly) not raised when selecting from a temp table.

Repro:

CREATE TABLE #t (i INT NOT NULL);
SELECT * FROM #t;
CREATE CLUSTERED INDEX ix_t ON #t(i);
Jacco
0

Comments

1 comment

  • FabiolaB
    Hi @Jacco,

    Thank you for reporting this issue.
    I've reported it under this ticket: SP-6738.

    Regards,
    Fabiola
    FabiolaB
    0

Add comment

Please sign in to leave a comment.