Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Oracle-How to check if max_string_size is standard or extended

I am new on Oracle and maybe my question is an easiest one however I could not find my answer. I want to check max_string_size. Is there any useful system query ? Kind regards, Thank you.

like image 756
MSK Avatar asked Apr 27 '15 09:04

MSK


People also ask

What is Max string size in Oracle?

Setting MAX_STRING_SIZE = EXTENDED enables the 32767 byte limit introduced in Oracle Database 12c.

What is Oracle extended data types?

Using the Oracle Mapper with Oracle Integration Extended data types are user-defined types based on the primitive data types boolean, integer, real, string, and date, and the composite type container.

What is the default length for number datatype in Oracle?

The default precision for this data type is 126 binary, or 38 decimal.


2 Answers

You could try to use:

show parameter max_string_size

The value could be STANDARD or EXTENDED. You could find some useful information here.

like image 151
teoreda Avatar answered Oct 24 '22 03:10

teoreda


If you need to find the results via a query you could use....

SELECT name, value
  FROM v$parameter
 WHERE name = 'max_string_size'
like image 20
Ian Carpenter Avatar answered Oct 24 '22 04:10

Ian Carpenter