从数据集创建数据库(mdf)
我有一个由大量信息表组成的数据集。 是否可以根据我的数据集的描述自动创建 SQL Server 数据库(mdf 文件)? 当然,我可以手动完成,但可能有更好的方法吗?
I have a DataSet consistint of a big number of tables of information.
Is it possible automaticly create SQL Server DataBase (mdf-file) from description of my DataSet?
Of course, I can do it manually, but may be there is a better way?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我有一个 XSLT 脚本,它将从数据集 xsd 创建 DDL 语句。它位于此处。必须创建数据库本身,并且必须手动执行 XSLT 脚本创建的 SQL 脚本。但是,如果您有一个足够复杂的数据集和足够多的表,那么这可能比手动完成这一切更好。
I have a XSLT script that will create DDL statements from a DataSet xsd. It's here. The database itself would have to be created, and you'd have to manually execute the SQL script the XSLT script created. But if you have a complex enough DataSet with enough tables, it might be preferable to doing it all by hand.