In a process to load data with SQL Server as target there is a step for installing constraints in the schema replicated. Stambia Designer forms sentences for constraints like
ALTER TABLE [world].[dbo].[countrylanguage]
ADD CONSTRAINT [PRIMARY] PRIMARY KEY ([CountryCode],[Language])
but, for a previous table it create and installed another constraint for a table in the scheme with the same name [PRIMARY], this is why SQL Server raise an exception for "There is already an object named 'PRIMARY' in the database"
Is there a way to let Stambia to assign different names for each constraint or just avoid named it at all and let SQL Server assign them to avoid the error?
or Is there another way to avoid the Exception?
Thanks in advance