Can I add an other language like persian (that is not in default languages support by sql server 2012) to semantic_statistic_database of sql server 2012 or add words to one of existing default languages eg. english
Related
I want to convert the data in one of my columns to another language ... is there any function in sql for translating it?
No, there are no SQL functions/procedures for translating between languages built into the Oracle database.
Oracle Text has features for multi-language indexes; but that is for indexing documents and not for translating them.
Oracle 12c and later also has features for translating between different SQL dialects; but that is not for translating data.
If you want to translate data then you will need 3rd party solution that you can import into the database or external software that you can call from the database.
I want to convert the data in one of my columns to another language ... is there any function in sql for translating it?
No, there are no SQL functions/procedures for translating between languages built into the Oracle database.
Oracle Text has features for multi-language indexes; but that is for indexing documents and not for translating them.
Oracle 12c and later also has features for translating between different SQL dialects; but that is not for translating data.
If you want to translate data then you will need 3rd party solution that you can import into the database or external software that you can call from the database.
I am trying to export a SQL Server 2005 database using ESF Database Migration Toolkit to .CSV, which I can then - hopefully - manipulate enough to create an Import file for importing into WordPress.
However, the current site is in Korean language and shall remain in Korean on the new server running MySQL.
After exporting all of the tables, I am finding columns where I would expect to find "some korean string" to contain "T???? ?????? ?????" - no Korean words in sight! I have tried exporting using ANSI, OEM and UNICODE options in ESF, each provides the same result.
Anyone?
My personal computer is running Windows 7 (language turkish) and I installed SQL Server 2008. When I create a new database, the database language is Turkish_CI_AS
And I have a server with Windows Server 2003 (language english) and installed SQL Server 2008 on that server. I set the Regional and Language Options as Turkish. I am creating a database and selecting collation Turkish_CI_AS
But when I insert a row into a table on the server, an error occurrs:
The date format is invalid
You should always use unambigious formats like YYYYMMDD or YYYYMMDD HH:MM:SS so that no matter what setting the server/database is it will be added correctly. Read this for a better understanding http://beyondrelational.com/modules/2/blogs/70/posts/10898/understanding-datetime-column-part-ii.aspx
How I can change SQL Server error message to another . I am using SQL Server 2008 R2 with Windows server 2008 r2 enterprise and want to change error message to persion language.
SET LANGUAGE:
Specifies the language environment for the session. The session
language determines the datetime formats and system messages.
I don't think there is a Persian edition though, see the list at sys.syslanguages
try setting the language like this
SET LANGUAGE ENGLISH
Persian isn't a language supported on SQL Server 2008 R2
To see the supported languages click here
You could also find them by using
SELECT name, alias
FROM sys.syslanguages
If you then want to change the language to Italian for example use
SET LANGUAGE Italian
Further info on SET LANGUAGE here