Search
 
SCRIPT & CODE EXAMPLE
 

SQL

how to know the character set of an oracle databes

SELECT * FROM nls_database_parameters WHERE PARAMETER = 'NLS_CHARACTERSET';
SELECT * FROM v$nls_parameters WHERE PARAMETER = 'NLS_CHARACTERSET';
-- NLS_CHARACTERSET for VARCHAR2, NLS_NCHAR_CHARACTERSET for NVARCHAR2
SELECT * FROM database_properties WHERE PROPERTY_NAME
    IN ('NLS_CHARACTERSET', 'NLS_NCHAR_CHARACTERSET');
Comment

how to know the character set of an oracle databes

select * from database_properties where PROPERTY_NAME in ('NLS_CHARACTERSET', 'NLS_NCHAR_CHARACTERSET') 
Comment

PREVIOUS NEXT
Code Example
Sql :: mysql like case sensitive 
Sql :: mysql get all tables from a specific database 
Sql :: sql update insert and delete 
Sql :: check database size in gb mysql 
Sql :: Postgres - Login and connect as default user 
Sql :: sqlite3 import csv 
Sql :: postgresql stored procedure update table values 
Sql :: round in sql server 
Sql :: SQL server how to see user permissions on objects 
Sql :: between from sql 
Sql :: mysql declare variable 
Sql :: distinct sql 
Sql :: how to get date in sql 
Sql :: get week day from date in sql 
Sql :: select distinct postgres 
Sql :: mysql count by month 
Sql :: oracle list proxy users 
Sql :: sql server drop column 
Sql :: SQL Database backup history 
Sql :: oracle dba_dependencies 
Sql :: mysql wont stop 
Sql :: sqlite insert or update 
Sql :: sql max of two values 
Sql :: PL SQL VARRAY of records 
Sql :: QL HAVING Keyword 
Sql :: sql oracle update multiple rows 
Sql :: SQL Syntax of LEFT JOIN 
Sql :: psql select * from table 
Sql :: mssql-cli usage 
Sql :: select into 
ADD CONTENT
Topic
Content
Source link
Name
8+3 =