Difference between revisions of "SQWareProduction:oracle:etc:.profile"
m (Updated by Expdbtools) |
m (Updated by Expdbtools) |
||
Line 1: | Line 1: | ||
− | + | Sample file for .profile $gvsqw_OraBin/../etc/.profile:<br> | |
+ | Sample of lines to add to .profile of oracle users.<br> | ||
<br> | <br> | ||
− | + | File content: | |
<pre> | <pre> | ||
#!/bin/ksh | #!/bin/ksh | ||
################################################################### | ################################################################### | ||
− | # SQWareProduction for Oracle module of | + | # SQWareProduction for Oracle module of expdbTools is developped with GPL Licence 3.0 : |
+ | # trademark => dbSQWare� | ||
# | # | ||
# This program is free software: you can redistribute it and/or modify | # This program is free software: you can redistribute it and/or modify | ||
Line 23: | Line 25: | ||
################################################################### | ################################################################### | ||
## @Synopsis Template of .profile for Oracle user | ## @Synopsis Template of .profile for Oracle user | ||
− | ## @Copyright Copyright 2010, Michel PAYAN | + | ## @Copyright Copyright 2010-2011, Michel PAYAN |
## @License GPL v3 | ## @License GPL v3 | ||
## SVN : $URL$ | ## SVN : $URL$ |
Revision as of 23:27, 15 December 2010
Sample file for .profile $gvsqw_OraBin/../etc/.profile:
Sample of lines to add to .profile of oracle users.
File content:
#!/bin/ksh ################################################################### # SQWareProduction for Oracle module of expdbTools is developped with GPL Licence 3.0 : # trademark => dbSQWare� # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. # # For information : contact@dbsqware.com or www.dbsqware.com ################################################################### ## @Synopsis Template of .profile for Oracle user ## @Copyright Copyright 2010-2011, Michel PAYAN ## @License GPL v3 ## SVN : $URL$ ## SVN : $Id$ ## variables oracle export ORACLE_HOME=$HOME/product/10.2.0 // ORACLE_HOME=$HOME/product/11.1.0 export ORACLE_BASE=$ORACLE_HOME export NLS_LANG=AMERICAN_AMERICA.WE8MSWIN1252 export ORACLE_SID="" export EDITOR=vi ## gestion du path export gvsqw_OraBin=/usr/users/sysdba/SQWareProduction/oracle/bin export PATH=$ORACLE_HOME/bin:$ORACLE_HOME/OPatch export PATH=$PATH:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/ccs/bin:/usr/openwin/bin:/opt/VRTSvcs/bin export LD_LIBRARY_PATH=$ORACLE_HOME/lib:$ORACLE_HOME/lib32 lvsqw_IsTerminal=$(tty 2>&1 >/dev/null;echo $?) if [ "$lvsqw_IsTerminal" = "0" ] && [ -r $gvsqw_OraBin/../etc/.profile_confort ] then . $gvsqw_OraBin/../etc/.profile_confort fi