Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

HOW TO CHECK DB CHARACTER SET? 1

Status
Not open for further replies.

viztek

Programmer
Nov 7, 2000
30
IN
Hi,

tell me how can i check what character set my db has.

tell me sql command or solme other way to know that.

thanks,
Viztek
 
SELECT * FROM V$NLS_PARAMETERS;
or
select * from nls_database_parameters;

NLS_CHARACTERSET record will display the character set of the database.
Talent is what you possess;
genius is what possesses you

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top