Oct 22, 2002 #1 calahans Programmer Jun 14, 1999 348 IE Hi Guys, I want to store a string of, lets say, no more than 10,000 chars. Is there a data type, like TEXT, that can accomondate this? Thanks Cal Cal
Hi Guys, I want to store a string of, lets say, no more than 10,000 chars. Is there a data type, like TEXT, that can accomondate this? Thanks Cal Cal
Oct 22, 2002 1 #2 rcurva Programmer Jul 17, 2001 548 AU I think you can still safely use VARCHAR2 for your requirement, even if you are using multibyte char set in your database. Max. size for VARCHAR2 is 32767 bytes. Robbie "The rule is, not to besiege walled cities if it can possibly be avoided" -- Art of War Upvote 0 Downvote
I think you can still safely use VARCHAR2 for your requirement, even if you are using multibyte char set in your database. Max. size for VARCHAR2 is 32767 bytes. Robbie "The rule is, not to besiege walled cities if it can possibly be avoided" -- Art of War
Oct 22, 2002 #3 sem Programmer Jun 3, 2000 4,709 UA Only pl/sql varchar2 may hold 32K. To STORE the 10K string value you need CLOB. Upvote 0 Downvote