BerndKaufmann
Programmer
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 [dbo].[Testtab] OFF
If I use the SQL Query Analyzer to process the script, then the string is written correctly to the table and looks like this:
Test-ÄÖÜäöüß-Test
However if I use ISQL.EXE to process the script, then the string looks like this:
Test--Í_õ÷³¯-Test
I need to have the script runnung with ISQL.EXE.
Does anybody have a hint for me?
Many thanks in advance!
(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 [dbo].[Testtab] OFF
If I use the SQL Query Analyzer to process the script, then the string is written correctly to the table and looks like this:
Test-ÄÖÜäöüß-Test
However if I use ISQL.EXE to process the script, then the string looks like this:
Test--Í_õ÷³¯-Test
I need to have the script runnung with ISQL.EXE.
Does anybody have a hint for me?
Many thanks in advance!