dalibo/sqlserver2pgsql

WITH statements are not removed

Opened this issue · 0 comments

In some MSSQL views I have WITH (NOLOCK) statements after the table names.

E.g. the SELECTs look something like this:

SELECT *
FROM mytable WITH (NOLOCK)

Such WITH statements should be removed when generating the PostgreSQL schemas for views, triggers, and stored procedures.

Sebastian