Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Need Help with ® (registered trademark) symbol

Status
Not open for further replies.

njtornado

Programmer
Apr 2, 2001
8
US
How do you save a ® (registered trademark) symbol in an Oracle 8.1.7 db?
 
You can insert the symbol as image in Db and then use it. But if you need it for some Report or Form try to paste at as image there.
 
You need not save anything. Use the Chr() function. If you "SELECT CHR(174) FROM Dual" in Sqlplus you should get that symbol, assuming that the NLS_LANGUAGE setting doesn't get in the way.


SQL> select chr(174) from dual;

C
-
®

1 row selected.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top