DBAsupport.com Forums - Powered by vBulletin
Results 1 to 4 of 4

Thread: Create Directory

  1. #1
    Join Date
    Nov 2000
    Posts
    101

    Create Directory

    Hi Friends,

    Oracle has given DIRECTORY facilities to mention OS directories. This will depreciate utl_file_dir parameter. In the same way, Is it possible to create a directory for mulitple OS directories.

    eg.
    SQL> CREATE DIRECTORY demo AS 'c:\demo,d:\demo\test';


    Thanks
    gandhi

  2. #2
    Join Date
    Sep 2002
    Location
    England
    Posts
    7,334
    do you mean like this?

    SQL> create directory tmp as '/tmp';

    Directory created.

    create directory tmp2 as '/var/tmp/'

    Directory created.

    SQL>

  3. #3
    Join Date
    Nov 2000
    Posts
    101
    Yes,

    But, i want to create one directory in Oracle by referring multiple OS directories.


    Thanks
    gandhi

  4. #4
    Join Date
    Sep 2002
    Location
    England
    Posts
    7,334
    ah I think u mean create directory tmp as '/tmp', '/var/tmp' or something like that.

    i do not think it is possible

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  


Click Here to Expand Forum to Full Width