帮助我将 Oracle 术语转化为 SQL Server 术语

发布于 2024-07-26 00:46:13 字数 1437 浏览 6 评论 0原文

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

堇色安年 2024-08-02 00:46:13

Oracle/SQLServer:

  • 表空间 = 不存在
  • 数据库 = 不存在
  • 实例 = 实例
  • 架构 = 数据库
  • 侦听器 = 不存在
  • 服务名称 = 数据库名称
  • SID = 数据库名称

Oracle/SQLServer:

  • tablespace = doesn't exist
  • database = doesn't exist
  • instance = instance
  • schema = database
  • listener = doesn't exist
  • service name = database name
  • SID = database name
揽月 2024-08-02 00:46:13

我对 sqlserver 一无所知,所以我能做的就是尝试解释一下
* 表空间
* 数据库
* 监听者
* 服务名称
* SID
是。
数据库是构成数据库的文件的集合。 这可以是数据文件,也可以是参数和密码文件。
该数据库由一个或多个实例提供服务。 实例是客户端进程和数据库之间的接口。 在并行服务器配置(RAC)中,同一个数据库上可以有多个活动实例。
服务是数据库的连接句柄。 一个服务车由多个实例提供服务,每个实例可以提供多个服务。 服务用于使一个数据库中的应用程序组合成为可能。 每个应用程序都连接到它自己的服务,最终到达数据库的一个实例。
侦听器是侦听想要连接到实例或服务的客户端的进程。 侦听器将连接请求移交给实例后台进程,该进程为客户端执行数据库交互。
SIDORACLE_SID 只是实例的名称。

概念手册将会有很大帮助。
我希望这有帮助。

罗纳德

I don't know anything from sqlserver so what I can do is to try to explain what
* tablespace
* database
* listener
* service name
* SID
are.
A database is the collection of files that all together make the database. This can be datafiles but also parameter and password files.
That database is serviced by one or more instance[s]. An instance is the interface between client processes and the database. In a parallel server configuration - RAC - there can be multiple instances active on the same database.
A service is a connection handle to a database. A service van be serviced by multiple instances and every instance can serve multiple services. Services are used to make the combination of applications in one database possible. Every application connects to it's own service, ending up in an instance of the database.
A listener is the process that listens for clients that want to connect to an instance or service. the listeners hands over the connection request to an instance background process that performs the database interactions for the client.
A SID or ORACLE_SID is just the name of an instance.

The Concepts manual will be of great help.
I hope this helps.

Ronald

梦一生花开无言 2024-08-02 00:46:13

表空间是数据库存储的单位,大致相当于 Microsoft SQL Server 中的文件组。 参考

A tablespace is a unit of database storage that is roughly equivalent to a file group in Microsoft SQL Server. Ref

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文