|
Hi, Does anybody knows how to store greek symbols (alpha, gamma, delta) in SQL Server 2000 table? Thanks, Ashesh
(comments are locked)
|
|
EDIT: Replace previous code snippets with 1 complete snippet using a table variable. You should be able to do this using a Greek collation for an I found this page with Greek characters: http://ancienthistory.about.com/od/greeklanguage/a/ASCIIGreek.htm
Results: This didn't work. e.g. when I want to store Δ (i.e. Greek Delta) should my SQL should be INSERT INTO MyTable (greek) VALUES(N'Δ') or INSERT INTO MyTable (greek) VALUES(N'Δ')
Dec 11 '09 at 06:31 AM
Ashesh
Either way it don't work for me.
Dec 11 '09 at 06:32 AM
Ashesh
Try the new code I just posted. It works in SQL Server 2008. I don't have 2000, but I don't see why it wouldn't work there.
Dec 11 '09 at 10:17 AM
Tom Staab
Thanks Tom, This has worked. Thanks again Ashesh
Dec 22 '09 at 01:30 PM
Ashesh
(comments are locked)
|


Can you give us the DDL for your tabel? I think you might need to set the proper code page/collation for this table.