PL/SQL has data type NVARCHAR2(size) where the size is 32767 bytes; equivalent to 4095 records.
Now, what data type should i give as an alternative to NVARCHAR2 that could support more than 4k records? I have a gridview in asp.net that doesn’t support paging. Which datatype is most suitable to support more than 4095 records?
Is this just text? You could use
CLOB:You can check same page for other types (
BLOB,NCLOB) for storing large amounts of data.