Repointing to the DB.


 
Thread Tools Search this Thread
Operating Systems Linux Repointing to the DB.
# 1  
Old 04-06-2016
Repointing to the DB.

Hi,

Assume my environment variable is pointing Dev004, now I want to repoint to Dev005
How to do that can you please advice
# 2  
Old 04-06-2016
Hi,

I'm afraid you'll have to provide a bit more information, like OS, shell, what variable name.

It could be something like;

Code:
echo $VAR
Dev004
VAR=Dev005 ; export VAR
echo $VAR
Dev005

But without a bit more info, it's unlikely that people will be able to help you.

Regards

Gull04
# 3  
Old 04-06-2016
Quote:
[devgcms@chl20011474:/cs/gcredit_dev/dev231/Feeds/Data/crisdwrep/srcfiles$/> env | grep -i 'oracle'
CRISDW_ORACLE_SID=CRIS_DEV_004
---------- Post updated at 01:59 PM ---------- Previous update was at 01:59 PM ----------

Please find the example

Quote:
[devgcms@chl20011474:/cs/gcredit_dev/dev231/Feeds/Data/crisdwrep/srcfiles$/> env | grep -i 'oracle'
CRISDW_ORACLE_SID=CRIS_DEV_004
# 4  
Old 04-06-2016
Hi,

Try the following;

Code:
CRISDW_ORACLE_SID=CRIS_DEV_005 ; export CRISDW_ORACLE_SID

Regards

Gull04
Login or Register to Ask a Question

Previous Thread | Next Thread
Login or Register to Ask a Question