Reputation: 171
What is the equivalent of nvarchar(max)
from SQL Server in Oracle?
Upvotes: 0
Views: 122
Reputation:
SQL Server's nvarchar(max)
stores character data of an "unlimited" length.
The equivalent in Oracle would be NCLOB
. Depending on how the database was initialized, CLOB
might work just as well.
Upvotes: 3