Question about SPFILE on windows

10g R1, windows 2003 server.
From what I understand, the oracleservice<sid> with autostart TRUE will use the PFILE and not the SPFILE. I know I can redirect the init<sid>.ora to the SPFILE but is it possible to just null out the registry entry ORA_<sid>_PFILE to force it to use just the SPFILE?                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

ORA_%ORACLE_SID%_PFILE: Location of the initialization parameter file.
Default Location: %ORACLE_BASE%\admin\DB_NAME\pfile\init.ora
Default location and name:
The default location of init.ora is $ORACLE_HOME/dbs> on unix and %ORACLE_HOME%\database on Windows. On Windows, the location can be changed by changing ORA_%ORACLE_SID%_PFILE.
The default name for the file is init$ORACLE_SID.ora (unix) or init%ORACLE_SID%.ora (windows).
However, it is possible to start the database with another init.ora file than the default one. In this case, there is no way to determine which init.ora was used when the database is running (at least up to Oracle 9i).

Similar Messages

  • Questions about using Styles Window for formatting a book in Apple Works.

    Help says "You can create your own styles in any document type." Not clear on how to do that.
    I wish to have one Style or group of Styles associated with one document of say 500 pages for a book. Each chapter Heading. as a single column layout, is separated by Section Breaks from previous and following text in 2 column layout.
    Question 1. How do I make Styles window settings (Edit/Done) specific for this entire document? Can I edit settings in Styles window and have them remain specific and locked to this particular document? Or are the Styles window settings constant across all documents?
    Question 2. (If Styles window settings are not specific and locked to this document) Do I need to make a NEW Style for each purpose within the document, as in Book Heading, Book Subheading, Book Body, Book special paragraph style, and etc.
    Question 3. When importing multiple sections of the work (by copy and paste) from other AW documents how can I have the imported text follow the book’s Style settings (and vice versa how to keep tab settings that are specific in some areas). Sometimes the imported work refuses to conform to the Book document’s style say line spacing for instance.
    Thank you
    Hilary Fish
    iBook G4 Mac OS X (10.4.8) AppleWorks 6.2.9

    Hi Hilary,
    I haven't used styles enough to give definitive answers to your questions, but I'm sure others will join in and correct any errors in what follows.
    A "Style" is essentially a set of paragraph level format settings that can be collectively applied to a paragraph or contiguous set of paragraphs as a set, rather than having to apply each attribute individually. Once a style is applied to various parts of a document, changes made to the style specification will apply to every part of the document to which that style has been applied.
    AppleWorks also includes two other types of Styles—Outline styles (Diamond, Harvard and Legal), used to identify hierarchical levels of paragraphs, and Table styles, used to format tables.
    Question 1: From the Help article "Using Styles":
    You can copy the collection of all the styles available in a document and make them available in another document. This is called exporting and importing a stylesheet.
    I read this as saying that styles you create are specific to the document in which they are created, but may be exported to other documents. "Other documents" would includes documents saved as templates, which could be used to create the various sections of a book.
    Question 2:
    As the set of styles is specific to the document it is created in (or into which it is imported), you can probably leave "Book " off the names of the styles (but may decide that leaving it on makes it easier to know what the styles are for). You will need to use an existing style or create a new one for each purpose within the document.
    Question 3:
    Copy copies the text AND formatting of the selected material.
    Paste pastes the text AND formatting of the selected material.
    Paste also inserts the pasted material into the target document at the insertion point. All of the pasted material goes into the same Section. If the pasted material includes a section break, then a new section will be created in the target document.
    If you export the set of styles from the master document and apply them to the parts of the source document before transferring the material to the master document, I suspect the formatting will be carried over.
    Another possibility is to leave the source document with no formatting at all beyond paragraph breaks, and to apply the formatting (styles) after transferring the text.
    Regards,
    Barry

  • File Saving.. question about Mac and Windows..

    Hi all!
    Just a quick question, is there anything that needs to be considered between saving a file from a java application on either Mac or Windows? Or does java "do" the work and I don't have to worry?
    So far I saved some text from using my application on a Mac but havent got to a PC yet, and would rather make the changes now..
    Thanks

    FYI, this is just on my iphone, not when I view through the web or on my iPad. This is how it looks on my iPhone though... 2 iCloud accounts? Please help.

  • Disregard my previous question about downloading the Windows version onto a disk. My friend was able to download it herself with dial-up.

    Earlier today I asked if it would be possible to download the Windows version of Thunderbird onto a disk using my Mac. My friend just called up and said she successfully downloaded it herself. Sorry for the false alarm.

    all communication on this can be located here:
    https://support.mozilla.org/en-US/questions/1008956?esab=a&s=&r=0&as=s

  • Question about pop up windows

    Every time I log onto the solaris system at my college, there are about 25 windows that pop up. I can't do anything else until I've cleared them all off of the screen, because they slow down the computer. If anyone can offer any help to get rid of these things, I would greatly appreciate it. Just remember that I'm not a computer savvy person in the least, so the simpler the explaination, the better.
                             Thanks again!,
                             Heather

    What kind of windows are they? What do they say?

  • Question about resizing a window

    hi,
    i have a null-layout window which is resizable. the origin size is e.g. 500x300. my question: how can i manage it that resizing is only possible up to specific values for height and width, e.g. 300x150? in other words: i want to define the smallest possible size to which my window could be minimized.
    thanks for every advice!
    kind regards,
    reinhold

    hi and thanks for your replies!
    sorry, i think that the desciption of my problem was not exact enough. here a second attemt: my frame is an input-mask with (for the time being) five buttons on the right side ("add", "edit", "clear", "update" and "close"). the first (upper) three buttons move their x-position dynamic when the frame is enlarged in width. they have a fixed y-pos. the lower two buttons move also dynamic: when the frame is enlarged in width they behave as the upper three buttons but when the frame is enlarged in height they change their y-pos dynamic to the frame's height. so they 'move away' in y-pos from the other three buttons. my first problem was, that when i reduce the frames height then the lower two buttons can be moved over the upper three buttons. i have solved this with the following componentListener:
    contentPane.addComponentListener(new ComponentAdapter() {
        public void componentResized(ComponentEvent event) {
             // position of the upper 3 buttons:  x-pos dynamic to frame.width, y-pos. fixed
             addButton.setBounds(event.getComponent().getWidth()-120,15,100,20);
             editButton.setBounds(event.getComponent().getWidth()-120,45,100,20);
             deleteButton.setBounds(event.getComponent().getWidth()-120,75,100,20);
             // position of the lower 2 buttons: x-pos dynamic to frame.width, y-pos dynamic to frame.height
             updateButton.setBounds(event.getComponent().getWidth()-120,event.getComponent().getHeight()-60,100,20);
             closeButton.setBounds(event.getComponent().getWidth()-120,event.getComponent().getHeight()-30,100,20);
             // check minimal frame.height (165). if reached, fix y-pos of the lower two buttons
             // so they cannot be moved over the upper three buttons     
             if (event.getComponent().getHeight() <=165) {
                 updateButton.setBounds(event.getComponent().getWidth()-120,105,100,20);
                 closeButton.setBounds(event.getComponent().getWidth()-120,135,100,20);
    });    that works fine, but my next (and main-) problem is, that i want to make it possible, that -if the height of 165 is reached- the BORDER of the frame could not be downsized anymore so that all 5 buttons remain allways visible. therefor i've found no solution in the forum's threads.
    thanks for all tips!
    reinhold

  • Question about FireFox Hello - window view

    Hi!
    I have a question concerning FireFox Hello.
    When I invite somebody to a conversation, 'small window' view is enabled (I mean video conversation is shown in small window in the left bottom corner of my browser).
    On the other hand, when I was invited, the conversation was displayed in whole tab.
    Is there an option to choose / change proper view?
    Thank you in advance.
    Greetings!

    When you've got the small window, you can expand it out to a separate window and you can then resize it however you wish. See the image below - its the arrow that sits next to the X and points to the top-right.
    You can't currently put the tab into the small window, although we are currently discussing using the same small window UX in future versions of Firefox so you won't have the tab view (but you will be able to pop-out etc).

  • Question about 23" ACD, windows XP, Bios & AGP card

    I bought a 23" ACD for my wife's computer, not realizing that an issue with displaying the BIOS existed. ( We Mac users are deprived of messing with BIOS, fortunately).
    Two questions.
    As the last thread about this is nearly a year old, is there anyone out there with an AGP card that successfully sees the BIOS on boot-up and has a card useful for intensive PowerPt use. Could you please post the exact card used.
    And, anyone care to explain why some cards cannot show the BIOS on boot-up while others can.
    thanks in advance.
    PB_G4   Mac OS X (10.4.6)  

    No takers?

  • Question about CS2 on Windows Vista 64 bit

    Hi! I am having the following problem with trying to use CS2 on a new machine running Windows Vista (64bit). Can anyone shed some light or suggest a solution? Thanks!
    I recently tried to install my CS2 suite on an HP G70t, running 64-bit Windows Vista. I installed, uninstalled, and installed again the CS2 suite. The installation goes OK, but when I start the programs, Illustrator simply shuts down, InDesign gives an error message that the serial number is invalid, and Photshop gives the followng error message: "Your Photoshop username, organization, or serial number is missing or invalid. The application
    cannot continue and must now exit. " I verfied my activation and registration with a phone call to HP Customer Service --these are fine. I tried to use the Adobe web support, but they refuse to provide any assistance for CS2.

    Thanks, Michael. I had read in one of the Adobe documents that although CS2
    didn't support Vista, it had been reported that it did upload and work with
    minimal problems. Perhaps that just isn't true.
    Appreciate your response.
    Tom
    Quoting Michael Kazlow <[email protected]>:
    CS2 is not Vista compatible no less Vista 64 compatible.
    >

  • Question about oradim and windows services

    Hello.
    I have a db instance on my W-XP Pro machine that was created with this command:
    oradim -new -sid <my_sid> -startmode m -pfile <my_pfile>
    Since the creation I only used to need to start the windows service in order to work with the db.
    I decided to delete the instance.
    oradim -delete -sid <my_sid>
    Afterwards I recreated the instance:
    oradim -new -sid <my_sid> -startmode m -pfile <my_pfile>
    And now I have this strange situation:
    First I need to start the windows service (although it does not startup the db) and then starting the db with sqlplus.
    Would it be possible restoring to the initial situation?
    Thanks in advance.

    Did you tried changing the database startup as Auto
    oradim -edit -sid <my_sid> -startmode auto -SRVCSTART
    systemThanks.
    Although the above solution is working ok, I am also trying your solution but it seems there must be a syntax error:
    D:\>oradim -edit -sid <my_sid> -startmode auto -SRVCSTART system
    DIM-00036: Ha introducido una opci¾n no vßlida para el comando -DELETE
    D:\>oradim -edit -sid <my_sid> -startmode a -SRVCSTART system
    DIM-00003: Falta un argumento para el parßmetro
    (I am sorry but I do not understand all the oradim options).

  • Question about "Apply Now" window in Photoshop CS6

    Is there a way to turn off such warning or notification windows like the "Apply Now" Yes or No window that appears after certain changes, such as resizing an image? Also frustrating that I have to reselect the Select tool in order for the change to take place. thanks for any help. I am a former Elements 8 to CS6 user, so I may be missing something.

    Never having used a discussion board before, I am not sure how to even make a response to yours, but let’s see if this works. If I am in a .psd file, and say I resize an image…a photo. In order to make the resize take effect, I cannot just click my cursor onto another area of the file, as it won’t release that particular layer I am on. I have to go back to my tool box and select the Pointer Tool or select too again. Once I do that, Photoshop sends up a window asking if I want to apply my changes…every time. Does this make sense?

  • Question about change in Windows File Explorer in 8.1

    Windows File Explorer in Windows 8 (and previous releases) would display an icon if the file had the offline attribute set.  Windows 8.1 File Explorer does not show an "offline" icon if the file's offline attribute is set.  Is there
    a way to set at option to get File Explorer to display this icon?

    Hi Ed,
    The Win8.1 forums are over here:
    https://social.technet.microsoft.com/Forums/en-us/home?category=w8itpro&filter=alltypes&sort=lastpostdesc
    Don't retire TechNet! -
    (Don't give up yet - 13,225+ strong and growing)

  • Question about 64 bit windows

    Hey all,
     I just received the disc for Win64 bit and have not been able to locate 64 bit drivers for my K8n Neo2 Plat. Is this because there are none or I am looking in the wrong places? If I am lookin in the wrong spot could someone direct me to the correct area?  Thanks in advance  

    hope this helps http://www.short-media.com/download.php

  • Thoughts about the bin window - bugs or features and workarounds...

    Hi there,
    I really have big toubles using the bin window. It is even worse in OSX.5 (the only thing I don't like with OSX.5 and Logic8!).
    There are some Problems:
    1. I can't move any audio-files to wherever I want them to without Logic is copying them back into the audio-folder by saving the song. The problem is that I want Logic to copy imported audio files into the audio-folder but if I change something manually Logic should remember that without working against me. So for example: I am bouncing a lot of audio into the bounce folder. In Logic 7 all the finished bounces were located there on the hard drive. Easy to find and to organize. But in Logic 8 they are moved to the audio-folder and I have to search very carefully which files I want to send to my client. That's the biggest source of trouble for me right now.
    2. If I am making groups, Logic is sometimes copying even that audio-files back into the normal audio-folder. The problem here is: sometimes. I really have no idea what the problem is. Sometimes just some audiofiles are staying in the group (on the hd) for a couple of Logic-saves and then are moved back at the 10th save or something.
    3. I am not able to organize my groups and audio files very well. So if I have group that always is shown on top of the bin window and I have a audio-bounce called "zoo" it is the last one in the list. Then I have to move it the whole way up to the group. That costs me about a half our per day. Way too much. There should be some kind of easier handling. For example a second window for groups or something. The next one is that I have to call the group something like 001AASFX or ZZZ_SFX so that I am able to find it fast enough in the finder. It was so much easier to go the bounce folder in Logic 7 days.
    4. The hide-regions keycommand was unstable with OSX.4.10 but now with OSX.5 it is not working at all. If I choose a audiofile in the bin window and hit the standard keycommand for hiding regions just the region for that audiofile is hiding and instantly shown again. I want to have a shorter way to move my bounced files into the group that is the whole way up to the list's beginning.
    So I wonder if that are new features or if it is really buggy. I am not able to work with that structure right now and with that kind of unstable location behavior. Are there any workarounds, tips, tricks? Is there anyone who feels like me? May I hope for a update?
    That's it
    Xcell
    Message was edited by: Axel Rohrbach

    Hey Jim,
    thanks for the support. Seems to be something Apple has to work on. There are some posts and questions about the bin window in every forum I know but there is never a "this is not want we want and there are bugs" - thread. In fact the whole Logic 8 structure with the one-window-gui is great and works much better than I expected. So it is no general "what the **** are they doing"-thing
    Nevertheless, is there a way to get this to apple? I don't know if they are aware of these problems and perhaps the testers are making music with one bounce and that's it. Just one file is not that difficult to handle, organize and to find. But there are other users working in different ways (like us I think).
    @ David: I am sorry but you are wasting time and thread-space. If you don't say anything if you do not feel comfortable nothing will change. You are not able to let it rain in Austria (yet) but there are real guys working at apple and it's not a kind of wonder that there is logic at all. So am trying to discuss here something and hope for any reaction or attention and don't need any "go deeply into your self and you will find a way"-stuff. Thanks anyway to bring god back to that forum.
    Xcell
    Message was edited by: Axel Rohrbach

  • About 64 bit window

    hello! my question about 64 bit window is that
    is it possible that in case of data corrupted we can copy files from 64 bit window secondary partition to DOS BOOTABLE USB drive of FAT16 ?
    as 64 bit window supports NTFS and FAT 16 is for smaller capacity then how can we done this
    kindly guide
    saiq@

    Sheng thought probably you understood something from Internet
    answers.microsoft.com
    Double Click on that link then it opens
    Toy cab also copy it and past in your browser
    Success
    Cor

Maybe you are looking for

  • In my account of iCloud my notes(that are in my iPhone) doesn't appear in my Mac

    I've make my copy of security iCloud account but nothing which is the problem?

  • Had a huge problem after upgrading to iOS 4

    After upgrading my iPhone 3G to iOS 4 I got a message on my iTunes telling me that "There's a problem with your iPhone"... Then when I tried testing it out, it was very laggy the slide bar takes a couple of times to get my iPhone open up and the lett

  • What type of firewire cable for 2006 iMac?

    I asked at Best Buy and they gave me 4pin, didn't work. I looked online and got 9 pin, it fits the MBPro we're trying to connect the iMac to but not the iMac. So I know I need a 9pin for the MBPro but what should the other end be? Everything I saw on

  • Customize Context Menu in Plot Legend

    I am using Labview 2014.  When I click (right or left) on the PLOT Style regions of a XY or waveform graph a menu a menu comes up.  I would like to modify what is in the menu, but  I cannot figure out how.  There are several posts about how to disabl

  • Only use HSB Color Picker in Illustrator?

    I only want to use the HSB Color Picker in Illustrator. Yet it always shows the RGB Color Picker by default. Is there a way to change this behavior? I'm using CS6. Thanks!