I couln can't find the location of the directory

I create a directory, but I can't find the location of it I mean, I do it in the place, but I do not see the directory? I did something wtong?


create or replace directory plsql_dir as 'C:\Users\Retail\Oracle\hello ';

Created PLSQL_DIR directory.


Grant read, write on directory plslq_dir for michael;

It gives

SQL error: ORA-22930:
22930 00000 - "the directory does not exist.


Thank you

You have created a directory of Oracle named plsql_dir pointing to 'C:\Users\Retail\Oracle\hello '.
You must manually create the physical directory. Oracle does not create it.

Kind regards
Sajeeva Lacotte.

Tags: Database

Similar Questions

  • I couln can't find the dbmshptab.sql script for

    I would likle to use Profiler hierarchical. In order to use it, I need to run below script. However, I couln t find anywhere I searched the table object DBMS_HPROF package, there are in db. You have an idea how I can run this script? In this case there is not in my computer can I download it anywhere?

    Note: I am using windows 7

    @$ORACLE_HOME/rdbms/admin/dbmshptab.sql
    select * from all_objects where object_name = 'DBMS_HPROF';
    
    SYS     DBMS_HPROF          10581          PACKAGE BODY     01/11/2007     01/11/2007     2007-11-01:21:00:04     VALID     N
    SYS     DBMS_HPROF          7480          PACKAGE     01/11/2007     01/11/2007     2007-11-01:20:55:24     VALID     N
    PUBLIC     DBMS_HPROF          7481          SYNONYM     01/11/2007     01/11/2007     2007-11-01:20:55:24     VALID     N
    
    
    select * from v$version;
    
    Oracle Database 11g Enterprise Edition Release 11.1.0.6.0 - 64bit Production
    PL/SQL Release 11.1.0.6.0 - Production
    "CORE     11.1.0.6.0     Production"
    TNS for 64-bit Windows: Version 11.1.0.6.0 - Production
    NLSRTL Version 11.1.0.6.0 - Production
    Thanks for your help.
    Rem
    Rem $Header: dbmshptab.sql 30-jul-2007.13:07:41 sylin Exp $
    Rem
    Rem dbmshptab.sql
    Rem
    Rem Copyright (c) 2005, 2007, Oracle. All rights reserved.
    Rem
    Rem    NAME
    Rem      dbmshptab.sql - dbms hierarchical profiler table creation
    Rem
    Rem    DESCRIPTION
    Rem       Create tables for the dbms hierarchical profiler
    Rem
    Rem    NOTES
    Rem      The following tables are required to collect data:
    Rem        dbmshp_runs
    Rem          information on hierarchical profiler runs
    Rem
    Rem        dbmshp_function_info -
    Rem          information on each function profiled
    Rem
    Rem        dbmshp_parent_child_info -
    Rem          parent-child level profiler information
    Rem
    Rem      The dbmshp_runnumber sequence is used for generating unique
    Rem      run numbers.
    Rem
    Rem      The tables and sequence can be created in the schema for each user
    Rem      who wants to gather profiler data. Alternately these tables can be
    Rem      created in a central schema. In the latter case the user creating
    Rem      these objects is responsible for granting appropriate privileges
    Rem      (insert,update on the tables and select on the sequence) to all
    Rem      users who want to store data in the tables. Appropriate synonyms
    Rem      must also be created so the tables are visible from other user
    Rem      schemas.
    Rem
    Rem      THIS SCRIPT DELETES ALL EXISTING DATA!
    Rem
    Rem    MODIFIED   (MM/DD/YY)
    Rem    sylin       07/30/07 - Modify foreign key constraints with on delete
    Rem                           cascade clause
    Rem    kmuthukk    06/13/06 - fix comments
    Rem    sylin       03/15/05 - Created
    Rem
    
    drop table dbmshp_runs                     cascade constraints;
    drop table dbmshp_function_info            cascade constraints;
    drop table dbmshp_parent_child_info        cascade constraints;
    
    drop sequence dbmshp_runnumber;
    
    create table dbmshp_runs
    (
      runid               number primary key,  -- unique run identifier,
      run_timestamp       timestamp,
      total_elapsed_time  integer,
      run_comment         varchar2(2047)    -- user provided comment for this run
    );
    
    comment on table dbmshp_runs is
            'Run-specific information for the hierarchical profiler';
    
    create table dbmshp_function_info
    (
      runid                  number references dbmshp_runs on delete cascade,
      symbolid               number,               -- unique internally generated
                                                   -- symbol id for a run
      owner                  varchar2(32),         -- user who started run
      module                 varchar2(32),         -- module name
      type                   varchar2(32),         -- module type
      function               varchar2(4000),       -- function name
      line#                  number,               -- line number where function
                                                   -- defined in the module.
      hash                   raw(32) DEFAULT NULL, -- hash code of the method.
      -- name space/language info (such as PL/SQL, SQL)
      namespace              varchar2(32) DEFAULT NULL,
      -- total elapsed time in this symbol (including descendats)
      subtree_elapsed_time   integer DEFAULT NULL,
      -- self elapsed time in this symbol (not including descendants)
      function_elapsed_time  integer DEFAULT NULL,
      -- number of total calls to this symbol
      calls                  integer DEFAULT NULL,
      --
      primary key (runid, symbolid)
    );
    
    comment on table dbmshp_function_info is
            'Information about each function in a run';
    
    create table dbmshp_parent_child_info
    (
      runid                  number,       -- unique (generated) run identifier
      parentsymid            number,       -- unique parent symbol id for a run
      childsymid             number,       -- unique child symbol id for a run
      -- total elapsed time in this symbol (including descendats)
      subtree_elapsed_time   integer DEFAULT NULL,
      -- self elapsed time in this symbol (not including descendants)
      function_elapsed_time  integer DEFAULT NULL,
      -- number of calls from the parent
      calls                  integer DEFAULT NULL,
      --
      foreign key (runid, childsymid)
        references dbmshp_function_info(runid, symbolid) on delete cascade,
      foreign key (runid, parentsymid)
        references dbmshp_function_info(runid, symbolid) on delete cascade
    );
    
    comment on table dbmshp_parent_child_info is
            'Parent-child information from a profiler runs';
    
    create sequence dbmshp_runnumber start with 1 nocache;
    

    See you soon,.
    Manik.

  • Find the directory of the user settings

    Hi fellow Scripting Guys,.

    I can easily find the directory of the user settings in FrameScript, through Session.UserSettingsDir, but it doesn't seem to be an equivalent in ExtendScript. I know FrameMaker knows this directory that the application uses all the time, and I see that there is a Constants.UserSettingsDir in the script of FrameMaker Guide, but there is no reference to this constant anywhere else, there is nothing in the documentation of FDK.

    How to read the value of an ExtendScript, at - it someone know?

    Thank you

    Jang

    OK, I found the answer myself.

    The property is available via the app. GetProps (), which is what I was expecting in the first place. But the following code just give an invalid object as a result:

    var MyProps is app. GetProps ();

    var i = GetPropIndex (MyProps, Constants.UserSettingsDir);

    var TheProp = MyProps [i];

    It seems that the value of Constants.UserSettingsDir is undefined in ExtendScript, or is not correctly defined. Him substituting the value 152 (which is listed in the Frame Scripting Guide) me provides access to the property:

    var MyProps is app. GetProps ();

    var i = GetPropIndex (MyProps, 152);

    var TheProp = MyProps [i];

    Adobe, please get your documentation in order. It would also be useful to have a list of values reflecting constants. , so that we can follow at least the numeric value in the browser of a symbolic value data to be used in scripts.

    Ciao

    Jang

  • Photos can not find the location of the original file

    Hi all

    I need help.

    My photo library cannot locate the masters original which means that photos don't load to icloud and photo book, I worked all year is riddled with exclamation points, because they can't find the file.

    Is that what I can do to fix the places they designate? The files are still on my computer, because none have been moved and I can find them when you use find any file, it's just that there are more 6 000 files that are "unable to download" so it would be very expensive to do it one by one.

    Thank you

    Paul

    The files are still on my computer, because none have been moved and I can find them when you use find any file, it's just that there are more 6 000 files that are "unable to download" so it would be very expensive to do it one by one.

    Are files that can be found inside the photo library in the folder of masters or referenced by pictures in a folder outside the library?

    If the photos are in a folder outside your library, check where Photos expected them to be.  The error you get when you try to edit or export the original file should show you the path to the file in the folder where the photo should be.  Where is it?  Try "file > see the file reference in the Finder.  He opens the folder where the original must be. Where is it?

  • HP G049AU: Can not find the product Page of G049AU HP drivers. Help me locate.

    My HP G049AU was delivered with WIndows 8.1. I erased from my HARD drive and install ArchLinux, it's been a year I use arch. But now I want to play games, so the intention to move to Windows 7.

    However, sad, it's part I am unable to locate the drivers 64 bit Windows 7 in my product page. Where can I find the drivers and download it?

    Help pl0x.

    Hello

    It's a HP 15- G049AU? All drivers for Windows 7 are at the following link:

    http://support.HP.com/us-en/drivers/selfservice/HP-15-notebook-PC-series/6545564/model/7483718#Z7_3054ICK0KGTE30AQO5O3KA30R1

    Kind regards.

  • How can I find the name of the photographer? How can I know the location of a photo when it's just a general title...

    How can I find the name of the photographer? How can I know the location of a photo when it's just a general title...

    Hello

    If you expand the keywords, this could give you a little more in detail.  You can click on the username of the photographer to see their portfolio and you can search within their portfolio.

    Thank you

    Bev

  • I just bought photoshop elements, it is said in the 'my orders page' locate particular order, but I can't find the my orders page?

    I just bought photoshop elements, it is said in the 'my orders page' locate particular order, but I can't find the my orders page?

    Hi Angela,.

    Please see: find downloaded applications and Adobe files

    Where can I find the serial number on my Adobe product box?

    I hope this helps.

    Concerning

    Megha Rawat

  • I have photoshop CC 2015, but cannot locate the Magic Eraser... the eraser box only has 2 erasers, pencils and chiseled... How can I find the Magic Eraser

    Where can I find the Magic Eraser as he is not in the eraser drop-down list in 2015 CC... your help would be appreciated George

    Hi carolg,.

    It should be there in the quick selection tool.

    If it is not there, go to the Edit menu > Toolbar > restore default values and then check out.

    Kind regards

    Claes

  • I am trying to install Adobe Photoshop elements Adobe Premiere elements 13 13 and can't find the serial number. Where is it located? It is a dvd.

    I am trying to install Adobe Photoshop elements Adobe Premiere elements 13 13 and can't find the serial number. Where is the serial number? It is a dvd.

    Quickly find your serial number

  • How can I find the music marked with an exclamation point in my itunes library?

    How can I find the music marked with an exclamation point in my itunes library?

    Hello there rdgernnr!

    I certainly don't want to find the songs that show the "!" and get them to play correctly. If you have not yet done it, read this article: If you see an exclamation point next to your items in iTunes - Apple Support

    More precisely:

    Correct the path of the media file

    Follow these steps to help find the correct location of the file iTunes media:

    1. In iTunes on your Mac or PC, select the song, album, movie, or television show that has the exclamation next to him.
    2. In the MenuBar at the top of your screen, computer or at the top of the iTunes window choose Edition > read the information.
      If you are using Windows and you don't see the menu bar, Learn how to turn it on.
    3. When you see a message asking if you want to locate the file, click search.
      • If you know the location of the file, point to it iTunes and try to read your content.
      • If you do not know the location of the file, search for it:
        Mac: Press ⌘ and space control your keyboard, and then type the name of the movie title, app, song, album or artist.
        Windows: Press the Windows on your keyboard, and then type the name of the movie title, app, song, album or artist. If your keyboard does not have a Windows key, press the Escape (Esc) and control (Ctrl) on your keyboard.
      • If the file is on a network drive or external, plug on the volume of disk or external network.
      • If you find your objects in the trash or recycle bin, restore them to their previous location:
        Mac: Control-click or right-click on the item and choose put back.
        Windows: Right-click on the item and choose restore.
    4. Once you retrieve the file, use Get new Info to locate the file, and then point iTunes to the correct location.

    See you soon!

  • With 29.0.1 I can't find the reload or stop icons. No, they do not have

    With the right version updated with what precedes. Where can I find the 'reload' and icons 'stop' located in the top right of my toolbar. Appreciate any help with this issue.

    Why? Why? Why? Why remove the useful stuff?

  • How can I find the Menu of available channels

    Although having APT4 for a few months, I have finally connected. But although I got once on my PC, I can't find the LIST of all available TV channels? Where is he?

    Also, is there a separate Menu for free live TV channels?

    Assuming that what you mean by "chains" is the available apps, this will depend on your location, but you should find this useful: on the App Store on your Apple TV (4th generation) - Apple Support

  • Where can I find the download more updated of the Windows Migration Wizard?

    Where can I find the download more updated of the Windows Migration Wizard?

    Article Apple describing the use of the Windows Migration Wizard that is located here – move your data from a Windows PC to Mac - Apple Support

    This article includes a link to the download page for the latest version and the download page is here - Migration of Windows Wizard v1.0.5.7

    It does not seem to have been updated for a couple of years and doesn't mention Windows 10. While many the most applications that are compatible with Windows 7 and 8 works perfectly under Windows 10 I can say from personal experience, if this also applies to the Windows Migration Wizard.

  • In the case of Facebook I control-click on Add Image to Photos, where Photos can I find the image being added?

    On Facebook I Ctrl-click on a photo and then choose picture add pictures on the shortcut menu.  Subsequently, photos where I can find the image added?  Is there a systematic way?

    Sometimes, images from Facebook are added at the end of my table of Photos.  This table is always keep sort by oldest first.  However, some images from Facebook appear to come from the previous dates.  At least one, I found a photo added to Facebook in the middle of a time at which the additional picture has nothing to do.  My guess is the added photo's date time whereby it sorts here and pictures imported, nor others currently have location data.  If any location data would show that the imported photo was not present.

    I imported several other photos from Facebook, which I can't find.  I think I checked the album last import and did not find them here.  I suspect they have dates, which I do not know, and causing them to be placed somewhere other than the end of my library.

    How can I find the imported photos from Facebook?

    When you see a photo in Safari and ctrl + click or right-click, then use "Add photo", it will be added to the photo library without appearing in "last import.  It goes the same for adding photos of Mail in this way.

    But you can find the album "AllPhotos".  All new photos added this way should appear at the bottom of all the pictures, because this album is sorted by the date of the import session.

    If you see the photo added in the last import, control-click it or right click and select 'display in the Moment '.  This way you can find at the moment, it has been added to.

  • Hi, I can not find the cuda switch in my PowerMac dual g4 in the opposite direction, what is the difference between reset pram by touch or cuda?

    Hello

    I can't find the switch cuda in my PowerMac g4 dual mirrored, 1.00

    What is the difference between reset pram by touch or cuda?

    Switching on the open Mac I can see a small red light and I listen to the classic sound

    but nothing on the monitor.

    FireWire connection with my mac Mini, I can view and save the hd PowerMac

    The battery was completed in December 2012 (it's weird, cause I bought the double

    years before and never changed)

    Thanks for your attention and sorry for my English...

    First of all, I have to warn. G4 MDD don't have a CUDA button and old Macs - it has a PMU reset button. The difference is that, for a computer with the PMU system like yours, you give the key ONLY a short thrust, not longer than a second.

    If treat you it as if it was a CUDA button and hold for 20 seconds, you will seriously damage your computer. That said, this image shows the location of the PMU reset in a G4 MDD:

    What is the difference between reset pram by keyboard or cuda?

    Since your G4 has no CUDA reset ability, this becomes a moot point. In the old Mac (G3 Beige and more - the "Old world ROM" Macs) reset PRAM via the keyboard is not completely zero everything; the CUDA reset did.

Maybe you are looking for

  • Low Microphone volume, only in Skype

    Can anyone help? In Skype, my laptop's built-in microphone is intermittently from low level. The microphone level is OK in other applications for example, Audacity. This makes Skype unusable for me. Audio drivers have been uninstalled and reinstalled

  • Missing CD imported into iTunes on my computer

    Its on my phone, but not in itunes.  I can't sync because I'm going to lose on my phone.  What giant a waste of time if I lost him.  How imported music could disappear from iTunes?  I know that they were not deleted

  • something is VERY wrong with my phone: O

    OK Ive had the devour for 4 or 5 days (no idea how much time xD) and a few minutes ago, he said the close message of strength and said that I had to force close my house. I clicked on OK and my phone does not illuminate. I had actually turned it on f

  • Broken hinges (spare parts)

    I have a HP dv7-4061nr, and both hinges are broken on my laptop. I am currently out of warranty and I was wondering how and if HP has a way to replace the hinges broken without having to replace the entire laptop and if so what is the cost for this?

  • Windows media player plays is not the wmv files

    I installed a new version of AMD Catalyst Software Suite V 12.2.00 08/03/11 and immediately pinned the problem of not being able to run the MWV Media Player files.  The media player will turn green and the audio works well.  I guess that my old (2008