Answers for "create dirs in path"

2

how to add a directory in path linux

# For this Purpose you have to edit ~/.bashrc file.
# So in terminal:
nano ~/.bashrc
# Now add this command to the file and instead of ADDRESS,
# write your desired address
export PATH=$PATH:ADDRESS
# Like:
export PATH=$PATH:/usr/local/hadoop
Posted by: Guest on December-19-2020
0

To Create directory

C:>sqlplus / as sysdba
SQL*Plus: Release 11.2.0.3.0 Production on Wed Apr 3 15:07:01 2013
Copyright (c) 1982, 2011, Oracle.  All rights reserved.

Connected to:
Oracle Database 11g Release 11.2.0.3.0 - Production

SQL> create or replace directory MYCSV as 'e:mycsv';
Directory created.

SQL> grant read, write on directory MYCSV to scott;
Grant succeeded.
Posted by: Guest on November-16-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language