SQL Server 内存中的整个表
我想知道我的表在 SQL 中的内存位置,
- 是否可以知道表或所有注册表存储在哪里?
I want to know the memory location of my table in SQL,
- Is it possible to know where is it stored the table or all the registries?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是不可能的。
如此程度地微观管理 SQL Server 将是一个非常糟糕的主意。这也不是非常有用的信息——你会用它做什么?
It is not possible.
Micro managing SQL Server to this extent would be a very bad idea. It is also not very useful information to have - what would you do with it?
不是。在。全部。
SQL Server 是一个数据库引擎,可以为您管理此操作。
如果你认为你能比 SQL Server 团队做得更好,那是相当令人难以置信的傲慢
还有其他更实际的原因(第一想法)
- 服务包之间的内部结构发生变化
- 任何 INSERT 的事务日志记录
- ...
Not. At. All.
SQL Server is a database engine that manages this for you.
It's quite unbelievable arrogance if you think you can do it better than the SQL Server team
There are other more practical reasons (first thoughts)
- Internal structures change between service packs
- Transaction logging of any INSERT
- ...