ASM Datapump directory location on OS level in 10g

Had configured database using ASM all the files controlfiles, datafiles, redologs, archivelogs are manegd by ASM, now I had also created the DB directory using ASM location can any one tell me that what is the exact location On Redhat Linux OS that I should copy the Datapump DUMP for Import Purpose.
For Oracle 10g

shayad wrote:
Had configured database using ASM all the files controlfiles, datafiles, redologs, archivelogs are manegd by ASM, now I had also created the DB directory using ASM location can any one tell me that what is the exact location On Redhat Linux OS that I should copy the Datapump DUMP for Import Purpose.
For Oracle 10gyou can place the dump file in any directory(os level) and create a new directory for dumpfile directory(sql) to import.
are you going to import in the same server same database or different server different database?
if it is different server you can copy and create a new directory for that database.
Create database directories
Execute the following commands to create a database directory. This directory must point to a valid directory on the same server as the database:
SQL> CREATE DIRECTORY dmpdir AS '/opt/oracle';
Directory created.
SQL> GRANT read, write ON DIRECTORY dmpdir TO scott;
Grant succeeded.
PS: Oracle introduced a default directory from 10g R2, called DATA_PUMP_DIR, that can be used:
SQL> SELECT directory_path FROM dba_directories WHERE directory_name = 'DATA_PUMP_DIR';
DIRECTORY_PATH
/app/oracle/product/10.2.0/rdbms/log/refer:-http://www.orafaq.com/wiki/Datapump

Similar Messages

  • Datapump directory location

    How can we find the dump file path for the database ??? which already created on the database ?
    the steps:
    CONN sys/password@db10g AS SYSDBA
    ALTER USER scott IDENTIFIED BY tiger ACCOUNT UNLOCK;
    GRANT CREATE ANY DIRECTORY TO scott;
    CREATE OR REPLACE DIRECTORY test_dir AS '/u01/app/oracle/oradata/';
    GRANT READ, WRITE ON DIRECTORY test_dir TO scott;
    is there any views to check for the existing path been created by the sysadmin earlier ? please help ..

    user13014926 wrote:
    asking many doubts..
    how can we i dentify the block curruption on oracle database ? how it rectified if we have user managed backup and we found some block curruption on the backup during recovery ??
    You should really start a new thread for each question, but http://download.oracle.com/docs/cd/B28359_01/backup.111/b28270/rcmvalid.htm
    >
    how can we get the database level fragmention details ? sorting by tablespace level ?desc dba_free_space;

  • What are the Oracle Home and GRID home directory locations for Oracle 12c (12.1.0.5) release

    Hello All,
    I plan to install and configure Oracle 12c Cloud Control console on a single standalone server and the version is Oracle 12.1.0.5. All the databases which are installed across in the entire farm/landscape are these versions:
    Oracle 10.2.0.3 Enterprise Edition
    Oracle 10.2.0.4 Enterprise Edition
    Oracle 10.2.0.4 Active DataGuard Enterprise Edition
    Oracle 10.2.0.5 Enterprise Edition
    Oracle 11.2.0.1 Enterprise Edition
    Oracle 11.2.0.1 Active DataGuard Enterprise Edition
    Oracle 11.2.0.3 RAC Enterprise Edition
    All Oracle databases across these versions will use the same version of Oracle Grid since ASM is used for all the Oracle database across Production/Test/Development databases. The OS is RHEL 5.8, RHEL 6.3, OEL 6.3 versions.
    When installing the Oracle 12c Cloud Control what is the Oracle and Grid Home directory location need to set to. Please let me know if there are any other additional configurations needed?
    Looking forward to hearing from you soon.
    Regards,
    Abhijit

    First off, the only EM CC release out right now is 12.1.0.2, not sure where you got 12.1.0.5 (DB Plugin maybe?).   
    Second, you're confusing EM CC homes with DB/Grid homes. 
    EM CC will need it's own Oracle Home (i.e. /opt/oracle/product/em_12.1.0.2).   You will need to provide repository database connection information, but EM does not care what home the db or grid is installed in.
    I would recommend reviewing the documentation as well as the references on OTN -
    http://www.oracle.com/technetwork/oem/install-upgrade/index.html

  • Multiple directory locations in Sender File adapter

    Hi All,
              I have a scenario where my single adapter needs to poll from 7 different directory locations. Is it posible to configure all seven sorce directory location in single sender file adapter.
    Regards,
    Xier

    Hi,
    I apologize for wrong information, actually I never tried but it's possible after seeing this.
    Note:821267
    11. File Sender: Processing Multiple Source Directories
    Q: Can the File Sender Adapter be configured to poll multiple source directories from a single channel?
    A: This functionality is available starting with XI 3.0 Support Package 14 as well as PI 7.0.
    raj.

  • Azure File Storage - Creating a directory at the root level using REST

    I have a Xamarin / iOS project, and looking to use Azure File Share as a back-end.
    With that in mind, I'm playing around with the REST API and have generally got things working with (a) Blobs and (b) Account-level access to Files.
    Specifically, I can successfully request a list of File Shares, so I have the general call structure worked out.
    However, I'm stumped about the exact incantation necessary to create a new directory at the root level of a share.
    I've tried the following three variants, but all result in Forbidden - Server failed to authenticate the request
    request.Host: myaccount.file.core.windows.net
    request.AbsolutePath: /myshare/subdirname1
    request.Query: ?restype=directory
    string to sign: PUT\n\n\n\n\n\n\n\n\n\n\n\nx-ms-date:Sun, 30 Nov 2014 16:07:25 GMT\nx-ms-version:2014-02-14\n/myaccount/myshare/subdirname1\nrestype:directory
    request.Host: myaccount.file.core.windows.net
    request.AbsolutePath: /myshare/subdirname1/
    request.Query: ?restype=directory
    string to sign: PUT\n\n\n\n\n\n\n\n\n\n\n\nx-ms-date:Sun, 30 Nov 2014 16:07:58 GMT\nx-ms-version:2014-02-14\n/myaccount/myshare/subdirname1/\nrestype:directory
    request.Host: myaccount.file.core.windows.net
    request.AbsolutePath: /myshare//subdirname1
    request.Query: ?restype=directory
    string to sign: PUT\n\n\n\n\n\n\n\n\n\n\n\nx-ms-date:Sun, 30 Nov 2014 16:06:16 GMT\nx-ms-version:2014-02-14\n/myaccount/myshare//subdirname1\nrestype:directory
    I did note that trying to get the contents of an (empty) root directory doesn't behave quite the way I'd expect
    request.Host: myaccount.file.core.windows.net
    request.AbsolutePath: /myshare/
    request.Query: ?resttype=directory&comp=list
    string to sign: GET\n\n\n\n\n\n\n\n\n\n\n\nx-ms-date:Sun, 30 Nov 2014 16:23:17 GMT\nx-ms-version:2014-02-14\n/myaccount/myshare/\ncomp:list\nrestype:directory
    Authenticates OK, but generates FAILURE BadRequest - The requested URI does not represent any resource on the server.
    Which is different behaviour from pulling the list of blobs from an empty container (returns 200 with an empty xml list of blobs.
    I've been through the File Service REST API document (dn167006) and found the azurestoragesamples on codeplex, but the former is unclear on working with the root level and the latter is from 2011 and predates File Storage.
    Any insights?

    First, thank you for the quick response and the suggestion about looking at the response content for the string to sign being used. I wasn't aware of that and obviously it's a fantastic resource for figuring this kind of stuff out.
    And what it immediately revealed is it wasn't some subtle oddity in my construction of the STS, it was that I was doing a client.GetAsync(...) and not a client.PutAsync(...). DOH!
    With that sorted, it was trivial to fix.
    In terms of the List Directories and Files, though, there's still a problem.
    FAILURE BadRequest - The requested URI does not represent any resource on the server.
       request.Host: myaccount.file.core.windows.net
       request.AbsolutePath: /myshare
       request.Query: ?resttype=directory&comp=list
       urlQuery: myshare?resttype=directory&comp=list
       string to sign: GET\n\n\n\n\n\n\n\n\n\n\n\nx-ms-date:Sun, 30 Nov 2014 18:40:04 GMT\nx-ms-version:2014-02-14\n/myaccount/myshare\ncomp:list\nresttype:directory
    The response XML is
    <?xml version="1.0" encoding="utf-8"?>
    <Error>
        <Code>InvalidUri</Code>
        <Message>The requested URI does not represent any resource on the server.\nRequestId:33d61aed-001a-0020-0cbd-51aea8000000\nTime:2014-11-30T18:40:04.9712797Z</Message>
        <UriPath>/myshare</UriPath>
    </Error>
    I originally thought it might be because the share was empty. However, I'm targeting the same share in which I created (apparently successfully) the subdirectory.
    So I'm still confuzzled on that.

  • OracleInventory directory location question

    During installation of any Fusion Middleware component for a fresh install,
    the installer asks for home directory for oracleInventory
    and once entered the installation proceeds.
    Please confirm if following is true
    1. This oracleInventory directory is used to keep log of the installs
    However, after deinstall and re-installing, the installer does not ask for
    oracleInventory directory. It uses the one previously used.
    2. Question: How does or where does the installer record the home directory for
    oracleInventory
    3. Question: If one were to chane this directory location for oracleInventory, for a fresh install,
    then how to guide the installer to use ask for a new location for oracleInventory?
    4. Question: Is it ok to delete the oracleInventory directory after an install is completed?
    Or would it affect normal operation of the installed product?

    I suppose it’s done to your individual requirement. There’s no reason why you can’t. We keep them on a different disk, but because of our daily SOCS checks and GRID notification email, we know when it’s getting full/etc

  • ICloud directory location on Mac

    Where does iCloud get the local computer's directory location from?
    I am working on an example application that utilizes iCloud and the directory that the application gets as the local iCloud directory no longer exists on this Mac.  In fact, I have even tried this on a completely different Mac, using the same iCloud userID, and it returns a directory name that never existed on that Mac!
    How can I force iCloud to basically refresh its settings on this Mac so that the data gets stored to a directory that actually exists?
    Thanks!

    Staci77 wrote:
    ..... I DO have 2 Apple ID's.  Can this be a problem?
    Quite possibly.
    Please try the following…
    First check that all your settings are correct, that contact syncing is checked on all devices and you are using the same Apple ID (system preferences > iCloud on a mac and settings > iCloud on a iPhone, iPad or iPod).
    Make sure the contacts you are adding are added to your 'iCloud' group and not an 'On My Mac', 'On My Phone' or other non iCloud group (you can do this by checking in groups), non iCloud contacts will not sync.
    If you are sure that everything is set up correctly and your contacts are in the iCloud group, you might try unchecking contact syncing in the iCloud settings, restarting your device and then re-enabling contact syncing.

  • Where does "Library" directory location belong.

    Where does Library directory location belong.  Had to move things around and not sure it got back in the right place.. /Users/forister/Documents .. forister is the administrator and only user now after trying out profiles.
    Then I wanted to install something and it said to put it in this location, but it isn't working.  Did I screw it up? 
    New Mac user.
    thanks.

    "~/Library" refers to a folder (directory) in your home folder, not in /System/ or elsewhere. (The tilde is UNIX shorthand for the current user's home folder.)
    You haven't said which version of OS X you are using but if it is Snow Leopard (10.6.x) or older, ~/Library should be visible in Finder views of your home folder (the one with the house icon). If you are using Lion, you won't see it there but you will see it from the "Go" menu if you hold down the option key when you click on that menu.
    Another way to get to the folder in Finder is to type Command + Shift + G, then type "~/Library/Services" (without the quotes) & press the Go button.
    As the Read Me for QuickFiles says, you may have to create the Services folder in ~/Library/ if it doesn't already exist. To do that, open ~/Library/ & type Command + Shift + N, then type "Services" to name the untitled folder, then press return.

  • System Profiler Content File Directory Location?

    Hello,
    I recently changed out my microprocessor in my PowerBook G3 because my old one was not working properly. All works fine now as it is smoothly running 10.4.11. However, I look in system profiler and the serial number has changed to the new microprocessor and does not match the sticker on the bottom on the machine. I managed to modify the "About This Mac" and "Login Window" serial number just fine, but I am stumped regarding system profiler. I did research and found that in 10.5, you can manually input the serial by finding a "SMBIOS" type file architecture in the extensions folder of System>Library. My question is:
    Where can I find the system files that give System Profiler its information. or Where can I find the equivalent in 10.4 to 10.5's SMBIOS system files.I appreciate any advice. Please indicate the entire file directory so I can easily find the location of the files I need to modify. Have a nice day.

    I suspect that System Profiler gets the serial number either by an internal call to the I/O registry which in turn has gotten it from the logic board firmware, or else directly from the firmware itself. If either of these mechanisms is correct, then there are NO files that carry the serial number, and therefore I think there is probably nothing you can change. This may be incorrect, but so far I've seen no evidence of a datafile that has this information.
    By way of background, here is my understanding. Hopefully I will be corrected if I am wrong:
    A file is a particular type of data structure, a collection of bytes assembled by the operating system in a specific way. Files usually reside on physical storage devices such as disk drives, and persist even after the computer is turned off. A user with sufficient privileges can generally access the information stored in a file.
    There are, however, other types of OS data structures in the "kernel," below the level of the user interface. These structures are not files - it is not that they are "hidden files" or "system files" - they are not files at all. These data structures exist in a protected space that users cannot alter.
    ioreg -l | grep IOPlatformSerialNumber | awk '{ print $4 }'
    I have no idea exactly "where" this piece of information is coming from, meaning the serial number that appears. It would be greatly appreciated if you could help me track down exactly where on the system the terminal command here is pulling this info from. It clearly gets it from some place, but it just may not be something we can see on the system as an object.
    According to the link I posted earlier, the ioreg terminal command directly displays (but cannot alter) the I/O registry. This data structure is not a file, and does not exist in the filesystem that you access via the GUI or via Terminal filesystem commands. Even worse, the link said:
    the Registry is not stored on disk or archived between boots. Instead, it is built at each system boot and resides in memory
    What this means is that the I/O Registry resides only in RAM - it is completely destroyed when you turn off the computer, and gets rebuilt when you start back up. And again, it is not a file.
    That's why I said "This doesn't sound promising"!
    there has to be a way to override the "connection" between the dynamic database itself and how it obtains information from it.
    If System Profiler.app does either read the I/O registry or read the firmware directly, then this instruction may be hardcoded in the app itself. I don't know this, but if so then I don't think there is any way to get it to look "somewhere else."
    Good luck, but I think this project is going to be "The Impossible Dream"

  • Searching file from directory located at http path.

    Hi All,
    I have made the program to search for a file in a directory and its subdirectories. This is working fine when my directory is located on local machine. But if the same directory is placed in HTTP path, the code fails to search a directory. Does anyone has idea how can i connect to site so as to access the directories. I used URL and URLConnection to read and write file to the site, and this is also working fine but when it comes to directories i find no solution. Please help.

    This works fine if i map http://flash/ on my C: and
    try to list files in directory C:\Mojo. Can you please
    tell how can i know whether the http server i am
    trying to access allows directory listing or not.
    Because if it does not i have administrator rights on
    the server and i can make the changes required.You can see if your Web server allows directory listing by simply
    typing in the URL you want to examine, inside your browser, and see if
    it shows you a directory listing. For instance, if you type in:
    http://flash/Mojo/
    in your browser's address bar, and you see a list of files in that
    directory, then your Web server supports directory listing.
    Note, though, that you can't use the File list() method to get a list of files.
    You'll have to make a connection, read the input stream, and then parse
    the filenames out of the HTML that the Web server returns. (You can see
    what the HTML looks like, by doing View Source inside your brower. That's
    what you'll get back from your Java program.)
    --Steve

  • CJ20N, auto-defaulted storage location at activity level

    Hi all,
    we have this problem at CJ20N (PS) screen.
    At activity level, componenent overview, if user keys in the material no, a storage location is auto-defaulted
    later we found out that if the material is extended to only 1 storage location,  the storage will be auto-defaulted at componenet overwview, is there any setting to prevent the auto-defaulted storage .. pls advice

    Hi,
    Carry out these IMG steps:
    SPRO 
    Logistic Execution 
    Basic Shipping Functions
    Shipping Point and Goods Receiving Point Determination
    Set Up Storage-Location Dependent Shipping Point Determination
    Assign Shipping Points According to Storage Location,,,,,,,,
    Put in your combination of Shipping Conditions / Loading Group/ Plant/ Storage Location/ Proposed shipping point
    Next time you create a Delivery document,, the system will pick up the above values from the Material/Customer master records and propose a Storage Location at line item number.
    I just tried it and it works, let me know if this works.
    Cheers,
    Mohammed
    Edited by: Mohammed Raheel on Jun 5, 2009 1:09 PM
    Edited by: Mohammed Raheel on Jun 5, 2009 1:11 PM

  • Get the file directory/location using JFileChooser

    Dear,
    How to get the file directory and it location with using JFilechooser after select the indicate file?
    Thanks

    There is an example at the top of JFileChooser's doc.
    http://java.sun.com/j2se/1.4.1/docs/api/javax/swing/JFileChooser.html

  • How to change Host directory location?(Problems with host and ed)

    Hi I'm having a problem with the commands Host and Ed. The problem being that when I run them they send back an error saying
    SQL>host
    /bin/gnome-terminal: No such file or directory
    or
    SQL> ed
    Wrote file /home/joe/Documents/editfile.sql
    /bin/gnome-terminal: No such file or directory
    The problem is that /bin/gnome-terminal is not the correct location for my terminal directory, /usr/bin/gnome-terminal is. Are there any suggestions how I can be able to change it? I'm running SQLPlus 11.2.0.1.0 and I'm using ElementaryOS(made from Ubuntu). Let me know if there is any other information needed to help fix this.

    This is not a SQL or PL/SQL language question  and thus off topic. As it is Linux o/s related, I think it is better suited for the Oracle Linux forum space.
    My guess is, from the little info posted, that your TERM environment variable is not correctly set.

  • Where is my Directory Location in my HHD ?

    when we do this :-
    CREATE DIRECTORY log_dir AS '/appl/gl/log';
    where suppose can i find this[b] directory '/appl/gl/log' in my Hard Disk ?!

    logical database directory when created goes directly to the oracle database and does not automatically creates the operating system physical directory you have to create the physical directory if that does not exist on the machine/server as to where your oracle database is installed at.
                    |          |
                    | DBServer |
                    |   unix   |
                   /     |      \
                  /      |       \
                 /       |        \
      |          |  |          |  |          |
      |   PC 1   |  |   PC 2   |  |   PC 2   |
      |ms windows|  |ms windows|  |  mac os  |
    assuming that you have the typical client server architecture illustrated above. on the upper level shows the server which is running on a unix operating system represents the machine as to where the oracle database is installed. on the second level shows the clients PC 1 and PC 2 are running on a windows operating system while PC 2 runs on a mac operating system.
    physical directory such as the /appl/gl/log should be created on the dbserver as the server where the oracle database is installed. it is in that machine where the physical directory is accessed by the oracle database.

  • Where to add new jsp reports directory location in path

    hi all,
    where can i add a another location to the path of jsp reports.
    currently jsp reports i have to copy at one location only i.e.
    OH/j2ee/OC4J_BI_Forms/applications/reports/web/examples/Tools
    like REPORTS_PATH env variable in OH/bin/reports.sh, can i add one more location to it.
    regd

    REPORTS_PATH cannot be used for locating jsp reports (when you are running web layout). You have to keep jsp files under document root that is OH/j2ee/OC4J_BI_Forms/applications/reports/web directory. You can create sufbolders under this directory and keep jsp files.
    For example if you keep jsps in a folder named 'myjsps' under web folder, URL to access the jsp will be
    http://host:port/reports/myjsps/test.jsp? .....

Maybe you are looking for