Your feedback to us

0
Fixed

Comment fields

altug orsmen 6 years ago updated by danp 4 years ago 6

I think, there is escape issue in comment fields. Occuring runetime error when you use single quote in comment fields. Because comments exporting inside of single quotes. And then this is causing error when run the script. 

0
Answered

Reference issue when generating SQL server script

nikhil android dev 6 years ago updated by Support 6 years ago 2

First of all thanks a ton for the awesome tool. This is first time I tried to implement this tool so bit novice here.

When I tried to generate SQL Server script it gives me reference related error i.e it try to give a reference the table that haven't been created yet.

I have checked the generated script, it references at time of table creation so if the table is not created earlier it gives error. Instead of it should be first create all table then alter table for referencing.

please see below code 

CREATE TABLE [dbo].[MstLanguage]
(
 [LanguageId]   INT NOT NULL ,
 [LanguageName] VARCHAR(50) NULL ,
 CONSTRAINT [PK_Language] PRIMARY KEY CLUSTERED ([LanguageId] ASC)
);
GO
--************************************** [dbo].[TrnLanguage]
CREATE TABLE [dbo].[TrnLanguage]
(
 [Langu]      INT NOT NULL ,
 [LanguageId] INT NOT NULL ,
 CONSTRAINT [PK_TrnLanguage] PRIMARY KEY CLUSTERED ([Langu] ASC),
 CONSTRAINT [FK_722] FOREIGN KEY ([LanguageId])
  REFERENCES [dbo].[MstLanguage]([LanguageId])
);
GO


Please guid me may be I am doing something wrong. 
Thanks in advance. 

0
Answered

import schema not working it gives an error when importing MS Azure SQL Database Schema

faisal 6 years ago updated by Support 6 years ago 2

After following the steps for schema import from SQL Server, we get an error on the 3rd step. 


Here is the schema we are trying to import 


SQLSchema.txt

0
Answered

Boolean Values

Stefan Soder 6 years ago updated by anonymous 6 years ago 6

Is there a way to create a column  with BOOLEAN data type?

Answer
anonymous 5 years ago

Dear User,

We did not hear from you since our last message to you and we hope that your request has been resolved.

We are closing this ticket for now, feel free to contact us in case you have any following questions.

Thanks

Team - SqlDBM

0
Answered

Auto Increment

danielneri 6 years ago updated by Support 6 years ago 2

Is there a way to define a column as auto increment currently?