博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Chapter02-Oracle Net Architecture
阅读量:4341 次
发布时间:2019-06-07

本文共 944 字,大约阅读时间需要 3 分钟。

Concepts & Terminology

View Code
Database ServicesService Name    A logical representation of a database    The way a database is presented to clientsConnect Descriptor    Location of the database    Name of the database serviceListener    Receives client connection requests    Hands requests to the database server

 Overview of Naming Methods

Naming methods are used by a client application to resolve a connect identifier to a connect descriptor when attempting to connect to a database service.

Oracle Net provides five naming methods:

  • Host naming
    • sqlplus HR/HR@192.168.1.200:1521/poli   //这种方法已经过时了 
  • Local naming
    • sqlplus HR/HR@DB200
  • Directory naming    //大规模数据的使用
  • Oracle Names //过时
  • External naming //第三方使用

 Configuration Files

  • ldap.ora
  • names.ora
  • tnsnames.ora
  • listener.ora
  • sqlnet.ora

 Three Key Parameters

  • Connect Descriptor
    • Location of the database
    • Name of the databse service

转载于:https://www.cnblogs.com/arcer/archive/2013/03/12/2955683.html

你可能感兴趣的文章
水平权限漏洞的修复方案
查看>>
静态链接与动态链接的区别
查看>>
Android 关于悬浮窗权限的问题
查看>>
如何使用mysql
查看>>
linux下wc命令详解
查看>>
敏捷开发中软件测试团队的职责和产出是什么?
查看>>
在mvc3中使用ffmpeg对上传视频进行截图和转换格式
查看>>
python的字符串内建函数
查看>>
Spring - DI
查看>>
微软自己的官网介绍 SSL 参数相关
查看>>
Composite UI Application Block (CAB) 概念和术语
查看>>
ajax跨域,携带cookie
查看>>
阶段3 2.Spring_01.Spring框架简介_03.spring概述
查看>>
阶段3 2.Spring_02.程序间耦合_1 编写jdbc的工程代码用于分析程序的耦合
查看>>
阶段3 2.Spring_01.Spring框架简介_04.spring发展历程
查看>>
阶段3 2.Spring_02.程序间耦合_3 程序的耦合和解耦的思路分析1
查看>>
阶段3 2.Spring_02.程序间耦合_5 编写工厂类和配置文件
查看>>
阶段3 2.Spring_01.Spring框架简介_05.spring的优势
查看>>
阶段3 2.Spring_02.程序间耦合_7 分析工厂模式中的问题并改造
查看>>
阶段3 2.Spring_03.Spring的 IOC 和 DI_2 spring中的Ioc前期准备
查看>>