Now it is time to tell you a story about Languages.
According to the Bible,Many a eons ago people decided to build a tower up-to the sky.But God wished otherwise.He caused them to speak different languages in order to confuse them among themselves.Those people,unable to understand one another,abandon their project and the tower remained unfinished.
Story ended now, please come into the technology world.
So multiple languages with multiple characters, some characters will be common among languages and some are not.
In Oracle data will be feed from different sources and not all systems use the same character set and hence the characters cannot be same..
One of the interesting AD utilities will convert data from One character set to another.
# character sets
P_SRC_CHAR_SET=UTF8 # Source Char set
P_DEST_CHAR_SET=WE8ISO8859P1 # Destination Char set (Western European char set)
# adncnv to convert from character set to another.
# $FILENAME is the source file name
# $DEST_FILENAME is the destination file name after conversion of the data.
adncnv $FILENAME $P_SRC_CHAR_SET $DEST_FILENAME $P_DEST_CHAR_SET
if [ $? -eq 0 ]
then
echo "Conversion Successful"
echo ""
else
echo "ERROR 10 - Conversion Errored out"
echo ""
According to the Bible,Many a eons ago people decided to build a tower up-to the sky.But God wished otherwise.He caused them to speak different languages in order to confuse them among themselves.Those people,unable to understand one another,abandon their project and the tower remained unfinished.
Story ended now, please come into the technology world.
So multiple languages with multiple characters, some characters will be common among languages and some are not.
In Oracle data will be feed from different sources and not all systems use the same character set and hence the characters cannot be same..
One of the interesting AD utilities will convert data from One character set to another.
# character sets
P_SRC_CHAR_SET=UTF8 # Source Char set
P_DEST_CHAR_SET=WE8ISO8859P1 # Destination Char set (Western European char set)
# adncnv to convert from character set to another.
# $FILENAME is the source file name
# $DEST_FILENAME is the destination file name after conversion of the data.
adncnv $FILENAME $P_SRC_CHAR_SET $DEST_FILENAME $P_DEST_CHAR_SET
if [ $? -eq 0 ]
then
echo "Conversion Successful"
echo ""
else
echo "ERROR 10 - Conversion Errored out"
echo ""