从数据库架构中获取 XML 架构(SQL Server 2008 图表)
从数据库架构中获取 XML 架构(SQL Server 2008 图表)
Get XML schema from database schema (SQL Server 2008 diagram)
我使用的是 SQL Server 2008.他们是在 SQL Studio 企业管理器中执行此操作的一种方法吗?
I am using SQL Server 2008. Is their is a way to do this in the SQL studio enterprise manager?
而不是编写代码或使用外部工具>
推荐答案
SQL Server Management Studio 不提供执行此操作的方法.
SQL Server Management studio doesn't provide a way to do this.
将以下内容粘贴到代码窗口中可以让您接近:
Pasting the following into a code window gives you something close:
select * from INFORMATION_SCHEMA.COLUMNS for xml auto
否则,答案是否定的,必须编写代码或使用外部工具.
Failing that, the answer is no, not without writing code or using an external tool.
相关文章