Broken SQL Server import

You broke the import from SQL Server script. It doesn’t connect tables anymore. And also “Indexes” section does not wrap names in quotes so it also doesn’t work.

Can you give us some error example scripts so we can procedure more accurately?
Thank you for your report! We will immediately look into this issue.

For the indexes :
When you add indexes like this and export for SQL Server, error occurs when import the .sql

Indexes { 
    (prop1, prop2) [unique]
}

" Incorrect syntax near ‘myColumn’ "

in the .sql generated the line is

CREATE UNIQUE INDEX [index_name] ON [table_name] ("prop1", "prop2")
GO

and it should be

CREATE UNIQUE INDEX [index_name] ON [table_name] ([prop1], [prop2])
GO

note the bracket [ ] around the property

ps ( we actually can’t create post => An error occurred: You are not permitted to view the requested resource. )