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.
Author |
Topic |
bala001_sqldba
Starting Member
18 Posts |
Posted - 2013-11-17 : 08:01:30
|
Hi Friends,i need to know the languages supported by Sql Server.. according to me, i got 33 languages using the following query.. select * from syslanguages ..let us know if there are any more way to find the languages..thanks in advance |
|
James K
Master Smack Fu Yak Hacker
3873 Posts |
Posted - 2013-11-17 : 10:56:17
|
What is the purpose? If it is to find out the languages supported by the database engine, what you are doing is the correct query. (although it is now in the sys schema - so you should use sys.syslanguages). If it is for some other purpose, then this may not be the right query - for example, for full text support, use select * from sys.fulltext_languages |
|
|
bala001_sqldba
Starting Member
18 Posts |
Posted - 2013-11-18 : 06:06:40
|
quote: Originally posted by James K What is the purpose? If it is to find out the languages supported by the database engine, what you are doing is the correct query. (although it is now in the sys schema - so you should use sys.syslanguages). If it is for some other purpose, then this may not be the right query - for example, for full text support, use select * from sys.fulltext_languages
can you explain full text support.. actually, i have heard of full text search.. my question both full text support and full text search point the same logic |
|
|
|
|
|