Dynamic changes / init file?

Is there any way to bypass changing the init file to make a dynamic change?
I have to make a change for archiving, and I can't bounce the db right now.
10.2.0.3, HPUX itanium
changes that need to be made...
log_archive_config DG_CONFIG=(peregrine,swesc)
log_archive_dest_state_2 = DEFER
fal_client peregrine
fal_server swesc
I don't really want to just issue these at the command line unknowing if they would do as I want or cause adverse affects.
Is it possible to just rip the command, and update the file too? command line causing immediate change, and init file change will allow for keeping it when restarted...
Thanks

alter system set <parameter> = <value>;defaults to memory assuming that they are immediately modifiable
otherwise
alter system set <parameter> = <value> scope = memory;should do the trick as well. You probably want to use a spfile that way you can do both at the same time:
alter system set <parameter> = <value> scope = both;

Similar Messages

  • Dynamically changing flat file target location in OWB10gr2.

    Hi,
    We have a requirement where in we are suppose to load a flat file from relational tables and the location of the flat file needs to be configurable at runtime.
    Please suggest if this is achievable.
    Regards,
    PHD
    Edited by: user1662077 on Jun 17, 2009 10:08 PM

    See the post here for dynamically generating target file names using the OWB file operator as a target;
    http://blogs.oracle.com/warehousebuilder/2007/07/dynamically_generating_target.html
    Other techniques also include using a table function as a target.
    Cheers
    David

  • Updating flash from a dynamically changing XML file

    Creating a non-interactive status display: I want to have the
    flash display reflect data in a server-based XML-file. So far this
    is easy. But I want the display to change everytime the XML file
    changes-- in order to reflect status changes. I've used an
    XMLConnector and specified it and the trigger in the first frame.
    The Flash code catches and shows the XML values initially . But
    when I edit the XML file, the new values are never picked up by
    Flash- its almost as though the values are cached. How do I get
    Flash to regularly be updated from a changing XML file? I've also
    tried putting the trigger in a loop- but that doesn't work
    either.

    I DID find a solution with setInterval, but there is still a
    problem of a diffeent sort.
    When using XMLConnector, it appears that
    XMLConnector.trigger() is the thing that goes out and gets new data
    from the server. so:
    function checkForData():Void {
    myXML.trigger();
    <<handle new values of bound data>>
    var intervalID:Number = setInterval(checkForData, 10000);
    works very well by executing the trigger every 10000
    timeunits. This all works when run in the Flash Player. However, if
    I embed the thing in a webpage (with either FireFox or IE7 or 6),
    It stops triggering after the first time. Interestingly if I also
    run the Flash Player version, then the web version keeps updating,
    but stops if I kill the Player. So, I'm wondering: whats up with
    this?

  • Can we dynamically change the file name in dst file in Report 6i, Urgent!

    I am calling dst file to generate file with diffenet format.
    but name of the pdf file should generate dynamically everytime i call dst file,
    is there anyway to set the desname in dst file in Report 6i? Any solution,
    Thanks for your help

    Hi Roshan,
    Create two RKF's one for Normal Invoices and another for canceled invoices, for doing this you should have some characteristics or some status value which will identify the normal and canceled invoice.
    In the Normal Invoice RKF simply restrict the key figure with status restriction as Normal and pull the invoice amount as key figure. And in case of Canceled key figure you will set the status restriction as "canceled" and pull the invoice amount, now for canceled invoice key figure to show the negative value do the following,
    Go to RKF properties of canceled invoice and mark the check box +/- Reverse sign, which will show the negative amount.
    Regards,
    Durgesh.

  • Dynamically changing the file name using the submit button

    I am currently using a submit button to send information to myself from the user of the form. Is there any way to change the name of the file that is emailed as a .pdf file according to some type of parameter or data set that is collected in the form?

    Not programmatically. The attachment wil take the same name as the opened PDF. If you change the name of the PDF then it will change your form name as well. That cannot be done programmatically.

  • Dynamically changing Init Parameters

    Hi,
    We are going to upgrade our database from 10.1.0.5 to 10.2.0.5.
    The database is running on pfile.
    SQL> show parameter pfile
    NAME TYPE VALUE
    spfile string
    After running the preupgrade tool, got the below warnings.
    Update Parameters: [Update Oracle Database 10.2 init.ora or spfile]
    WARNING: --> "streams_pool_size" needs to be increased to at least 50331648
    WARNING: --> "session_max_open_files" needs to be increased to at least 20
    I dont find these parameters in the pfile. Is it possible to alter these parameters dynamically?
    Can i add these parameters to the pfile before upgrading the database?
    SQL> show parameter streams
    NAME TYPE VALUE
    streams_pool_size big integer 0
    SQL> show parameter session_max_open_files
    NAME TYPE VALUE
    session_max_open_files integer 10
    Thanks,
    Pradeep

    As noted, if values are not explicitly set, they assume default values - see the documentation
    http://docs.oracle.com/cd/B14117_01/server.101/b10755/initparams209.htm#REFRN10243
    http://docs.oracle.com/cd/B14117_01/server.101/b10755/initparams187.htm#REFRN10196
    HTH
    Srini

  • Dynamically changing the flatfile name..

    Hi friends,
    I 'm Getting data from 30 Flat files...all are with same structure but different data.. .. all these files are now in Application server...
    now i want to upload data into with a single DataSource and to ODS with process chains..
    so, how can i dynamically change the file name in Data Source level.. i saw previous threads.. in that.. through Routines.. we can solve this problem.. but I dont know ABAP code... so, can any one plz give me the exact code.. what i have to write...exact coding..
    <b>
           I already post this question in forums.... but evry one gave different options.. some  one gave the function module..
    BAPI_IPACK_CHANGE    and BAPI_IPACK_START.
      and some one gave  other function module.. like .. EPS_GET_DIRECTORY_LISTING
    i tryd for All these options.. but i'm not getting the exact solution... even i'm unable to pass the parameters also.. beacuse.. in that function what parameters can i pass....</b>
    can u plz suggest me the solution..
    Thanks
    Babu

    Hi  Friends,
      for the above requirement i had write the bellow coding in the routine.. it is working.. but the problem is.. it was loading  only  the last file..(30 th file  data only..)
    data : z1(50) type c,
             z2 type c,
             z3(50) type c,
             z4(50) type c.
             Z2 = 1.
       Do 5 times.
              z1 = 'C:\Documents and Settings\e10035\Desktop\'.
              z3 = '.csv'.
              concatenate z1 z2 z3 into z4.
              p_filename = z4.
              z2 = z2 + 1.
        Enddo.
    SO, CAN YOU PLZ SUGGEST ME.. when ever the file name was changing in the loop.. that automatically should load into the  PSA ..
    plz... plz.... help regarding this..
    Bbau

  • Dynamic action on File browse change event

    Hi Experts,
    apex version 4.1
    This is what i'm trying to do..
    i have a file browse control and a text field. when user selects a file, selected fiel's name (without file type extension) should be set to text field.
    I tried adding a dynamic action to file browse control's change event and within pl/sql Set Value logic i queried the wwv_flow_files and tried to return the file name it didn't work. i got no data found error. i assumed file is being inserted into wwv_flow_files when a page submission happens.
    In my second approach within the SetValue pl/sql logic i got the file browser control's (by directly accessing field, not by querying wwv_flow_files)value and did some string manipulation and tried to return only the file name. yet i got the same no data found error.
    Any idea how can i implement this ?
    Thanks in advance.
    - kurubaran

    Hi,
    I think PL/SQL approach will not work before you submit data to database.
    Have you think use $v function to get value from file browser?
    http://docs.oracle.com/cd/E23903_01/doc/doc.41/e21676/javascript_api.htm#BGBGDGIH
    Regards,
    Jari
    My Blog: http://dbswh.webhop.net/dbswh/f?p=BLOG:HOME:0
    Twitter: http://www.twitter.com/jariolai

  • Dynamically changing the name of the .dll file to load in call Library

    Our current model is to use dll files as "plug-in" modules for instruments and a top layer test step calls the appropriate driver dll.
    For instance
    the TestStep is called with the kenmore.dll passed as a parameter so the kenmore.dll file is loaded, the functions are registered and the functions are called.  Next the TestStep is called with whirlpool.dll as a parameter now the whirlpool.dll is loaded the functions are registered and the functions are called.  This works very well in our current CVI/LabWindows environment.  Now we plan to work with LabView, we wish to retain this model (as DLL files, there are advantages in our model for us).  We have not found a way to load these dll files from LabView without hard coding the path and filenames in.
    Any suggestions on how to dynamically change the path in the Call Library module, or another suggested method of loading the dll via LabView?
    Thanks,

    John Stuart wrote:
    Our current model is to
    use dll files as "plug-in" modules for instruments and a top layer test
    step calls the appropriate driver dll.
    For instance
    the TestStep is called with the kenmore.dll passed as
    a parameter so the kenmore.dll file is loaded, the functions are
    registered and the functions are called.  Next the TestStep is
    called with whirlpool.dll as a parameter now the whirlpool.dll is
    loaded the functions are registered and the functions are called. 
    This works very well in our current CVI/LabWindows environment. 
    Now we plan to work with LabView, we wish to retain this model (as DLL
    files, there are advantages in our model for us).  We have not
    found a way to load these dll files from LabView without hard coding
    the path and filenames in.
    Any suggestions on how to dynamically change the path in the Call
    Library module, or another suggested method of loading the dll via
    LabView?
    Thanks,
    As Ben has pointed out LabVIEW
    scripting may be a possibility but you are going with that in highly
    unsupported area. Also I happen to know that changing the library name
    of a Call Library Node through scripting has produced unsupported
    feature errors previous to LabVIEW 7.1 eventhough the method was there.
    And LabVIEW 8 hides the whole scripting business behind the license
    manager.
    Another approach at least if the different DLLs do not change to often
    thier functions and parameters would be to create a wrapper DLL. Have
    it a method that loads the desired DLL and links its functions to
    internal function pointers. Then when calling the actual function entry
    points just redirect directly to the correct fucntion through that
    function pointer. Since you are already working in CVI creating such a
    DLL should be only a matter of taking out a little bit of your already
    existing code and put it into a DLL project.
    Rolf Kalbermatter
    Message Edited by rolfk on 04-12-2006 07:40 AM
    Rolf Kalbermatter
    CIT Engineering Netherlands
    a division of Test & Measurement Solutions

  • How to change destination table dynamically in configuration file in ssis?

    hello,
            i have a package i am having one data flow task.in data flow task i have one source and one destination.source and destination are different.i have created xml configuration file by configuring source and destination connection
    strings.
    now i want to change destination in the same server to different database with out opening the package.i want to directly change in the config file.we can change it by modifying configured value proerty and intial catalogue value.but if the table is not
    existed in the changed database.how we can create it dynamically.

    HI jiri Neoral,
                       thanks for reply,as you said above process by this we can do change only databasename.if in my destination database,the table which i used in package is not existed,can we create it dynamically
    using config file.later changing table name is possible?
    For that you need to have a step in SSIS package prior to data flow task to check if table exists and if not create it
    You can use  execute sql task with query like below
    IF OBJECT_ID('TableName') IS NULL
    CREATE TABLE TableName
    Please Mark This As Answer if it helps to solve the issue Visakh ---------------------------- http://visakhm.blogspot.com/ https://www.facebook.com/VmBlogs

  • Changing init.ora file

    Hi,
    I need to add the utl_file_dir parameter to the init.ora file. Do I need to restart the database for the changes to be effective?
    My oracle version is
    Oracle9i Enterprise Edition Release 9.2.0.8.0 - Production
    With the Partitioning, OLAP and Oracle Data Mining options
    JServer Release 9.2.0.8.0 - Production

    Akhil  N K wrote:
    Does the below two statements means the same?No.
    1) creating an oracle directory using create or replace directory command This is referring to create a directory object in the database using the create directory command which should be mapping to a valid o/s level directory path.
    http://download.oracle.com/docs/cd/B10501_01/server.920/a96540/statements_58a.htm#SQLRF01207
    2) adding utl_file_dir parameterThis is referring to the edition of the init file and adding the parameter there .
    HTH
    Aman....

  • Dynamically change path to OLE file

    I want to dynamically change the path of an OLE object that I am inserting into a report (word document). I am going through all the steps in the help but it is not working. I am on Crystal XI. Has anybody successfully done this?

    Hi,
    I have the same problem with Crystal 2008.
    I have insert OLE object Insert -- Ole Object I search my file and click Collegamento, but if I modify the file in report I don't have a file changed, and if I change Path in a Picture Path I don't have change.
    I see always the same file than I have import.
    Sorry for my Inglish.
    Please Help me.
    Serena

  • Change iconic file  dynamically..

    Hello Friends ...
    I m working on menu .. I want to change iconic file dynamically..
    I m using for this
    if condition then
    Set_Menu_Item_Property('DW',ICON_NAME,'comp1');
    else
    Set_Menu_Item_Property('DW',ICON_NAME,'comp2');
    end;
    'DW' = menu item
    comp = iconic file name
    but iconic file not changing ..
    Thanks....
    Edited by: user10502250 on Jan 21, 2010 2:24 AM
    Edited by: user10502250 on Jan 21, 2010 2:24 AM

    Hello ...
    Thanx for reply ...
    abt form builder version
    orms [32 Bit] Version 10.1.2.0.2 (Production)
    Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production
    With the Partitioning, OLAP and Data Mining options
    Oracle Toolkit Version 10.1.2.0.2 (Production)
    PL/SQL Version 10.1.0.4.2 (Production)
    Oracle Procedure Builder V10.1.2.0.2 - Production
    PL/SQL Editor (c) WinMain Software (www.winmain.com), v1.0 (Production)
    Oracle Query Builder 10.1.2.0.2 - Production
    Oracle Virtual Graphics System Version 10.1.2.0.2 (Production)
    Oracle Tools GUI Utilities Version 10.1.2.0.2 (Production)
    Oracle Multimedia Version 10.1.2.0.2 (Production)
    Oracle Tools Integration Version 10.1.2.0.2 (Production)
    Oracle Tools Common Area Version 10.1.2.0.2
    Oracle CORE     10.1.0.4.0     Production

  • Determine database started in spfile or init file

    Hi,
    Anyone got any idea how to check whether the database
    is started using spfile or initfile...Beside this anyway to set it to start by initfile. So that every time when i isued SQL>startup, it will startup using the init file..
    Thank You...

    Why shouldn't you use the spfile ?
    Anyway, you can remove (or rename) it, using an OS command. Normally it is in $ORACLE_HOME/dbs (Unix/Linux) or ORACLE_HOME\database (Windows). In the same directory you must have the initSID.ora file, if you don' want to specify it when starting the DB up.
    Of course you know that without spfile you cannot do any permanent changes to dynamic parameters.

  • Mail adapter - how to dinamically change attachment file name in sending

    How can I dynamically change the attachment filename when preparig email to be sent? The attachment is an invoice in XML format and I have to put the invoice number into the attachment file name.
    Thanks in advance.
    Giuseppe.

    Hi,
    Go through this docs.
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/9e6c7911-0d01-0010-1aa3-8e1bb1551f05
    http://help.sap.com/saphelp_nw04/helpdata/en/6b/4493404f673028e10000000a1550b0/content.htm
    Hope these bloga are useful..
    /people/community.user/blog/2006/09/07/email-reporting
    /people/community.user/blog/2006/09/08/email-report-as-attachment-excelword
    /people/michal.krawczyk2/blog/2005/12/18/xi-sender-mail-adapter--payloadswapbean--step-by-step
    /people/prasad.ulagappan2/blog/2005/06/07/mail-adapter-scenarios-150-sap-exchange-infrastructure
    /people/michal.krawczyk2/blog/2005/03/07/mail-adapter-xi--how-to-implement-dynamic-mail-address
    https://www.sdn.sap.com/irj/sdn/weblogs?blog=/pub/wlg/1685 [original link is broken] [original link is broken] [original link is broken]
    /people/michal.krawczyk2/blog/2005/11/23/xi-html-e-mails-from-the-receiver-mail-adapter
    Thanks,
    Satya

Maybe you are looking for

  • AppV - Adobe Media Encoder not in default location?

    I'm virtualizing Adobe Captivate 5, which includes Adobe Media Encoder. During virtualization, when I launch AME, I get a message: Adobe Media Encoder is not being run from the default installation location. This is not a supported configuration." I

  • Error message when I try to restore and update my old 3gs for my daughter

    I am getting a message that says "sorry" we cannot continue with your activation at this time. Whats that mean......?, I dont have any # codes or anything. Im trying to set up an old 3gs for my daughter, and for now (until I get the sim card from at&

  • Access database query import

    I have some queries stored in databases from MS Access which I am trying to import into DIAdem.  I use the open with option for the database to select the query I wish to load and then chose selective opening to grab the columns of data I really want

  • Commodity produc - limited qty to sell for each customer = customer quota

    The thing is my recent prospects both are in Commodity product i.e. Sugar and Oil so they will have limited quantity or weight to sell product to each dealer a.k.a. customer quota Let say customer A can buy products upto 100 Kg per week in case of su

  • Function module to find/check saplogin password

    Hi, can any one tell me the function module to find/check  saplogin password. thanks