如何在 SQL Server 2005 中运行(执行).sql 文件?

发布于 2024-12-10 00:39:49 字数 287 浏览 1 评论 0原文

我有一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

你丑哭了我 2024-12-17 00:39:49
  1. 启动 SQL Server Management Studio
  2. 确保您位于正确的数据库中
  3. 从菜单中选择:File >打开>文件
  4. 查找并选择您的orders_sps.sql 文件
  5. 从菜单中,选择查询 >执行(或按F5)
  1. Launch SQL Server Management Studio
  2. Make sure you're in the right database
  3. Choose from menu: File > Open > File
  4. Find and select your orders_sps.sql file
  5. From the menu, choose Query > Execute (or press F5)
没有伤那来痛 2024-12-17 00:39:49

在 SQL Server Management Studio 中打开该文件并按 F5。

Open the file in SQL Server Management Studio and hit F5.

半寸时光 2024-12-17 00:39:49

打开 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文