Search
 
SCRIPT & CODE EXAMPLE
 

SQL

oracle parameter

-- SQL Plus:
SQL> SHOW PARAMETER

-- Request
SELECT NAME,VALUE,ISSES_MODIFIABLE,ISSYS_MODIFIABLE
FROM gv$PARAMETER
WHERE NAME LIKE '%processes%';
Comment

oracle parameter

-- NLS parameters (session, base, instance)
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 :: sql select inside select 
Sql :: add column in table 
Sql :: SQL Subquery and JOIN 
Sql :: sql ending with vowels 
Sql :: coalesce sql 
Sql :: get table column names sql 
Sql :: mssql server port 
Sql :: postgres create database if not exists 
Sql :: array of objects sql 
Sql :: delete * from where id = 1; 
Sql :: auto increment in postgresql 
Sql :: select all tables linked server sql 
Sql :: Which MySQL data type to use for storing boolean values 
Sql :: oracle select json_table example 
Sql :: add column alter table default value 
Sql :: truncate table sqlite 
Sql :: how to join three tables in sql using joins 
Sql :: sql rename table 
Sql :: select mysql limit to 2 decimal places 
Sql :: EnvironmentError: mysql_config not found 
Sql :: sql pivot rows to columns 
Sql :: create unique constraint postgres 
Sql :: sql select whole row max column 
Sql :: sql like case sensitive 
Sql :: tsql edit table column 
Sql :: oracle drop type if exists 
Sql :: like query 
Sql :: sql describe 
Sql :: sql create cluster index 
Sql :: demmarrer un service mysql teminal cmd 
ADD CONTENT
Topic
Content
Source link
Name
7+9 =