Click here to Skip to main content
15,892,674 members
Home / Discussions / Database
   

Database

 
AnswerRe: problem with Oracle and ole auto generate update Pin
maryam.saboor16-Nov-09 8:03
professionalmaryam.saboor16-Nov-09 8:03 
GeneralRe: problem with Oracle and ole auto generate update Pin
ExploreLife6-Jun-12 16:27
ExploreLife6-Jun-12 16:27 
QuestionMapping a foreign key participating in multiple relationships Pin
MBursill15-Nov-09 13:12
MBursill15-Nov-09 13:12 
Questionhow to stop long roll back on SQL server 2005 , Pin
i gr815-Nov-09 8:05
i gr815-Nov-09 8:05 
AnswerRe: how to stop long roll back on SQL server 2005 , Pin
Mycroft Holmes15-Nov-09 13:41
professionalMycroft Holmes15-Nov-09 13:41 
QuestionHow to store multiple languages in oracle 10g? Pin
n3ophyt315-Nov-09 0:09
n3ophyt315-Nov-09 0:09 
AnswerRe: How to store multiple languages in oracle 10g? Pin
Richard MacCutchan15-Nov-09 1:37
mveRichard MacCutchan15-Nov-09 1:37 
AnswerRe: How to store multiple languages in oracle 10g? Pin
Niladri_Biswas15-Nov-09 2:31
Niladri_Biswas15-Nov-09 2:31 
Hi,
You can create a Unicode database that enables you to store UTF-8 encoded characters as SQL CHAR datatypes (CHAR, VARCHAR2, CLOB, and LONG).


For more info. please look into

http://download.oracle.com/docs/cd/B19306_01/server.102/b14225/ch6unicode.htm[^]

n3ophyt3 wrote:
how can i do the language conversion from HINDI to english ... any sourcecode?


Some pseudo code

function OtherLanguage2English(value,offset)
{
		var ctrlValue=value; //Variable ctrlValue stores the value of the respective languages depinding on the 						   offset value		
		var english="";

		for (var idx=0; idx<ctrlValue.length; idx++)//Loop Until The End Of Text Is Reached
		{
				individualChar = ctrlValue.substring(idx,idx+1); //Extracting Charecter 1 By 1 From The String Value

				var code =individualChar.charCodeAt(0);//Gets the Unicode Value	
				
				english=english+ String.fromCharCode(code-offset);//Converts From Other Language Values To English
				
				switch(offset)
				{
					
					case 2358:document.getElementById('txtEnglish').value=english;break;//For Hindi Value To English
				}

		}
}


Though it is in javascript but this function also converts Hindi to English.. So I thought that you may get some idea.

Sorry for not getting an appropriate code for your help. I will update as and when I will get the code for oracle for serving the same purpose.
Smile | :)

Niladri Biswas

QuestionMSSQL Server 2005 ... Install Issue Pin
PDTUM14-Nov-09 15:19
PDTUM14-Nov-09 15:19 
AnswerRe: MSSQL Server 2005 ... Install Issue Pin
Shameel16-Nov-09 3:40
professionalShameel16-Nov-09 3:40 
AnswerRe: MSSQL Server 2005 ... Install Issue Pin
PDTUM16-Nov-09 5:01
PDTUM16-Nov-09 5:01 
QuestionMultiple Select Statement in stored procedure Pin
deepseeindeepsy14-Nov-09 0:10
deepseeindeepsy14-Nov-09 0:10 
AnswerRe: Multiple Select Statement in stored procedure Pin
i.j.russell14-Nov-09 1:09
i.j.russell14-Nov-09 1:09 
AnswerRe: Multiple Select Statement in stored procedure Pin
Mycroft Holmes14-Nov-09 2:12
professionalMycroft Holmes14-Nov-09 2:12 
AnswerRe: Multiple Select Statement in stored procedure Pin
Niladri_Biswas14-Nov-09 17:37
Niladri_Biswas14-Nov-09 17:37 
QuestionTotal Count Pin
.NET- India 13-Nov-09 21:38
.NET- India 13-Nov-09 21:38 
AnswerRe: Total Count Pin
Mycroft Holmes14-Nov-09 2:08
professionalMycroft Holmes14-Nov-09 2:08 
AnswerRe: Total Count Pin
Niladri_Biswas14-Nov-09 17:41
Niladri_Biswas14-Nov-09 17:41 
QuestionSSRS 2005 to SSRS 2008 question Pin
ranro13-Nov-09 15:58
ranro13-Nov-09 15:58 
Questionsql server 2008 Pin
AndyInUK13-Nov-09 5:38
AndyInUK13-Nov-09 5:38 
AnswerRe: sql server 2008 Pin
sarang_k13-Nov-09 5:48
sarang_k13-Nov-09 5:48 
GeneralRe: sql server 2008 Pin
AndyInUK13-Nov-09 6:09
AndyInUK13-Nov-09 6:09 
GeneralRe: sql server 2008 Pin
Abhishek Sur13-Nov-09 9:40
professionalAbhishek Sur13-Nov-09 9:40 
GeneralRe: sql server 2008 Pin
Mycroft Holmes14-Nov-09 2:02
professionalMycroft Holmes14-Nov-09 2:02 
AnswerRe: sql server 2008 Pin
Shameel14-Nov-09 23:39
professionalShameel14-Nov-09 23:39 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.