Where is the directory created?

I have create a directory with the following command:
create or replace directory '/tmp/';
Where this directory created?

See correct syntax there:
http://www.mcs.csueastbay.edu/support/oracle/doc/10.2/server.102/b14200/statements_5007.htm
The statement creates a database object, not a operating system object/folder. The database directory object is not validated, it is just object pointing to some operating system folder, does this folder exist or not does not matter for database, it creates the database object only.
You must create in operating system the folder yourself. This command doens't create the OS folder.

Similar Messages

  • Where is the directory of Skype wi-fi hotspots?

    I don't seem able to find the directory of Skype wi-fi hotspots. Can anyone point me to it?
    This information is needed not just by customers signed up for the service, but more generally, to evaluate the usability of the service in a pre-sales context.
    At first sight, a million plus hotspots for the entire globe sounds a very low, almost insignificant, number, but in some countries there may also be a large and increasing number of non-Skype unlocked and subscription wi-fi hotspots that one can use for Skype.
    It would also be interesting to know of any studies conducted on the availability of all publicly accessible wi-fi hotspots in the countries of the world, both in major cities, and more remote populated areas.
    This is clearly a salient issue for anyone thinking of buying a portable device mainly with a view to using Skype in the field, which would obviously be an extremely attractive facility to have, where it is available.

    Hi, Aristotle91,
    Please see this thread ... particularly the last post by Slava:
    http://community.skype.com/t5/Skype-WiFi/skype-wifi-hotspots-list-location-needed/td-p/76844
    Regards,
    Elaine
    Was your question answered? Please click on the Accept as a Solution link so everyone can quickly find what works! Like a post or want to say, "Thank You" - ?? Click on the Kudos button!
    Trustworthy information: Brian Krebs: 3 Basic Rules for Online Safety and Consumer Reports: Guide to Internet Security Online Safety Tip: Change your passwords often!

  • Where is the backup created when istalling ios5?

    I did like many of you the installation of operating system 5. I believe iTunes created a backup during this process. Where is that backup? I cannot restore from iTunes using such backup. iTunes does not have a backup on that day.
    Thanks.

    If you are referring to an update from iOS 4 to iOS5, your itunes would have made a back up of your iOS devices content - music, apps, etc.  But, once you update to a new OS like iOS5 you can't go back to the old OS. (At least not easily)  You might do a search on the forums to see if other users were able to do that on past OS...if that is what you are asking. ???

  • Where is the option "create update rule" in BW 7.3?

    Hi, all.
    We have updated our BI sandbox to BW 7.3. After installing cube 0PT_C01 from the BCT, I realized that infosource 0HR_PT_3 is not linked to the cube. So I was trying to manually create the update rule. But that "create update rule" option is nowhere to be found. Can you please advise?
    Thanks,
    Jonathan.

    Hi jonathan,
    you are implementing time and labour 0PT_C01.
    for that we have only 2 standard data sources
    1 is 0HR_PT_1
    2 is 0HR_PT_2
    in addition to the above data sources we can also use 0HR_PT_3 data source for the info provider 0PT_C01.
    PL check the below link
    http://help.sap.com/saphelp_nw04/helpdata/en/18/3a8337fb02735ce10000009b38f8cf/content.htm
    regards
    venuscm

  • Where is the Stub created? In registry or in Client's machine?

    Hii..
    I hav some doubts abt RMI..
    The part after t client getting t remote ref(stub obj) of t client s perfectly clear 2 me.
    My doubt s abt t previous part � ie. How t client gets t stub obj.
    I ll tell my concept abt this� plzz correct me if I m wrong.. :
    Suppose Rmiregistry n server(which extends from UnicastRemoteObj)runs on t same m/c
    Client runs on another m/c
    1. Wen server s up, it exports itself 2 a particular port n listens 2 t port for incoming client connections.. (this port s chosen arbitrary@runtime)
    2. Rmiregistry listens 2 port 1099 on t same machine..
    3. Server registers a public name wit registry n pass t a Remote obj(server obj) as t second param in t bind/rebind call
    4. Rmiregistry itself s a remote object.. For accessing any remote object we need a stub.. t Naming class act as t stub for rmiregistry
    5. Now t situation s client needs 2 get an obj of stub 2 contact t server, or at least it shud know 2 which arbitrary port t server s listening 2
    6. so it looks up t rmiregistry for t public name, t rmiregistry creates an object of stub and returns t stub object 2 t client..(is it right?)
    7. For creating an obj of stub, rmiregistry must know 2 which port t server is listening(so t server might hav given t info 2 registry while binding.. right??)
    8. since rmiregistry itself is a remote object t newly created stub object itself is passed in a serialized manner(registry marshals t stub obj) 2 t client using t rmi protocol itself.
    9. now t client demarshalls t passed stub obj 2 get t stub
    10. finally t client uses t stub 2 directly communicate wit t server(ie. 2 connect 2 t listening port of t server)
    11. now t commn b/w client n server takes place directly without t intervention of t rmiregistry�
    This s my Concept abt t whole scenario in 1.4(in 1.5 no need 4 stub or skeletons) plzz correct me if I m wrong@any of these points..
    If my concept is right, then I hav a few q�
    Consider an application Calc
    � remote interface : Calc(which extends Remote)
    � server which implements t Calc i/f : CalcImlp(which extends UnicastRemoteObject)
    � client : CalcClient
    In CalcImpl�s main(),
    Naming.bind(�calc�, new CalcImpl())
    In CalcClient,
    Remote r=(Calc)Naming.lookup(�rmi://host:1099/calc�);
    My doubt is that t server s passing an obj of CalcImpl 2 t registry in Bind fn and wat t client s getting wit lookup fn s actually an obj of CalcImp_Stub which t rmic generated. So does t rmiregistry uses Reflection 2 get t name of CalcImpl n then add a �_Stub� 2 t name it got and searches for that class??
    I hav been checking so many books 2 check whether my concept s right or wrong..
    But I didn�t any info from anywhere.. all of those docs say how 2 do it� None of them say what s happening inside�
    Plzz help me...

    Please don't use this sort of SMS speak "thnx 2 u" when asking a question. If you haven't sufficient respect to spell it all out, why should we make the effort to reply?
    I've not tried to read through all that butchered English, but in brief:
    Stubs can be created at compile time, or with Java 5 they can be dynamically created on the client in communication with the server.
    In the former case, they can either be distributed with the client application or downloaded from a specific URL. It is up to you to specify the URL and make it available. It is not the job of the registry.
    In the latter case you won't need to do anything special.
    If you want a good book which covers this in detail, I recommend the William Grosso RMI book. This is pre-Java 5, but covers the internals of the RMI mechanism in a lot of detail. Hopefully a new edition will be issued to cover Java 5.
    Dave.

  • Where is the directory for "com.sap.aii.adapter.lib.sda" - PI 7.1 ?

    Hi,
    I want to install new JDBC driver in PI 7.1 EHP1, base on notes 1138877 i have to modified file "com.sap.aii.adapter.lib.sda".
    please advise in which directory the file is ?
    Best Regards
    Fernand

    Hi
    you can go to the drive in which your PI is installed for example if it is E then path will be like
    E:/usr/sap/<SID>/DVEBMGS00/j2ee/cluster/bin/ext/com.sap.aii.adapter.lib
    copy this file on your local desktop unzip it using winzip and add the driver jar to this
    make the entry of your driver jar file in provider.xml file and  again zip the folder
    then using SDM deploy this file
    for complete process search on SDN "how to install and configure external  drivers for jDBC and JMS"
    Thanks
    sandeep

  • Where is the directory for the hard drive?

    Yesterday I bought my first Apple product since my iPod Touch (2nd generation) -- the new Mac Mini. Using Migration Assistant, I moved a huge amount of files from my Win 7 PC. The problem is I cannot find any of it. When I use Spotlight, I can find documents, but cannot find where each resides on the HD. My daughter is an avid Mac user and she was mystified when she didn't see the name of the computer in the upper righthand corner of the menu bar.
    Any ideas where I can find the contents of the HD?

    Hi, & a warm welcome to the forums & Macdom.
    To get you started, I'd get Find Any File...
    http://apps.tempel.org/FindAnyFile/
    It will show you the path to files you search for.
    Most Migrated files would be in your User's folder, & likely Documents within that.

  • Where is the iPhoto directory?

    My apologies if this simple question is too simple. I have combed all of the cryptic resources here and cannot find the answer.
    When syncing my 3GS to iTunes, a pop-up advises that my "photos cannot be synced because the directory cannot be found."
    Where is the directory supposed to be located, and how can I remedy this pop-up.
    Oddly, there is not a Photos tab in iTunes as alluded to in some of the other posts.
    Thanks - Jeff

    No photos are synced - not photos transferred from your computer, or photos captured by the iPhone.
    iTunes does not handle importing photos that were captured by the iPhone or photos in the iPhone's camera roll. Photos in the camera roll are included with the iPhone's backup as the first step during the iTunes sync process, but that is it.
    Photos transferred from your computer to your iPhone - selected under the Photos tab for your iPhone sync preferences with iTunes is a one way transfer process only - from your computer to your iPhone.
    To the OP - when you select your iPhone in the iTunes source list under Devices, which tabs are available for your iPhone sync preferences with iTunes?

  • How to view the File created against the Transport Request in ASCII format

    Hi all,
    We have a requirement where in the file created against the Transport reauest and its content should be viewed in ASCII format.
    Experts do you have answer for this.
    Is thers any method to work out.
    Thanks in advance.
    Every usefull answers will be awarded points.*********

    Hi Anji Reddy,
    Thanks for your reply.
    Let me clear my querry.
    when we create a program in se38 and save it in a zxxxx package then it will create a transport request. The Content of TR i mean is not the Program name or the object list in the TR. The content i mean here is the abap code written in the program. which will be stored as a file in the server. when we open this file it will give the SAP format. Which i want to view in ASCII format.

  • Where did the "automate contact sheet" go on cs4???

    help!
    i want to download images from a folder automatically into pages for printing purposes. where did the automate>create contact sheet part go on cs4?
    help!
    thanks!

    http://blogs.adobe.com/jnack/2009/04/a_few_useful_reminders.html

  • I'm having problems with a message that says: An error occurred while Attempting to create the directory: C:/program files/itunes/cd configuarion

    I know this is a long story, but I'll be damned if I'm not going to get the most specific help I can (as Apple seems to specialize in assuming user error for all its demonic software). I've never had issues with iTunes before (barring a "Connect to iTunes" snafu with my iPod Touch) -- and never, in fact, with Windows Vista, if you believe that -- but this is the most bizarre thing I've seen.
    I recently downloaded the new iTunes v 9.0.3 as I am occasionally prompted to do whenever a new version comes out, and immediately I had problems. Access to the iTunes and Quicktime folders was mysteriously denied after the update, and after several hours of frustration, I was able to grant my own Administrative access to these two folders and installation went through. Thank God.
    Then I bought some music. No problems -- downloaded just fine, along with a copy of Cinderella Man and the new episode of Smallville. Life was good for a few days.
    Then I connected my iPod Touch to the computer. All of a sudden, Microsoft Windows informs me that the "Apple Mobile Device Service stopped working and was closed," with subtext, "A problem caused the application to stop working correctly. Windows will notify you if a solution is available."
    Bullsh*t Windows can help me with anything from Apple.
    So I've tried to get iTunes to work with me on this. I've come up against the infamous "iTunes could not connect to this iPhone because an unknown error occurred (OxE8000001)" message. My God, when does it ever end?
    So I go into Control Panel > Administrative Tools > Services > Apple Mobile Device and start it back up... only to watch it stop again inexplicably moments later. Hmm... Restart. Stays on. Unplug the iPod and plug it back in. Apple Mobile Device Service stops again. Maybe it's the iPod Service itself. Hey, that one's not started! [Start] "Windows could not start the iPod Service service on Local Computer -- Error 5: Access is denied."
    What the f*ck is it with this "Access denied" crap? I've never been denied access to even the most intimate functions, files and folders on my freaking computer before! What has Apple created!?
    I thought, perhaps Apple Mobile Device software was somehow removed. Okay, let's redownload iTunes (aka Repair the program from the Programs and Features menu in the Control Panel -- same thing). Huh. "An error occurred while attempting to create directory C:\Program Files\iTunes\CD Configuration," and I can choose to Retry or Cancel. So, instinctively, I deleted the CD Configuration folder, assuming iTunes Setup would just recreate it.
    Well, that didn't work now, did it? I deleted it and hit Retry, and it said, "The installer has insufficient priveleges to access the directory: C:\Program Files\iTunes\CD Configuration. Log on as administrator or contact your system administrator." Running the .exe file as an adminstrator changes NOTHING about this predicament.
    So that's where it stands. No CD Configuration folder; full access to all files and folders involved; Apple Mobile Device Service still keeps going off for no reason; iPod Service still doesn't run; Repairing/Reinstalling iTunes, Quicktime, Bonjour, etc. does nothing; and God (aka Steve Jobs, apparently) hates me.
    . . . . . . . . . . . . Help me.

    Hi there,
    I would recommend taking a look at the troubleshooting steps found in the article below.
    Trouble installing iTunes or QuickTime for Windows
    http://support.apple.com/kb/ht1926
    -Griff W.

  • Where is the command line in the directory?

    I am relearning Java programming and doing an online tutorial.
    I went ahead and dowloaded the JDK program (jdk-6u3-windows-i586-p-iftw.exe) from Java's website and put it in a folder on my computer. I also have a BigDebt.java program on my computer....but the tutorial is telling me to put this command "javac BigDebt.java" in the directory where my program is saved to compile the program. Do I type in "javac BigDebt.java" in the Address line in the folder or where do I type this? Thanks.

    PZPZ wrote:
    If JAVA is an open-source programming language, when someone creates an application with it, how does one protect their code (their software business) from other people viewing and copying it? Worry about that when your code is good enough that someone would want to steal it and it would damage you if they did so. The short version is by obfuscation, which it not a very strong measure, or through license agreements, or by running the sensitive code on a server, so the client never sees it.
    And what are some really cool games that have been made with only JAVA or do people use JAVA with other programming languages to create games and applications?Don't know. Not into games.
    Also, it's Java, not JAVA. It's not an acronym.

  • "the directory E: could not be created." any help?

    Upon initial start up (after effects CC) an error sign appears saying
    "the directory E: could not be created."
    any help?

    We need to know a lot more to help you. Please provide answers to the questions listed here: "FAQ: What information should I provide when asking a question on this forum?"
    Where did you install After Effects? It should be in the default application installation location for your operating system.

  • How do I create admin console users with full access to configuration and the directory in every instance?

    I want to be able to create directory user ID for the iPlanet administrators. They should be able to access the admin console and all the instances created. They should be able to configure each instance and directory. I was able tocreate Admin Server Administrators but they were only able to modify the directory(tab) and not the configurations(tab). Any help would be greatly appreciated!
    Thanks.
    Keith

    Hi Keith,
    In o=netscaperoot, edit the static group called cn=Configuration Administrators, ou=Groups, ou=TopologyManagement, o=NetscapeRoot - this group contains the admins peer to your config admin. Since the console is quirky and doesn't let you add in users not in netscaperoot, just click advanced and put in the full dn of whoever you want in by hand, e.g., uid=scarter, ou=people, dc=mydomain,dc=com as a static member. then rebind to the console with the full dn and passwd, and away you go :)
    james

  • Unable to create database entry in the directory service. - TNS-04

    We run into this error when we tried to register an Oracle 10.2.0.4 database with OID server (10.1.4.3):
    Unable to create database entry in the directory service. - TNS-04409: Directory service error
    We use Oracle DBCA to register to the OID. Both Oracle database and OID server are all running under Sun Solaris environment.
    In the meantime, I found these errors in the oid logs:
    oidldapd01.log:
    2009/07/13:21:15:47 * DispatcherListener:2 * ERROR : gslsflAcceptConnAndSend : OS 2 : Unable to accept New TCP
    connection
    Any ideas?
    Thanks
    Naiying

    Hi,
    Thanks for update.
    No, didn't find DSCC agent logs get updated when I have the pop up.
    C:\dsee7\var\dcc\agent\logs
    In the glassfish server log, I didn't find new transaction when I hit the issue
    C:\glassfish3\glassfish\domains\domain1\logs

Maybe you are looking for

  • ICal: how can I start from scratch?

    I'm having recurring and persistent problems with iCal since I bought a new Mac Pro and migrated my user files from my previous computer (G5, which was also running Leopard). At first, alarms weren't working. I read several threads here and went thro

  • Send as a pdf file rather than xml

    I created an order form in live cycle 7 and when I email the form it opens properly and works but when the recipient emails it back clicking on the submit email form it returns it to me in xml format. Is there anyway of creating a form that the recip

  • Cannot start RMAN

    Oracle 9i client on windows, and trying to use RMAN (I'm reading some docs to learn about RMAN). However I'm getting this error whenever I try to launch RMAN: D:\>rman Recovery Manager: Release 9.2.0.1.0 - Production Copyright (c) 1995, 2002, Oracle

  • Ttsubscriberwait required or not in case of switchover?

    Hi, We are using Active Standby Pair mechanism with out any subscribers. i.e. We have only two data stores (one act as Active DSN and other act as Standby DSN). In case of reversing the roles of Active and Standby DSN, Can I skip the bulletin procedu

  • HT1725 App downloading security questions I've never seen

    When downloading apps I type in my password and it asks questions that I haven't seen before like " what was the first car that you owned" I haven't even had a car.