如何获取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中的相对路径?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持html5模板网!
Sql server 表使用情况统计Sql server table usage statistics(Sql server 表使用情况统计)
在 WHERE 条件下获取 SQL 中的最后一条记录Getting the last record in SQL in WHERE condition(在 WHERE 条件下获取 SQL 中的最后一条记录)
在 SQL Server 中使用 FOR XML PATH 查询以获取分层数据Query to get XML output for hierarchical data using FOR XML PATH in SQL Server(在 SQL Server 中使用 FOR XML PATH 查询以获取分层数据的 XML
嵌入在 sum() 函数中的 T-SQL IF 语句T-SQL IF statement embedded in a sum() function(嵌入在 sum() 函数中的 T-SQL IF 语句)
表与临时表性能Table vs Temp Table Performance(表与临时表性能)
在对象资源管理器中看不到创建的表 - Microsoft Can#39;t see created tables in Object Explorer - Microsoft SQL Management Studio(在对象资源管理器中看不到创建的表 - Microsoft SQL Manag