使用 SSIS 将视图转换为表
使用 SSIS 将“db1”中的复杂视图转换为“db2”中的表是个好主意吗?
将视图转换为表格的目的是使报告更快。
有什么缺点或者风险吗?
Is it a good idea to convert complex views in "db1" into tables in "db2" using SSIS.
the purpose of converting views to tables is to make the reports faster.
Is there any disadvantages or risks?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以更好地使您的视图模式绑定并根据需要添加索引。 这样做实际上会导致 SQL Server 在您的服务器上创建视图的具体副本。
有关详细信息,请在此 MSDN 链接中搜索“SCHEMABINDING”。
You would do much better to make your view schema-bound and add indexes as appropriate. Doing this will actually cause SQL Server to make a concrete copy of the view on your server.
For more information, search for "SCHEMABINDING" in this MSDN link.