t sql中的相对路径? [英] Relative path in t sql?

查看:29
本文介绍了t sql中的相对路径?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何获取t sql中的相对路径?以.sql文件位于D:\temp文件夹为例,我想获取D文件夹中hello.txt文件的路径:\temp\App_Data.如何使用相对路径引用?

How to get the relative path in t sql? Take for example a .sql file is located in the folder D:\temp, I want to get path of the file hello.txt in the folder D:\temp\App_Data. How to use the relative path reference?

假设我正在 SQL 服务器管理工​​作室中执行 sql 文件.

Let's say I am executing the sql file inside the SQL server management studio.

推荐答案

服务器正在执行 t-sql.它不知道客户端从哪里加载文件.您必须在脚本中嵌入路径.

The server is executing the t-sql. It doesn't know where the client loaded the file from. You'll have to have the path embedded within the script.

DECLARE @RelDir varchar(1000)
SET @RelDir = 'D:\temp\'
...

也许您可以以编程方式将路径放入 .sql 脚本文件中的 SET 命令中,或者您可以使用 sqlcmd 并将相关目录作为变量传入.

Perhaps you can programmatically place the path into the SET command within the .sql script file, or perhaps you can use sqlcmd and pass the relative directory in as a variable.

这篇关于t sql中的相对路径?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆