How do the corrent initialization parameter

Hi all

By chance, I set an incorrect value for the parameter local_listener initialization and then tried to restart my database. Of course now the instance is does not start because the setting is incorrect and I get the message: ORA-00119: invalid specification for the system LOCAL_LISTENER parameter
My question is how can I go back to the parameter instance is running do not or start the instance (and then I'd be able to reset it) otherwise? I do not have an init.ora file set up and or a script to generate it, only the spfile < SID > .ora file.

Thanks in advance

sqlplus
/ as sysdba
create pfile from spfile;
-now to edit incorrect entry delete pfile
Create spfile from pfile;
startup
output

problem has been resolved

Tags: Database

Similar Questions

  • Looking for info on the _parallel_syspls_obey_force initialization parameter

    We regularly get the message about "nonconformity"-OEM

    ***************************CUT HERE***********************

    The database uses the non-standard initialization parameter parallelsyspls_obey_force, that has the value TRUE. Using non-standard initialization parameters can cause database issues that are difficult to diagnose.


    ***************************CUT HERE***********************


    We lack of RDBMS Oracle 11 g 2 (11.2.0.3.2) and Oracle Enterprise Manager Grid Control 11 g on Linux x 86-64. I searched on the usual sites (e.g. My Oracle Support, Oracle 11 g of baseline, this forum, AskTom and Google) and I'm not having any luck finding what parallelsyspls_obey_force is or what it does, and why, it is set to TRUE is apparently 'bad' (i.e. non-standard). Before I change to FALSE (I guess that will make happy OEM), I would like to know a little more about it.

    Can someone tell me what is this parm and what potential impact it can be if I set it to FALSE?

    Thank you!

    Jon

    Hi Jon;

    Please see:
    Violations of the false for political use DB initialization parameter not Standard PARALLELSYSPLS_OBEY_FORCE [ID 1378266.1]

    Respect of
    HELIOS

  • Relationship between physical memory and oracle initialization parameter

    Hi all

    I had been confused with the oracle initialization parameter setting.

    When set us the oracle initialization parameter. For example: Shared pool size, db_cache_size, target memory.

    What to consider about the physical memory to the operating system. If so, how to address the issue?

    Please notify. Thank you.

    SagiGal wrote:

    Review you mean that if the physical memory is 2gig, and you are ready to set the SGA greater than this, it will work or not, the answer would be that it would be a very bad thing to do. These parameters represent the SGA, which must be restricted in respect of the maximum physical memory available on the server.

    See the link given by Rp. From 10 g, it rarely need this kind of tuning.

    Aman...

    Understand. Thank you. Can answer me another question?

    SQL > show sga parameter

    VALUE OF TYPE NAME
    ------------------------------------ ----------- ------------------------------
    lock_sga boolean FALSE
    PRE_PAGE_SGA boolean FALSE
    very large integer SGA_MAX_SIZE 1152 M
    SGA_TARGET large integer 0
    SQL > show the spfile parameter

    VALUE OF TYPE NAME
    ------------------------------------ ----------- ------------------------------
    chain of SPFile

    in the above scenario, the database do not use EAMA and spfile
    If I wan to increase db_cache_size parameter, do I rebounce instance?

    Could be very easily answer this question for yourself by searching for the parameter in the docs. See here,
    http://docs.Oracle.com/CD/E11882_01/server.112/e25513/initparams052.htm#REFRN10033

    Its a dynamic parameter and does not need a db bouncing to change.

    Aman...

  • update the initialization parameter, spfile created on ASM

    Hello

    I would like to increase my database OPEN_LINKS initialization parameter.

    My created spfile ASM storage

    SYS@main1_1 > view the spfile parameter

    VALUE OF TYPE NAME

    ------------------------------------ ----------- ------------------------------

    +DATA_DG/main1/parameterfile/spfilemain1.ora string SPFile

    ASMCMD > pwd

    + MAIN1/DATA_DG/FICHIER_PARAMETRES

    ASMCMD > ls

    SPFile.333.833957263

    spfilemain1.ora

    ASMCMD >

    $ cat initmain1_1.ora

    SPFile='+DATA_DG/main1/parameterfile/spfilemain1.ora'

    Any help, greatly appreciated

    Thank you

    It does not matter where is the spfile.

    The command is

    ALTER system set open_links is... scope = spfile;.

    and bounce the database. IIRC, open_links is a static parameter.

    Note: Please do NOT change the spfile with a text editor, such as vi or vim.

    --------

    Sybrand Bakker

    Senior Oracle DBA

  • How to display the value of parameter of current session

    Hello

    How can a db user know the value of a parameter of the session, if he doen't have the privilege to access the parameters of v$?
    SQL> conn hr/hr
    Connected.
    
    SQL> show parameter QUERY_REWRITE_ENABLED
    ORA-00942: table or view does not exist
    
    SQL> alter session set QUERY_REWRITE_ENABLED=true ;
    Session altered.
    
    ...
    
    -- how can the user HR know the value of QUERY_REWRITE_ENABLED

    ahmedbaraka wrote:
    Hello

    How can a db user know the value of a parameter of the session, if he doen't have the privilege to access the parameters of v$?

    Like this:

    oracle@g5 ~]$ sqlplus scott/scott
    
    SQL*Plus: Release 11.1.0.6.0 - Production on Fri Nov 6 15:38:11 2009
    
    Copyright (c) 1982, 2007, Oracle.  All rights reserved.
    
    Connected to:
    Oracle Database 11g Enterprise Edition Release 11.1.0.6.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    
    SQL>
    SQL>
    SQL>
    SQL> show parameter query_rewrite_enabled
    ORA-00942: table or view does not exist
    
    SQL> set serveroutput on
    SQL> DECLARE
      2    parnam VARCHAR2(256);
      3    intval BINARY_INTEGER;
      4    strval VARCHAR2(256);
      5    partyp BINARY_INTEGER;
      6  BEGIN
      7    partyp := dbms_utility.get_parameter_value('query_rewrite_enabled',
      8                                                intval, strval);
      9    dbms_output.put('parameter value is: ');
     10    IF partyp = 1 THEN
     11      dbms_output.put_line(strval);
     12    ELSE
     13      dbms_output.put_line(intval);
     14    END IF;
     15    IF partyp = 1 THEN
     16      dbms_output.put('parameter value length is: ');
     17      dbms_output.put_line(intval);
     18    END IF;
     19    dbms_output.put('parameter type is: ');
     20    IF partyp = 1 THEN
     21      dbms_output.put_line('string');
     22    ELSE
     23      dbms_output.put_line('integer');
     24    END IF;
     25  END;
     26  /
    parameter value is: TRUE
    parameter value length is: 4
    parameter type is: string
    
    PL/SQL procedure successfully completed.
    

    So read the [Function GET_PARAMETER_VALUE | http://download.oracle.com/docs/cd/B19306_01/appdev.102/b14258/d_util.htm#sthref7801]

  • How to pass a single form filed with the second shape parameter

    Hi all,
    I get the custom form a requirment.already one, just added the button when the button on a new form opens, this form with a logical filed.here is the first form a single block dat filed pass the second shape parameter


    Kind regards
    Sandrine

    994418 wrote:
    Hi, HAMID

    Hi stephane
    Good here we solve you your problems. If you share the solution other people can get the same kind of help from you.

    Also when you check the option add any thread as a response, if it solved * [SOLVED] * to the left of your subject line.

    Hamid

    Mark correct/good to help others to get the right answers. *

  • Initialization parameter in the PB Toolkit

    The Pixel Bender toolkit allows us the input for the parameters in our core values. Unfortunately, it allows the range of values that you enter is frustrating... For floats, it requires all components in the interval [0,1] and for integers (ints) it falls in the range of [0, 100]. It's frustrating when I want to have a vector parameter in the form <-20-20-20 >.

    Please let us in our own values outside the current range. :)

    Thank you
    mwelsh

    Oh, geez - maybe - I should read through the entire specification before I open my mouth. :)

    For those who wonder, you can add the ; the metadata on parameter label.

    Thanks for the cool program,
    m

  • How to configure the engine JMX parameter in the administrative process?

    Hi all

    I installed OBPM10gR3 on the WLS 10 gR 3 clusting shell. OBPM Motors started successfully.

    There is an administrator of the server running on localhost: 10101, a Manager running on localhost:10103 server, another server managed running on localhost:10105.

    I wonder how do I set the engine JMX configuration in the Administration process. What port? 10101 or 10103,10105? How about the credentials, weblogic as the default user?

    I'm appreciated you can share me the configuration engine JMX in weblogic clusting administration process. Thanks in advance.

    Best regards
    Bill

    See below for the settings you need:

    Configuration of engine JMX management
    Host: (this must be just one of the servers in the cluster managed)
    Port: (port of the managed server you chose above)
    Main: FuegoWebLogicDeployer (create this user in weblogic first)

    Responsible for the deployment of BPM for WebLogic applications
    BPM Application deployeur URL: http://:/fuego/deploy/servlet/worker
    WebLogic Server or the Cluster name:

    Hope that helps,

    Mike

  • Is it possible to access the task flow parameter in the EOImpl.create () method?

    Hello

    Is it possible to access the task flow parameter in the EOImpl.create () method? In the affirmative, please let me know how to access.
    FYI... I have a CreateInsert < xxx > activity in the workflow, which, I believe, called the EOImpl.create () method internally. During the creation of the entity, I want to assign a default value based on the parameter of workflow.

    Thank you

    A way to pass parameters from workflow for the model is during the initialization of the workflow. To do this, you can create a prepare() method in the Module of your Application and call it from the workflow. By defining this method by default in your workflow, it will be called every time that the workflow starts. You can pass any task rate desired as the arguments of a function prepare() method. In the prepare() method, save the workflow of the values for parameters in the transient variables EO or VO. These variables will then be accessible in the create() methods.

  • ORA-25138: HASH_JOIN_ENABLED initialization parameter has depricated

    Hi all

    I'm migrating a database (9.2.0.7.0) from one windows server to another windows server. The goal I created 10.2.0.1 database.

    I copied the pfile file even the 9i database and when I put the command I get below error below

    ORA-25138: HASH_JOIN_ENABLED initialization parameter has been deprecated

    Please help me solve this. I searched in metalink, but there is no help.

    My pfile file contains more entries

    +###########################################+
    + # Optimizer +.
    +###########################################+
    hash_join_enabled = FALSE
    query_rewrite_enabled = FALSE
    star_transformation_enabled = FALSE

    Concerning
    Arun

    But is this going to affect my database anyway?

    If the current value is as shown below

    hash_join_enabled = FALSE

    How behavior does not change when it is deleted?
    DB did not begin with this option.

  • 'create an analogue' control by programming of the cyclical report parameter

    I need to generate a square wave and a programmable duty cycle in LabView (not SignalExpress).  I use 'Create an analog Signal' for a signal fixed duty cycle but I can't figure out how to get the setting of market factor to change it programmatically.  I was hoping for something like node property access but found that this works for objects on the front panel.

    Is it possible to dynamically change the cyclical report parameter in the "create an analog Signal?

    Fortunately, I found the Wave.VI place, what more accessible inputs for things like the work cycle, amplitude, frequency, phase and gradually - all the parameters of the desire of my heart.

  • The App initialization: when and where?

    In a recent update BB10, I noticed that, if an application is not fully initialize in the 5-6 seconds that newspapers appears:

    forensics_logworthy_state: fixing error 2, no such file or directory, bail

    And the app seems to hang.

    It took a while to figure out what is the code, but how long the code was running - which is the root of my problem. My application has significant amount of initialization to do work, the question is when and where is the best place to do this tedious work?

    I initialially but I had to leave the event loop start and I'd be sure but no, it wasn't the case, always down that has happened.

    Do I have to perform this initialization process in another thread? It is unwise to run this a lot of work in the context of the UI?

    Devs, how you initialize your portions of app NON-INTERFACE?

    I think you yourself have already given your answer, but yes the run in another thread.

    The processes of your time should be asynchronous and performance using one of the methods as QThread QtConcurrent threads...

    http://developer.BlackBerry.com/native/reference/Cascades/QThread.html

  • Set the values of parameter SPFILE for Oracle RAC

    Hello

    in the documentation:

    https://docs.Oracle.com/CD/E11882_01/RAC.112/e41960/admin.htm#RACAD815

    I can read:

    *. OPEN_CURSORS = 500
    prod1. OPEN_CURSORS = 1000

    If an another DBA executes the following statement, then Oracle database updates the setting on all instances except the instance with SID prod1:
    ALTER SYSTEM SET OPEN_CURSORS = 1500 sid ='* ' SCOPE = MΘMOIRE;


    So if you run the following statement on another instance, the instance with sid prod1 also assumes the new 2000 setting:
    ALTER SYSTEM SET OPEN_CURSORS = 2000 sid ='* ' SCOPE = MΘMOIRE;

    My question is:

    How Oracle will know that it is you run the NDDN statement to apply even to prod1?

    The syntax for these two ALTER SYSTEM are the same. Then why Oracle applies the second on prod1?

    In other words, why the output of these two statements is different with respect to the affected bodies? One is applied on all except prod1 and the next is applied to all included prod1.

    Thank you.

    Hello

    If you have 2 instance and run you the change of parameter with sid ='* ', which means changing this setting will affect the two instance...

    the two values in the instance will be changed.

    https://docs.Oracle.com/CD/B28359_01/server.111/b28286/statements_2013.htm -->> search for "SID clause allows you to specify the SID.

    This seems to be a bug in documentation...

    Bug 6530554 : ALTER SYSTEM SET SCOPE = MEMORY SID ='* ' UPDATE all INSTANCES

    Thank you

  • Help save a progress in the form of parameter from the point of view of creators

    I use the trial of Adobe Acrobat DC, I create a parameter form to help prepare forms, but my form is four pages long and very personalized.

    How to save this configuration of the form so that I can change the location of these fields and change the tab index and others at a later time? Any savings I have seems to be for the distribution to the end-user, than save my progress and come back to finish creating the form of parameter at a later date.

    Thank you.

    When you save the file, close Acrobat DC and then reopened, the fields are not visible, which is why I thought it didn't save it in a way that I could change in the future. However, I see now that if I open again, then click on prepare forms fields appear and can be changed later.

  • Problem of initialization parameter

    Hi all
    I use Oracle 10 g and spfile.
    Please, I would like to know that if it is possible when an initialization parameter P is not dynamic, these commands have the same effect (I guess p_value is a value that the parameter P can be set):
    First command: change the entire system P = p_value deferred;
    Second comand: change the entire system P = p_value scope = spfile;
    Thanks in advance for your answers.

    user639304 wrote:
    Hi all
    I use Oracle 10 g and spfile.
    Please, I would like to know that if it is possible when an initialization parameter P is not dynamic, these commands have the same effect (I guess p_value is a value that the parameter P can be set):

    You mean validated commands can be used to change the dynamic settings.

    First command: change the entire system P = p_value deferred;

    Depends on and you can find out by checking the column isses_modifiable of the parameter $ v

    Second comand: change the entire system P = p_value scope = spfile;

    Yes, it can be changed.

    Thanks in advance for your answers.

    Concerning
    Anurag

Maybe you are looking for

  • Satellite P855-335 has a disc Blu - Ray player?

    Hello, I was wondering if I can get any help on this one, I have recently purchased Satellite P855-335 and I was under the impression that he could read blue - ray disks, as it also comes with the option of 3D player. Now, I searched online for answe

  • NVIDIA graphics card does not work on T430S with Windows 8

    My T430S laptop running Windows 8 and has a NVIDIA graphics card. Somehow, I could never get into the control panel NVIDIA and received the error message below. I checked the setting in the BIOS and it seems that NIVDIA Optimus mode is not available

  • HP officejet pro 8620: trouble with 8.1 to Windows and hp officejet 8620

    Hi, we installed a new printer hp Officejet Pro 8620. We installed the complete package on a Windows 8.1 machine. Everything seemed fine, but suddenly our machine is not capable of printing on certain circumstances: -It cannot print from: (a) the not

  • Groups contact yet?

    I see several old posts on the inability to implement the Droid contact groups. Has there been anything new on this? I really need to send texts to a group of people and it is very heavy on the Droid. Also, is there a way to send a text more of 10 pe

  • Update of Compaq Presario CQ5110Y desktop PC

    I want to upgrade my Compaq Presario CQ5110Y desktop PC then I'll be able to watch TV Online (Football, shows, ect) with crisp clear picture and no gel (if possible, HD quality) I can do this? If so any suggestions on a decent type of video card and