SQL Server Management Studio 查看和更改表
刚刚从 mysql/mysql 工作台转移到 sql azure。我安装了 SQL Server Management Studio,并且能够连接到 SQL Azure 上的远程数据库。能够查看数据库表,但如何编辑表或添加列或外键约束。当我右键单击表时,它只会为我提供“新表”、“脚本表”等选项。SQL
Server Management Studio 是否具有类似于 Mysql 工作台 UI 的功能。有一些帖子讨论了这个问题,但没有专门针对 SQL Azure。
Just moved to sql azure from mysql / mysql workbench. I installed SQL Server Management Studio and was able to connect to the remote database on SQL Azure. Am able to view the database tables but how do I go about editing the tables or adding a column or a foreign key constraint. When I right click on the table it just gives me options for New Table, Script Table etc.
Does SQL Server Management Studio have something similar to the Mysql workbench UI. There were some posts discussing this but none specific to SQL Azure.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
目前,任何模式修改只能通过脚本完成。使用 GUI 可以做的事情仍然非常有限。有许多第三方工具提供不同程度的功能(休斯顿、navicat 等),正如您所期望的那样,我相信 Microsoft 自己的产品将会得到改进。但是,目前...脚本是管理 Azure 的基础。
许多人在本地保留数据库的副本以使用 SSMS GUI 进行操作。然后,当他们对所拥有的内容感到满意时,可以使用 GUI 创建脚本以应用于 AZURE 副本。
Currently any schema modifications can only be done via script. The things you can do with the GUI are still pretty limited. There are a number of 3rd party tools that offer varying degrees of functionality (houston, navicat, etc.) like you are expecting and I'm sure Microsoft's own offerings will improve. But, for now... scripting is the bread and butter of managing Azure.
A lot of people keep a copy of the database locally to work on with the SSMS GUI. Then when they are happy with what they have use the GUI to create the scripts to apply to the AZURE copy.