cancel
Showing results for 
Search instead for 
Did you mean: 

How to see if a R3 system is an ASCII system??

Former Member
0 Kudos

Hi all,

I must to do an heterogenoues system copy of an R3 4.6C from:

Source System: Windows-Oracle

to:

Target System: AS400-DB2

I'd like to known if the source system is an ASCII system....how to see it??

I must to see the NLS Parameter in V$parameter of the DB???

Any ideas??

Thanks in advanced

Accepted Solutions (0)

Answers (1)

Answers (1)

andreas_herzog
Active Contributor
0 Kudos

what do you mean by "ascii"? character set?

if yes, log onto system, use <sid>adm and call sqlplus:

> sqlplus /nolog

> connect / as sysdba

> select value from v$parameters where parameter = 'NLS_CHARACTERSET';

GreetZ, AH