Search
 
SCRIPT & CODE EXAMPLE
 

SQL

oracle nls session

SELECT *
FROM (SELECT 'SESSION' SCOPE, nsp.* FROM NLS_SESSION_PARAMETERS nsp
      UNION ALL
      SELECT 'DATABASE' SCOPE, ndp.* FROM NLS_DATABASE_PARAMETERS ndp
      UNION ALL
      SELECT 'INSTANCE' SCOPE, nip.* FROM NLS_INSTANCE_PARAMETERS nip) a
PIVOT (listagg(VALUE) WITHIN GROUP (ORDER BY SCOPE) FOR SCOPE IN (
    'SESSION' AS "SESSION" ,'DATABASE' AS DATABASE ,'INSTANCE' AS INSTANCE));
-- ⇓ Test it ⇓ (Fiddle source link)
Comment

PREVIOUS NEXT
Code Example
Sql :: oracle nls instance 
Sql :: mysql full outer join java 
Sql :: mysql f# examples 
Sql :: How to disable foreign key checks ? 
Sql :: delete all rows from table mysql 
Sql :: day of week postgresql 
Sql :: check mysql version phpmyadmin 
Sql :: mssql get all table names 
Sql :: xampp mysql database server is not starting mac m1 
Sql :: What is the compatibility level of a SQL database 
Sql :: sql week commencing date 
Sql :: create table with primary key auto increment in sql 
Sql :: create another table from existing table sql oracle 
Sql :: access the postgres psql 
Sql :: NOT LIKE sql laravel 
Sql :: plsql code for deleting a row from nested table in oracle 
Sql :: oracle replace 0 values 
Sql :: column names in oracle sql 
Sql :: sqlite check if row exists 
Sql :: how to get slow query log in mysql 
Sql :: sysdate in sql 
Sql :: ora-00054 find lock 
Sql :: check all database size in gb mysql 
Sql :: mysql output csv 
Sql :: oracle sql group by date year 
Sql :: how to reset table in sql server 
Sql :: Incorrect format parameter 
Sql :: this is incompatible with sql_mode=only_full_group_by laravel 
Sql :: view t-sql mail configuration 
Sql :: print all records of table in mysql 
ADD CONTENT
Topic
Content
Source link
Name
3+6 =