where is the directory created?

I create a directory with the following command:

create or replace directory ' / tmp / ';

Where this directory created?

See correct syntax it:
http://www.MCS.csueastbay.edu/support/Oracle/doc/10.2/server.102/b14200/statements_5007.htm

The statement creates a database object, not an operating system/folder object. The purpose of directory data is not validated, it is just object pointing to a folder of the operating system, this file exists or is not unimportant for database, it creates the database object only.
You must create the folder in the operating system yourself. This command does not create the folder of the OS.

Tags: Database

Similar Questions

  • What or where is the directory? __

    What or where is the directory of a file, I need to copy and paste a file in the directory of the file.

    Hi trevor,.

    To find the directory of a file, you can follow these steps.

    (a) right click on the file > click Properties.

    (b) in properties, on the general tab locate the location of the file (the location is the directory of the file).

    Hope the helps of information. Please post back and we do know.

    Concerning
    Joel S
    Microsoft Answers Support Engineer
    Visit our Microsoft answers feedback Forum and let us know what you think.

  • where is the directory of documents in fire fox

    I have used IE before, but I switched to Mozilla Fire Fox. I'm looking for the directory Documents from Fire Fox so I can move documents
    Since the inside office

    Hmm, Firefox is a directory of Documents. If you need a place for items on your desktop, I suggest using your regular Documents folder (a Windows creates for you). To move documents, you can use Windows Explorer, I suggest to pin to the Windows taskbar. They shortened keyboard is: hold down the Windows key and tap the E key.

    About directories in Firefox:

    • By default, Firefox saves your downloads in your downloads folder. You can change this in the Options page if you wish: boot, homepage, tabs and download settings. But the internal list of downloads of Firefox won't show what Firefox has added to this folder, and not that you moved to the folder from your desktop.

    Overall, Firefox is more oriented to browsing websites that it is towards browsing the files on your computer. Due to security rules and differences in the way Firefox integrates with applications, I don't think that you will find it as useful as Windows Explorer for these purposes.

  • Where are the files created in Microsoft Visual C++ 2005 Setup logs?

    Hello

    Where are the installation saves the files created in Microsoft Visual C++ 2005? I checked the temporary directory and couldn't find the logs for Microsoft Visual C++ 2008.

    Thank you!

    Hi EugeneWhitlock,

    The installation files of all installed programs stored in the C:\Program Files location.

    I would also recommend to post your question in the MSDN forum:

    http://social.msdn.Microsoft.com/forums/da-DK/vcgeneral/threads

    Hope the helps of information.

  • for relaxation: where is the table created by the Wizzard users create in the APEX?

    Hello everyone and Tony in particular since it was followed and mentoring my progress on this.

    Well,.

    Here we have 2 things:



    (1) when the wizzard of Administration > database > manage users creates a user. Where is the table it creates? What name does have? Why is it not visible in the object browser? I need the name of this table to put it on my trigger (I called users_table)



    (2) how to do that whenever a user connects, his formerly generated by the trigger sequence is used by a State to extract personal data (it's sort of VPD) in this case would be, how do you know what surrogate key, we need to call. To do this, I think, the thing would be to request the: = APP_USER (that was created in step 1) and each APP_USER will surrogate that are associated with this key.



    I set up a simple trigger, but just the substring of the concatenation of the given username, the system randomly generated pwd up to 12 characters.



    CREATE OR REPLACE
    GENERATE_SEQUENCE RELAXATION
    AFTER INSERT ON USERS_TABLE
    FOR EACH LINE
    BEGIN
    insert into users_table (surrogate_key)
    values (SUBSTR (¦¦ username password), 1.12);
    END;


    but as I said, this users_table must be the table where the wizzard to create users stores its data,... .but where is this table?


    Thank you very much

    Alvaro

    Published by: Alvaroe on February 6, 2010 09:13

    Published by: Alvaroe on February 6, 2010 10:00

    Hello

    (1) create a table and then start filling in

    I think you need to have a custom table of your patients (and users), say,

    CREATE TABLE patients
      (
        "USER_ID"   NUMBER,
        "USER_NAME" VARCHAR2(100 BYTE),
        "FIRST_NAME" VARCHAR2(100 BYTE),
        "LAST_NAME" VARCHAR2(100 BYTE),
        "PASSWORD"  VARCHAR2(4000 BYTE),
        "CREATED_ON" DATE
        CONSTRAINT patients_PK PRIMARY KEY ("USER_ID")
      );
    

    you need to build customized in your appl authentication and do not use the Apex or Db authentication.
    To do this, you must do this table in the schema that is used in the analysis of your application's schema.
    And you need create the function custom_hash like this:

    create or replace
    function custom_hash (p_username in varchar2, p_password in varchar2)
    return varchar2
    is
      l_password varchar2(4000);
      l_salt varchar2(4000) := '55PSP4P78JLDQ2AMBXQ60DW9OW7G9Z';
    begin
    
    l_password := utl_raw.cast_to_raw(dbms_obfuscation_toolkit.md5
      (input_string => p_password || substr(l_salt,10,13) || p_username ||
        substr(l_salt, 4,10)));
    return l_password;
    end;
    

    (2) then build the trigger when it detects that I completed a line
    It generates this sequence AND inserts it into another table (as you say, I could not put it in the same table)

    users must register themselves?
    Or register?
    Then you must create the free registration form or a form where you fill in your table above users.

    I think that your user_name must be unique. Put a Unique about this strain.

    When creating the patient button is pressed, then the above table is filled (you must and name, user in the form fill password)
    You must calculate USER_ID, user_name, password and created_on, this can be done in the trigger

    create or replace
    TRIGGER patients_trg_bi
      before insert on patients
      for each row
    begin
    if :NEW.USER_ID is null then
        select patients_seq.nextval into :NEW.USER_ID from dual;
    end if;
    
    if :NEW.CREATED_ON is null then
        :NEW.CREATED_ON := SYSDATE;
    end if;
    
    if :NEW.USER_NAME  is null then
        :NEW.USER_NAME  := :NEW.LAST_NAME || :NEW.USER_ID;
    end if;
    
       :NEW.PASSWORD := custom_hash(:NEW.USER_NAME, :NEW.PASSWORD);
    
    end;   
    

    you create the sequence of patients_seq

    In this case the surrogate key be hashed password.
    And you can use it by selecting table using patients: APP_USER
    that is when the user is connected to his USER_NAME, variable APP_USER is filled

    (3) then, the SQL query would recover this surrogate_key and show as connected individual data.

    Yes, when the user logs on, the key is populated by users based on table: APP_USER
    using

    select password
    from patients
    where user_name = :APP_USER;
    

    You must understand how EVP can be implemented at the Apex.

    You can use any application for this SURROGATE_KEY say

    which is calculated by Application of calculation on the new Instance

    4) but in order to know what to ask, surrogate key should be a key with the substitution APP_USER connection

    is that correct?

    Yes. You have the info from the users table

    Do you have examples of Applications Apex somewhere.
    If you use Apex 2.1, you can install it from the repository and if you have 3 Apex, they are normally automatically installed if you create the new workspace.

    You can use it a lot to manage users.

    Concerning
    Oleg

    BTW,

    Alvaro,
    Yo have your appl?
    If you sent your Db and tables all the Pl/SQl, as well as application Apex, you have for me by email, I can check and make/suggest improvements
    (For free, of course)
    I need to check what you did there, otherwise it seems to be a very long subject.
    Well, I have the time to discuss

    Yes, you can make the trigger like this

    CREATE OR REPLACE
    GENERATE_SEQUENCE RELAXATION
    AFTER INSERT ON USERS_TABLE
    FOR EACH LINE
    BEGIN
    insert into GENERATED_SEQUENCES_TABLE (lastinserted_name, surrogate_key)
    values (SELECT name from USER OF USERS_TABLE WHERE USERID..., SUBSTR (lastinsertedname¦¦ password), 1.12);
    END;

    but where the values are made here
    SUBSTR (lastinsertedname¦¦ password), 1.12

    Published by: oleg.lihvoinen on February 6, 2010 14:55

  • Where is the option create a widget

    I have connected Echosign today and no longer see the option 'Create Widget'. How can I create them now?

    Hi webmasterpascorp,

    Once you log in to your account on eSign you will get create Widget option tab dashboard down to the left with the title of additional functions.

    If in case, you do not get this option, can I find out the type of account you have, because it is not available in the Pro account.

    Thank you

    Abhishek

  • Where is the button create in Adobe Reader?

    I'm trying to scan a document with a scanner, but to do this I need to find the button create which allows me to use the scanner.  The Create button is not found. It is not on the file menu and the left upper corner of the screen has an open button, but there is no button create.  I have Adobe Reader XI on Windows 8.1.

    Hi predxeno,

    Adobe Reader does not allow to create PDF files - this is a PDF Viewer. If you are looking to create a PDF from a scanner, you can either use the software provided with the scanner, or, better yet, you can use Acrobat. If you do not have Acrobat, you can try it free for 30 days. See www.adobe.com/products/acrobat.html for more information.

    Best,

    Sara

  • Where is the backup created when SP is installed

    The size of the partition is 4 GB and there is 1 GB of free space on it. This free space went after the installation of SP3.  It comes if there is a way to regain some of that empty space.  If I remember correctly, a backup is created by default if SP is installed, but I find it difficult to locate the backup.  I am not mistaken on this issue?

    You might be thinking if the $NTUninstallKB... files (which include $NTServicePackUninstall$.)  See http://windowsxp.mvps.org/Hotfix_backup.htm

    There are also several files relating to your original installation of Windows and installs a service pack:

    C:\i386
    C:\Windows\ServicePackFiles
    C:\Windows| ServicePackCache

    Completely remove those files is generally a bad idea, but you can then move to a different location if your Windows partition is getting crowded.  See http://ask-leo.com/can_i_remove_the_servicepackfiles_folder_from_my_windows_folder.html

  • Where is the option create new VM?

    Hello. I have no experience with this thing VMPlayer.

    I downloaded the first time almost a year ago and created some Machines V pretty easily because it had a button that says: create a new Virtual Machine.

    Today, almost a year later I just downloaded the latest version of VMPlayer, the interface has changed (which is normal), but after awhile, looking everywhere I have not found ANY WAY TO CREATE a new virtual machine. There are just options: open existing computers or download the new device on the web (of the market). And I've looked EVERYWHERE!  Geez I feel really bad, please help! Thanks in advance

    Seriously!

    CTRL + N is pretty standard.

    File > create a new Virtual Machine

    Or on the home screen just under welcome to VMware Player is a link, create a new Virtual Machine.

  • where is the database?

    Hello

    Someone would be able to tell me by using window.openDatabase, where is the database created? I would like to open the file with a browser to SQLite database.

    Thank you

    I think that I just thought of it. I had to go to the page resources and turn on monitoring resources.

    Thank you

  • Create the directory objects with the path environment variable

    I need to create a directory object and wonder if it's valid to use an environment variable in the nom_chemin?  Example:

    CREATE or REPLACE DIRECTORY XMLDIR AS ' $ORACLE_HOME/rdbms/xml ";

    I read the following in the Oracle 11.2 documentation, but it is is not clear to me if an environment variable is allowed or not.  My reason for wanting to use a variable of environment as opposed to hard coding is for when I update, I have no back reference to the old House of Oracle.

    nom_chemin

    Specify the name of the full path of the directory on the server where the operating system files are located. Single quotes are required, so that the path name is case-sensitive.

    > I see that many developers have created objects to directory with the environment variables in the path.

    Please post reproducible test

    You know & realize that the Oracle database is independent of the operating system (OS)?

    Environment variable is OS specific.

  • Installation: An error occurred while attempting to create the directory C:\Users\Public\Desktop

    When I try to install the software for my HP Officejet Pro 8500 has more, I get a read error "an error has occurred" while trying to create the directory C:\Users\Public\Desktop

    First I thought it was a permissions issue, even if I am registered as an administrator.  I've even passed the Public folder and gave myself all permissions.  Then I see that the 'Office' folder is already there, so I don't understand why she is trying to create the directory.  Don't know where to go next.

    Problem solved!  Changed name of folder of the Office of "Public Desktop" to "Desktop".  A given SYSTEM and everybody full permissions to the folder.  One of these changes have made a difference.  Subsequently renamed "Desktop" back to "Public Desktop", just in case.

  • Create the directory

    Hello

    I created a directory in Oracle 10 g.
    How can I get the path, which has been set for the directory?

    Kind regards
    VN

    SELECT DIRECTORY_PATH DBA_DIRECTORIES WHERE DIRECTORY_NAME = "";

    Greetings,
    NK

  • How to check if the directory is created using create or replace directory

    Hello

    I create a directory like below:

    Create or replace directory TEST_DIR AS 'C:\ABCD '.

    How to check if the directory is created or not? Is there any request for it?

    Thanks in advance.

    PK

    SELECT * FROM ALL_DIRECTORIES WHERE DIRECTORY_NAME LIKE '% TEST_DIR %. "

    Published by: user3522507 on 2010.06.16. 07:19

  • Where to put the simple html file in the directory of WebLogic structure?

    After installing JDeveloper 11 g and WebLogic 10.3 which came in the same exe (jdevstudio11110install.exe), I want to try WebLogic as ordinary web server for a simple html file. Where should the file is placed in the directory of WebLogics structure and they are there any settings that need to be done to make this work?

    Hello

    WebLogic cannot be considered as a Web server, even if she plays this role.
    I mean, you won't find any structure "htdocs Apache."

    You will need to create an EAR and or a WAR containing all your media.

    Alternatively, you can use virtual directories, such as detailed here:
    http://eDOCS.BEA.com/WLS/docs100/medrec_tutorials/webappdd.html#wp1059998 (Section 2.5)

    I hope this helps!

    Kind regards.

Maybe you are looking for

  • Remove device management profile?

    Hello My friend has an iphone 6 and it hes a company certificate (Swisscom). 1 minute after activation almost all applications disappear, and you can only make calls and take pictures. Is there a way to remove this kind of profiles?

  • A tiny fly/ant/bug is on all fours on my screen

    Last night I suddenly discovered a small bug crawling around my screen. I initially tried to brush, but it turns out to be virtual - although he moved to life as I could see it pixelates when its turns. And whenever he hit a curb or a chassis to an a

  • drains battery fast & alert "service battery" after capitan updated AE

    I was faced this problem of battery and performance after upgrade to IE capitan, even the after seeing so many negative comments, I couldn't stop my attempt to update. Since then I am confronted with the worst performance of my macbook air 13 "(mi-20

  • Satellite L40 - 18W PSL4CE: power supply Question

    Hello I'm on Toshiba Satellite L40-18W-PSL4CE model 00H0000GAR... While plugging the charger, while power comes and sometimes does not.I left as is for two weeks.Now the power does not completely, so I changed the power supply again still the same pr

  • Install issues with Norton Antivirus

    Geek Squad has already installed the Norton antivirus which is good for a year and only got him about two months ago, why it gives me a hard time there and not leave some info be installed unless I have remove and then reinstall?