使用管理工具刷新数据库或表
在 SQL Server Management Studio 中是否有刷新表/数据库的选项?
Oracle 有类似的选项吗?如果是的话我该怎么做?有运行命令来执行此操作吗?最后,刷新实际上做了什么?它是否提交最新数据并打破锁定?
In SQL Server Management Studio there is an option to refresh a table / database?
Is there a similar option for Oracle? If yes how do I do this? Is there a command to run to do this? Lastly what does the refresh actually do? Does it commit the latest data and break locks?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我假设您正在谈论上下文菜单项。
刷新选项仅意味着它将再次从 SQL Server 请求表的结构(键、列、约束等)。它与数据、锁、提交更改或类似的东西无关。
此菜单选项也可用于 SSMS 中 SQL Server 数据库的树视图中的其他对象(例如数据库)。
I assume you're talking about the context menu item.
The Refresh option just means it will request the structure of the table (keys, columns, constraints, and so on) again from SQL Server. It has nothing to do with data, locks, committing changes or anything like that.
This menu option is also available for other objects (like database) in the tree view for a SQL Server database in SSMS.
借助 SQL Server,您可以使用 SQL Developer 刷新表。
With SQL server you can use SQL Developer to refresh tables.