AnZelie

Results 3 comments of AnZelie

It's strange, because if I recreate the table with a different name, I don't get any errors on the new table. ` CREATE TABLE [dbo].[agessa_mem]( [Numero] [int] IDENTITY(1,1) NOT NULL,...

NB : At the end of the create table script, i have this code : EXEC sys.sp_addextendedproperty @name=N'AllowZeroLength', @value=N'False' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'TABLE',@level1name=N'agessa_mem', @level2type=N'COLUMN',@level2name=N'Numero' GO EXEC sys.sp_addextendedproperty @name=N'Attributes', @value=N'17' , @level0type=N'SCHEMA',@level0name=N'dbo',...