Call now: 252-767-6166  
Oracle Training Oracle Support Development Oracle Apps

 
 Home
 E-mail Us
 Oracle Articles
New Oracle Articles


 Oracle Training
 Oracle Tips

 Oracle Forum
 Class Catalog


 Remote DBA
 Oracle Tuning
 Emergency 911
 RAC Support
 Apps Support
 Analysis
 Design
 Implementation
 Oracle Support


 SQL Tuning
 Security

 Oracle UNIX
 Oracle Linux
 Monitoring
 Remote s
upport
 Remote plans
 Remote
services
 Application Server

 Applications
 Oracle Forms
 Oracle Portal
 App Upgrades
 SQL Server
 Oracle Concepts
 Software Support

 Remote S
upport  
 Development  

 Implementation


 Consulting Staff
 Consulting Prices
 Help Wanted!

 


 Oracle Posters
 Oracle Books

 Oracle Scripts
 Ion
 Excel-DB  

Don Burleson Blog 


 

 

 


 

 

 
 

Oracle ALTER SESSION tips

Expert Oracle Database Tips by Donald BurlesonDecember 15, 2015

Question: :  What is the Oracle ALTER SESSION statement?  I know that ALTER SESSION can change Oracle parameters, but can you change any parameter with an ALTER SESSION statement?

Answer:  The ALTER SESSION statement can be embedded anywhere that you issue SQL like SQL*Plus, PL/SQL, or a program with embedded SQL.  

Not all parameters can be modified with an ALTER SESSION statement, but you can check to see if a statement is alterable by looking at the v$parameter view.  

You can see if any parameter can be changed with an ALTER SESSION statement by looking at the isses_modifiable column in the v$parameter view. 

This query will display all parameter that can be changed with an ALTER SESSION statement:

select
    name,
from
    v$parameter
where
    issys_modifiable= 'TRUE';

You can also see if any parameter can be modified with ALTER SESSION or if it is modifiable at the instance level:

select
    name,
    issys_modifiable,
    isinstance_modifiable,
    isses_modifiable
from
    v$parameter
where
    name='nls_date_format';

You may get an error if you specify an ALTER SESSION statement when the parameter only accepts an ALTER SYSTEM statement:

alter session set db_cache_size=200G
*

ERROR at line 1: ORA-02096: specified initialization parameter is not modifiable with this option

Also see these related notes on the ALTER SESSION option.

 
Get the Complete
Oracle SQL Tuning Information 

The landmark book "Advanced Oracle SQL Tuning  The Definitive Reference"  is filled with valuable information on Oracle SQL Tuning. This book includes scripts and tools to hypercharge Oracle 11g performance and you can buy it for 30% off directly from the publisher.

 

 

Burleson is the American Team

Note: This Oracle documentation was created as a support and Oracle training reference for use by our DBA performance tuning consulting professionals.  Feel free to ask questions on our Oracle forum.

Verify experience! Anyone considering using the services of an Oracle support expert should independently investigate their credentials and experience, and not rely on advertisements and self-proclaimed expertise. All legitimate Oracle experts publish their Oracle qualifications.

Errata?  Oracle technology is changing and we strive to update our BC Oracle support information.  If you find an error or have a suggestion for improving our content, we would appreciate your feedback.  Just  e-mail:  

and include the URL for the page.


                    









Burleson Consulting

The Oracle of Database Support

Oracle Performance Tuning

Remote DBA Services


 

Copyright © 1996 -  2020

All rights reserved by Burleson

Oracle ® is the registered trademark of Oracle Corporation.

 

 

��  
 
 
Oracle Training at Sea
 
 
 
 
oracle dba poster
 

 
Follow us on Twitter 
 
Oracle performance tuning software 
 
Oracle Linux poster