Results 1 to 5 of 5

Thread: Dynamic and static parameters in database

  1. #1
    Join Date
    Apr 2008
    Posts
    264

    Dynamic and static parameters in database

    Hello sir,

    I am not so much familiar about the oracle database,I need to know about the parameters,what is the difference between the static and dynamic parameters in the oracle database.If I need to create a application and add these parameters and also can I create your own dynamic parameters or not.Please suggest me regarding this message.I will be thankful to you.

    thanks .

  2. #2
    Join Date
    Apr 2008
    Posts
    1,948

    Dynamic and static parameters in database

    PARAMETERS IN THE DATABASE :

    The parameters are plays a very important role in the database.It defines the structure of database.the parameters are stored in the database file named parameter files.

    There are two types of files exist in the database,Pfile and SPFILE both are used to define the structure of database.The parameters handles the database activity.If both are in the conditions of loss then you need to recover the database.

    Actually two files named parameter file and password files are not stored into the database.If it would be controlled by the database then the database can't be start because theses are the files which is responsible to start the database.

  3. #3
    Join Date
    May 2008
    Posts
    2,012

    Dynamic parameters in database

    Dynamic parameters in database

    The dynamic parameters are used when the database is in running mode.It also change the database property but during instance start up or in the processing.

    The dynamic parameters are issued with the ALTER statement and capable to change the mode and structure of the database.An example of the dynamic parameter is shown below which will change the structure and functioning of the database when the database is running means transaction is going on.

    Code:
    SQL> ALTER DATABASE ARCHIVE LOG;
    This is an dynamic parameter which is will change the database status and functioning of database.The database would be changed from NOARCHIVELOG to ARCHIVELOG.

  4. #4
    Join Date
    Apr 2008
    Posts
    2,005

    Static parameters in database

    Static parameters in database:

    The static parameters are issued when the database is in SHUT DOWN mode.The static parameters are issued with the file,named PFILE which contains some parameters and defines the current activity of the database.

    to define the static parameter,you have to open the file and write the parameter according to your own way to define or change the structure of database.

    The static parameter would be as follows:

    Code:
    LOG_ARCHIVE_START=TRUE
    This parameter is define in the Pfile and capable to change the status of the database.This parameter will start the archiving process of database.

  5. #5
    Join Date
    May 2008
    Posts
    2,297

    Issuing parameter for PFILE and SPFILEin database

    The parameters are written into the pfile as a text and the changes affects after restarting the database.

    But the SPFILE can not be change without issuing the dynamic parameter during run time of the database.There are so many parameters that can not be changed dynamically,we have to use the PFILE to make the chnages.In that situation,we perform the following this to make the changes in SPFILE using PFILE.

    First,open the PFILE and write the changes as a static parameter and save the changes .Now enter the following command to reflect the chnage into SPFILE :

    SQL> CREATE SPFILE FROM PFILE;

    NOTE: The database should be in shut mode to make changes in the SPFILE otherwise,it can occur the error message.

Similar Threads

  1. URL dynamic parameters
    By Bricklayer in forum Software Development
    Replies: 6
    Last Post: 02-08-2010, 10:30 AM
  2. Convert your Dynamic IP to Static IP address
    By Larry ward in forum Tips & Tweaks
    Replies: 2
    Last Post: 23-04-2010, 03:01 AM
  3. Static and Dynamic RAM
    By Harpreet Gaur in forum Motherboard Processor & RAM
    Replies: 5
    Last Post: 29-01-2010, 02:31 PM
  4. Combination of static libraries in a dynamic
    By Badrunath in forum Software Development
    Replies: 3
    Last Post: 27-10-2009, 06:48 PM
  5. Differences between static and dynamic routes
    By Raffaele in forum Networking & Security
    Replies: 3
    Last Post: 21-07-2009, 10:54 PM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
Page generated in 1,713,409,819.63760 seconds with 17 queries