Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 SQL Server 2000 Forums
 SQL Server Development (2000)
 Insert Greek Data into SQL SERVER

Author  Topic 

mody1983
Starting Member

2 Posts

Posted - 2006-02-20 : 06:25:29
Hello,

I have a problem with greek language and MSSQL Server, It's that whenever I insert a greek data, it's inserted like ??? and never been displayed as a greek letters, Can anyone help me??

Thank you in advance.

AndrewMurphy
Master Smack Fu Yak Hacker

2916 Posts

Posted - 2006-02-20 : 07:46:40
you need tables with data columns defined as either "nchar", "nvarchar" or "ntext".
you also need a 'greek' collation to ensure the right sorting of data.
then you need the correct "codepages" set on your client.

search here for examples of the settings/code used for 'foreign (non-english) data'
Go to Top of Page
   

- Advertisement -