I am doing my first database project in PostgreSQL or Oracle.
I would like to get an answer for my question.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
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