I am doing my first database project in PostgreSQL or Oracle.
I would like to get an answer for my question.
I am doing my first database project in PostgreSQL or Oracle.
I would like to get an answer for my question.
there's no string in database. string in .net is limited only by memory. there's no such thing as nvarchar(5000). you can have nvarchar(4000) or nvarchar(max) 4000 is the max char length you can store and one char is store in 2 bytes. you can read more about this in Books Online