Modifying parameters in Initialization file

Hi,
I wanted to modify the control_files parameter in the Initialization file, whatz the SQL command to modify this ?
and also how can I start my database in nomount mode using Oracle Enterprise manager, please advise.
Regards
Faiz

Hello,
do you use a pfile or spfile ?
this may be of interest for you:
http://www.dbasupport.com/oracle/ora10g/spfile02.shtml
instead of executing the commands "mv control01.ctl db1_01.ctl" mentioned in there you have to do a copy and then add this new controlfiles in the created pfile.
another example is shown here (without converting to a pfile first)
http://www.dbforums.com/showthread.php?t=1626302
Message was edited by:
user582178

Similar Messages

  • Unable to upload the updated/modified Report template (rtf file) in siebel

    Hi,
    I am unable to upload the updated/modified Report template (rtf file) if already exists in the local database.
    Initially I have uploaded a rtf template, generated xliff, registered it and can view the report from the registered view. Later I have made few changes to the rtf template, in the reports template view, I have uploaded this. When i run the report in the registered view, I am able to see the earlier version and it doesnt show me the updated changes.
    I am using 8.1.1.3 siebel and BIP 10.1.3.3.1 on local.
    Looking at the metalink found "How To Upload Modified RTF Template Files In The Siebel Application For BI Publisher Reporting [ID 1136418.1]" which is related to server but I am working on local database
    Please find attached the template, xml file. can you please look into this and update me ASAP
    Thanks,
    RV

    Hi,
    Not able to find Report - Standard templates or Report - Custom templates view in Administration - BIP reports in Siebel 8.1.1.3?
    We have applied 8.1.1.3 patch on 8.1.1.0
    below are the steps followed
    Reports are not generated after 8.1.1.3 patch installtion.
    we have also followed to below steps mentioned for this issue in oracle support.
    "In order to resolve this behavior it is necessary to ensure that the 8.1.1.3 FixPack has been applied to the Siebel Tools installation. This will provide an additional .zip file in the REPPATCH folder of the Siebel Tools installation. Once this has been done please then follow the configuration steps as documented :
    change sysprefix to X_ before sif import and chage back to SBL_ after sif import.
    1) Import the sif files from Siebel\8.1\Tools_1\REPPATCH\12-1VMBCSV.zip
    2) Import the 4 SIF files in the following order:
    S_XMLP_REP_TMPL_02112010.sif
    SBL_XMLP_REPORT_SELECTION_FLG.sif
    Report Template BC.sif
    Report Template Registration Applet.sif
    3)Apply the DDL for table S_XMLP_REP_TMPL and compile repository
    Once the above steps have been completed the Selected Record flag will appear in the Report Template Registration views."
    we still not able to generated able to generate reports even after following above steps.
    Thanks
    Sean

  • Error reading setup initialization file

    I am trying to download and install
    J2SE v 1.4.2_04 SDK and
    J2SE v 1.4.2_04 JRE
    on a Windows XP platform SP1. The machine is a dual XEON 3.0 G machine with 1G of memory.
    I downloaded the software and saved it to my desktop. When I double clicked on either application I get a dialog box with the following message...
    "Error reading setup initialization file"...This message appears in a dialog box with no header and no lettering in the button to dismiss the dialog box.
    I tried looking through the forums and contacting SUN without any success....Can someone help me?

    Update to previous post
    I found the source of the error. Either the firewall server or proxy server that our site is using had altered the file. Both servers do some type of 'content' filtering for viruses, etc. To confirm this, I downloaded the file while at another site and then compared the two files. There was differences between the two files. The alteration wasn't enought to completely break the executable, but enough so that InstallShield couldn't run properly.

  • How to modify an existing xml file from java code.

    Hi
    I have worked on creating a new xml file from java code using xmlbeans.But if i try to modify an already existing file using java code I am unable to get errorfree xmlfile.
    For example if xml file(studlist.xml) is as below:
    <?xml version="1.0" encoding="UTF-8"?>
    <StudentList xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="D:\kchaitanya\xmlprac1\abc\Studlist.xsd">
         <Student>
              <Name>ram</Name>
              <Age>27</Age>
         </Student>
    <Student>
              <Name>sham</Name>
              <Age>26</Age>
         </Student>
    </StudentList>
    Now suppose i have set name to victor using student.setName,
    and set age to 20 using setAge from javacode,
    the new xml file is as follows:
    <?xml version="1.0" encoding="UTF-8"?>
    <StudentList xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="D:\kchaitanya\xmlprac1\abc\Studlist.xsd">
         <Student>
              <Name>ram</Name>
              <Age>27</Age>
         </Student>
    <Student>
              <Name>sham</Name>
              <Age>26</Age>
         </Student>
    </StudentList>
    <Student>
              <Name>victor</Name>
              <Age>20</Age>
         </Student>
    As observed this is not a valid xml file.But how can i modify without any errors?

    I know it's an old post, but I found this while doing a google search for something else, and don't like to leave it un-aswered
    Just in case anyone has a similar problem... In this case the new elements have been appended outside of the root element
    What you need to do is first get the root element and then append the new children to that, there are several ways of getting the root element, which depend on what you want to do with the elements you get back here's a simple (incomplete) way.
    // gets the root element of the specified file (code not shown)
    Element rootElement= new SAXReader().read(file).getRootElement();Then just append the new elements as below (this is non-generic code and would need to be modified for your situation)
    // write a new student element
    Element student = document.createElement("Student");  // creates the new student
    rootElement.appendChild(student); // ***appends it to the root element***
    Element name = document.createElement("Name"); // creates the name element
    name.appendChild(document.createTextNode("Fred")); // adds the name text to the name element
    student.appendChild(name); // appends the name to the student
    Element age= document.createElement("Age"); // creates the age element
    age.appendChild(document.createTextNode("26")); // adds the age text to the age element
    student.appendChild(age); // appends the name to the studentThen flush ya buffers or whatever and write the file
    Edited by: Dream-Scourge on Apr 23, 2008 11:10 AM

  • How to accessed,created and modified date of particular file in java

    Hi,
    I am facing one problem.
    I know how to get the modified date/time of file in java.
    but i don't know how to find created and accessed date/time of file in java.
    Thanks,
    Tejas

    I guess thats not possible in in Windows.
    But if u r trying it on a unix machine.
    You can use Runtime class to call exec on the command
    ls -l filename
    and then store the result in a file . And then take out the last modified time. But you cant get created time.
    Thats a clumpsy way i believe.

  • Target Directory & File Name parameters in Receiver File Adapter with ASMA

    Hi Experts..
    I have the following question....
    What am I suppose to inform in the Target Directory & File Name obligatory parameters in Receiver File Adapter if I am using ASMA to fill it? Is it any dummy value?
    Also, if you have any step by step guide/blog to forward on how to use ASMA in file adapter I will be greatful.
    Thanks in advance,
    Daniela

    You can give any dummy value in dir and file name... Just go through these blogs
    /people/michal.krawczyk2/blog/2005/11/10/xi-the-same-filename-from-a-sender-to-a-receiver-file-adapter--sp14
    /people/madanmohan.agrawal/blog/2009/05/20/combining-three-different-aspects-of-pi-asma-af-module-and-variable-substitution-in-one-shot

  • Installing JRE 1.4.2_04 error: Error reading setup initialization file

    I'm getting the following error when trying to install the Java 2 Runtime Environment.
    Diaglog box containing message: Error reading setup initialization file.
    I get this error on any of the installers for Java 2 Runtime Environment, Standard Edition 1.4.2_0x; Windows Platform; Windows Offline Installation and Windows Installation.
    I do not get this error with the installer for Java 2 Runtime Environment, Standard Edition 1.4.2.
    According to the InstallShield web site, this error is caused by an invalid setting for the MSI Engine Location property in the release. See Q105447 on the InstallShield web site Knowledge Base.

    I doubt that the root cause is the modification of the file because of the following:
    - I have a machine (XP) on which I downloaded j2sdk-1_4_2_09-windows-i586-p.exe and was able to run the install without issue.
    - I then mounted a drive on a windows2003 machine and copied the same file to it, the file size was exactly the same. When I ran the install, I got the error "Error reading setup initialization file" and the button with no text.
    - I searched through google and found this thread. I used pkzip to package the file and on the original platform, copied it to the 2003 machine and unzipped it. Once again, the same error showed up.
    The explanation for the error provided in this thread is not plausible because:
    - there are no firewalls/proxy in play in a file share
    - the same thing happens when the install is transferred through a zip. Something would need to alter the zipped file in transit without corrupting the zip itself for this explanation to be valid. This is simply not plausible.
    There is clearly something going on that has yet to be explained. An explanation of the problem and (even better) a workaround would be welcome.

  • How to check the last modified time of a file?

    Does anyone know how to use LabVIEW to check the "last modified time" of a file?
    Thanks.

    This works just fine here (Windows XP, LabVIEW 8.5.1).
    (Actually, if you look closely, it is off by one second. I guess the file properties dialog rounds in a different way )
    Do you have more information? (e.g LabVIEW version, OS, etc.). Can you show us the code that fails?
    Message Edited by altenbach on 06-27-2008 08:48 AM
    LabVIEW Champion . Do more with less code and in less time .
    Attachments:
    modified.png ‏33 KB

  • List of all parameters in parameter file

    Hi,
    Could you provide me the link to list of all parameters in parameter file for Oracle 10g.
    Thanks.

    http://download.oracle.com/docs/cd/B19306_01/server.102/b14237/toc.htm
    HTH...

  • Save measure parameters in a file

    hi all.
    I heve made a measurement program with a lot of parameters (more than 20 clusters of 20 variables...)
    I want to save all those parameters in a file, then, when I want to replay the measure, I just have to load/open the parameter file.
    How can I do this?
    I have found some solutions on the forum but there not very helpfull.
    Thank a lot in advance.

    one way is to use the "configiuration file vi's" found under the File I/O pallete. There are examples that ship with labView on how to use them. However, they do not work "as is" with complex data structures.
    The other option is convert all data to a spread sheet string and save using " Write to spread sheet file.vi", and reading them back using "read from spread sheet file.vi". This method is tediuos, but you edit the file manually in any text editor and do changes in case.
    The other option is to use the method "Get control values" and "set control values".
    Atached is a vi that uses this method.
    You can also save data to XML/file and read it back
    Attachments:
    Save_param.vi ‏51 KB

  • MDM initialization files

    Hi everyone,
    I am looking for MDM initialization files (xml,or xls) like currencies, UOM, Countries but not only in English, German and French also in Russian, Dutch etc.
    I appreciate if you send me a link or by mail ([email protected]).
    Best regards,
    Tommy

    Goerge,
    When you say "initialization files" you are talking about generating data for populate your Lookup Tables, Right?.
    In that case you have Sap Note 830864 that's give you a Zeta program for generating this data. So, considering that's is a Zeta Program you can add code to that program for getting  the texts in Russian, Dutch, etc.
    I hope that's help a little.
    Greetings.
    Please Mark Helpful Answers.

  • Why does iPhoto 11 show both modified and original photo files for items I've never modified?

    I have been looking through some recent photos and noticed that File > Reveal in Finder displays a modified and an original file for images I've never modified.  The originals are in subdirectory iphoto > Masters and the Modified files are in subdir iphoto > previews.  This appears to happen strictly with photos taken on my iphone.  Any ideas?  It's eating up a fair amount of HD space, for no reason as far as I can tell.

    #1 is patently untrue; I go in there all the time via File > Reveal in Finder so that I can grab images to pull into other applications, mail clients etc.
    Actually it is patently true - what you are doing is not supported, is not necessary and is dangerous - you should only access the photos using the supported methods
    #2 - I thought maybe that was it too but it's on images both vertical as well as horizontal.  There's even images in there that are just still frames of videos taken on iphone.
    2 - the most common cause of un-expected "modified" versions is having the autorotate feature set on your camera - this causes a rotate flag to be set so that when yu import iPhoto does that and as always keeps the original and keeps the rotated version as mopdified
    Given that you provided no information about your work flow one can only guess at common reasons
    The jpeg preview of each video is also a modified version - as to why both vertical (portrait) and horizonal (Landscape) photos would have modified versions more information would be needed - the most likely cause is that you have made changes of some sort to them
    LN

  • Palm Desktop 6.2 Install - "Error reading setup initialization file"

    I am trying to install Palm Desktop 6.2 and HotSync Manager on Win Vista Home Premium 32-bit.
    When I execute PalmDesktopWin62.exe I get a message “Error reading setup initialization file.”
     I am installing this to sync my Sprint Centro via usb.
     Thanks for any help
    Post relates to: Centro (Sprint)
    Post relates to: Centro (Sprint)

    I had this problem as well. I solved it by using an old Palm Desktop download instead of the one that Palm is providing now. My old copy was provided as a zip archive and the single file in the archive was named simply setup.exe. I guess the only difference between my old file and the file that Palm provides now has something to do with the installation software (it may be InstallShield; I don't remember for sure). In any case, if you are having this problem you might be able to find a usable file out there somewhere.

  • Create Heterogeneous Services Initialization File

    Hello, I am new to oracle as I am a student. I have installed Oracle Database 11g Release 2 Enterprise Edition.
    I want to use a Microsoft Excel file as a source file. In the help center it says that I must create the Heterogeneous Services Initialization File in a specific directory using these commands: HS_FDS_CONNECT_INFO = odbc_excel
    HS_AUTOREGISTER = TRUE
    HS_DB_NAME = dg4odbc
    My question is where should I run these commands ?
    If I have to do it in SQL Plus, how do I go to the specific path? When SQL Plus opens it just writes SQL> and I dont know how I can go to the path I want to so I can run the commands.
    I can go through the Command Prompt but it obviously doesn't recognize these commands.
    Any answer would be enlightening. Thanks.

    http://docs.oracle.com/cd/E11882_01/owb.112/e10582/loading_ms_data.htm
    You do not need to run the command from Sql*Plus
    HS_FDS_CONNECT_INFO = odbc_excel
    HS_AUTOREGISTER = TRUE
    HS_DB_NAME = dg4odbc
    You need to create initexcelsid.ora file in the OWB_HOME\hs\admin directory with the above listing

  • When i was partitioning my hard drive i ran out of power (so it closed in the middle of the process). now when i try to partition it says Couldn't modify partition map because file system verification failed.

    When i was partitioning my hard drive i ran out of power (so it closed in the middle of the process). now when i try to partition it says Couldn’t modify partition map because file system verification failed.

    You'll have to select the entire external hard drive by the hardware name itself and then apply a new partition table to it under the Partition tab of Disk Utility. Erase and format the drive.
    GUID for OS X.

Maybe you are looking for