I use the following script to insert the string "Test-ÄÖÜäöüß-Test" into the table Testtab.
(I am a german programmer ;-) )
DELETE FROM [dbo].[Testtab]
SET IDENTITY_INSERT [dbo].[Testtab] ON
INSERT INTO [dbo].[Testtab] ([ID], [Teststring]) VALUES (1, 'Test-ÄÖÜäöüß-Test')
SET IDENTITY_INSERT...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.