如何在 SQL Server 2005 中运行(执行).sql 文件?
我有一个 Orders_SPs.sql
文件。
其目的是在我现有的 Northwind 数据库中添加一个新的存储过程,该数据库是 在 SQL Server 2005 上运行,我还有 SQL Server Management Studio。
但我不知道如何执行该 .sql
文件,以便它可以从 Orders_SPs.sql
在我现有的 northwind
数据库中添加存储过程列表> 文件。
谢谢…。
I have a Orders_SPs.sql
file.
Its purpose is to add a new stored procedure inside my existing Northwind
database which is
running on SQL Server 2005 and I also have SQL Server Management Studio.
But I don’t know how to execute that .sql
file so it can add list of stored procedures in my existing northwind
database from Orders_SPs.sql
file.
Thanks….
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
File >打开>文件
orders_sps.sql
文件查询 >执行
(或按F5)File > Open > File
orders_sps.sql
fileQuery > Execute
(or press F5)在 SQL Server Management Studio 中打开该文件并按 F5。
Open the file in SQL Server Management Studio and hit F5.
打开 SQL Server Management Studio。打开后,通过单击“文件”-->“打开”来打开
.sql
文件。从工具栏上显示的数据库列表中选择
NorthWind
。现在按 F5。它将在您的 .sql 文件上运行 SQL 语句并创建存储过程。
Open Sql Server Management Studio. Once opened, open your
.sql
file by clicking File-->Open.Select the
NorthWind
from the Database list that appears on the tool bar. Now press F5.It will run the SQL statements on your .sql file and create the stored procs.