Comments
Sort by recent activity
actually it is happening with my char fields also / comments
actually it is happening with my char fields also
FYI, I'm using v1.0.0.667, and only scored 1120 on Oracleoids, but still trying... / comments
FYI, I'm using v1.0.0.667, and only scored 1120 on Oracleoids, but still trying...
I retrieved the fields as in the following query: SELECT
column_name
, data_type
, data_length
, character_set_name
, char_used
, char_col_decl_length
, char_length
, nls_charset_decl_len(data_length, nls_charset_id(character_set_name)) decl_char_len
FROM all_tab_columns
WHERE ...
The correct database returned the following results:
ID VARCHAR2 50 CHAR_CS C 50 50 50
The incorrect database returned the following results:
ID VARCHAR2 150 CHAR_CS C 150 50 150
In Oracle SQL Developer, and likely in the scripts used to create this table in both databases, both databases show this column as varchar2(50 char). The "50" seems to only match if the "char_length" value is used.
Every varchar2 column in every table has this problem. The "char" fields seem to be ok. / comments
I retrieved the fields as in the following query:SELECT
column_name
, data_type
, data_length
, character_set_name
, char_used
, char_col_decl_length
, char_length
, nls_charset_decl_len(data...