我的表中有一个列设置为xslt(XML(。),而不是null)。
现在我使用常规字符串来设置它。像这样:
UPDATE table
SET xslt =
'<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:template match="/">
<html>
<body>
<xsl:apply-templates />
</body>
</html>
</xsl:template>
<xsl:template match="data">
<table width="400" border="1">
<tr bgcolor="#a0acbc">
</tr>
<xsl:for-each select="row">
</xsl:for-each>
</table>
</xsl:template>
</xsl:stylesheet>'
WHERE ....
我想做这样的事情:
UPDATE table
SET xslt = C:\test\Test.xlm
这可能吗?
答案 0 :(得分:0)
你能试试吗
select
cast(x as xml)
from
OPENROWSET (BULK 'C:\test\Test.xml',SINGLE_BLOB) myXml(x)
答案 1 :(得分:0)
虽然可以从数据库引擎所在的服务器驱动器上读取内容,但SQL Server不可能轻松地从网络上其他计算机的磁盘读取内容。在许多环境中,开发人员不得访问运行SQL Server的服务器的驱动器。
有几种方法可以获得你想要的东西,但是: