prcsgidb1: /u01/Stage/database

C:\Users\alley_li>ping prcsgidb1

Pinging prcsgidb1.ad.infosys.com [10.221.62.71] with 32 by Reply from 10.221.62.71: bytes=32 time=15ms TTL=63 Reply from 10.221.62.71: bytes=32 time=1ms TTL=63 Reply from 10.221.62.71: bytes=32 time=73ms TTL=63 Reply from 10.221.62.71: bytes=32 time=1ms TTL=63

username: ebizR121 password: ebizR121

Database

su - ortm12

-bash-3.2$ ps -ef|grep tns |grep ortm12 ortm12   10065     1  0 Aug30 ?        00:00:01 /u02/TM12/apps/tech_st/10.1.2/bin/tnslsnr APPS_TM12 -inherit ortm12   13750 13593  0 13:38 pts/18   00:00:00 grep tns ortm12   26905     1  0 Sep28 ?        00:00:03 /u02/TM12/db/tech_st/11.1.0/bin/tnslsnr tm12 -inherit

/u02/TM12/db/tech_st/11.1.0

TM12_prcsgidb1.env

. TM12_prcsgidb1.env . ./. TM12_prcsgidb1.env

Application

/u02/TM12/apps/apps_st/appl

. ./APPSTM12_prcsgidb1.env

URL FOR APPLICATION

grep -i login $CONTEXT_FILE

-bash-3.2$ ls -l $CONTEXT_FILE -rw-r--r-- 1 ortm12 dba 12809 Jun  1 13:55 /u02/TM12/db/tech_st/11.1.0/appsutil/TM12_prcsgidb1.xml

-bash-3.2$ . APPSTM12_prcsgidb1.env -bash-3.2$ grep -i login $CONTEXT_FILE          <login_page oa_var="s_login_page">http://prcsgidb1.ad.infosys.com:8020/OA_HTML/AppsLogin</login_page> -bash-3.2$ LS -L -bash: LS: command not found -bash-3.2$ ls -l $CONTEXT_FILE -rw-r--r-- 1 ortm12 dba 87241 Sep 28 09:25 /u02/TM12/inst/apps/TM12_prcsgidb1/appl/admin/TM12_prcsgidb1.xml -bash-3.2$ grep -i login /u02/TM12/inst/apps/TM12_prcsgidb1/appl/admin/TM12_prcsgidb1.xml          <login_page oa_var="s_login_page">http://prcsgidb1.ad.infosys.com:8020/OA_HTML/AppsLogin</login_page> -bash-3.2$

EBS learning history (to know about the environment)的更多相关文章

  1. How do I learn machine learning?

    https://www.quora.com/How-do-I-learn-machine-learning-1?redirected_qid=6578644   How Can I Learn X? ...

  2. [转]Introduction to Learning to Trade with Reinforcement Learning

    Introduction to Learning to Trade with Reinforcement Learning http://www.wildml.com/2018/02/introduc ...

  3. Introduction to Learning to Trade with Reinforcement Learning

    http://www.wildml.com/2015/12/implementing-a-cnn-for-text-classification-in-tensorflow/ The academic ...

  4. ON THE EVOLUTION OF MACHINE LEARNING: FROM LINEAR MODELS TO NEURAL NETWORKS

    ON THE EVOLUTION OF MACHINE LEARNING: FROM LINEAR MODELS TO NEURAL NETWORKS We recently interviewed ...

  5. 论文笔记之:Asynchronous Methods for Deep Reinforcement Learning

    Asynchronous Methods for Deep Reinforcement Learning ICML 2016 深度强化学习最近被人发现貌似不太稳定,有人提出很多改善的方法,这些方法有很 ...

  6. (zhuan) Where can I start with Deep Learning?

    Where can I start with Deep Learning? By Rotek Song, Deep Reinforcement Learning/Robotics/Computer V ...

  7. A Gentle Guide to Machine Learning

    A Gentle Guide to Machine Learning Machine Learning is a subfield within Artificial Intelligence tha ...

  8. Pattern Recognition and Machine Learning-02-1.0-Introduction

    Introduction The problem of searching for patterns in data is a fundamental one and has a long and s ...

  9. [Python] python vs cplusplus

    一些学习过程中的总结的两种语言的小对比,帮助理解OO programming. Continue... 字典 序列 --> 字典 Python: def get_counts(sequence) ...

随机推荐

  1. PHP处理一个5G文件,使用内存512M的,数据为整形,从大到小排序,优化排序算法

    $file='./new.txt'; $fp = fopen($file, "r"); $chunk = 4096;//一次处理1M的字节 1M=1024*1024 $fs = f ...

  2. sql表别名

    表名.列明后面接as xx,xx就是表/列的别名,as可省略 别名通常有两个作用 as可省略,as可省略

  3. 阿里云服务器Linux CentOS安装配置(零)目录

    阿里云服务器Linux CentOS安装配置(零)目录 阿里云服务器Linux CentOS安装配置(一)购买阿里云服务器 阿里云服务器Linux CentOS安装配置(二)yum安装svn 阿里云服 ...

  4. laravel的门面模式

    核心技术是__callStatic()方法,当调用的方法不存在时,会自动调用魔术方法__callStatic()方法,和__autoload()方法同工异曲.

  5. 【ipv6惹的祸】curl 超时

    偶然发现 最近在公司日志平台 总是可以看到很多关于php curl的错误信息 Operation timed out after 0 milliseconds with 0 out of 0 byte ...

  6. Runtime详解

    http://yulingtianxia.com/blog/2014/11/05/objective-c-runtime/

  7. 研究Mysql优化得出一些建设性的方案

    博客出自:http://blog.csdn.net/liuxian13183,转载注明出处! All Rights Reserved ! 熟悉网络请求路径,网址经过浏览器的URL验证,是否正确证书是否 ...

  8. iOS 将一串字符里面的某个字符全部标志出来

    NSMutableString * mutStr = [NSMutableString stringWithString:@"aaabbbbaaaccc"]; NSString * ...

  9. 用jsonp格式的数据进行ajax post请求变成get

    因为 dataType 是 jsonp 而不是 json jsonp不支持POST跨域,所以会自动转成GET而关于jsonp为什么不支持post请求,百度到的答案是jsonp为动态的script,没有 ...

  10. Java语言程序设计(基础篇) 第五章 循环

    第五章 循环 5.2 while循环 1.while循环的语法如下: while(循环继续条件){ //循环体 语句(组); } 2.程序:提示用户为两个个位数相加的问题给出答案 package co ...