我想使用Execute SQL Task
查询从数据库表中返回varbinary
数据。该查询需要UniqueIdentifier
作为参数,并将其作为string
存储在Package变量中。此查询的结果(varbinary数据)将存储在Byte类型的第二个变量中。
下表显示了我的局部变量列表,请注意DocumentGuid是由控制流的另一部分预先填充的
| Variable Name | Qualified Name | Scope | Data Type | Comments |
|---------------|--------------------|---------|-----------|------------------------------------------|
| DocumentGuid | User::DocumentGuid | Package | String | Used to store a GUID value |
| DocumentData | User::DocumentData | Package | Byte | Used to hold varbinary data from a query |
当我尝试在Execute SQL Task
这样的查询中使用它时:
SELECT DocData
FROM docsRepo
WHERE DocumentGuid = ?
传递参数
| Variable name | Direction | Data Type | Parameter Name | Parameter Size |
|--------------------|-----------|-----------|----------------|----------------|
| User::DocumentGuid | Input | GUID | 0 | 100 |
和结果集
| Result Name | Variable Name |
|-------------|--------------------|
| DocData | User::DocumentData |
我收到以下错误:
[执行SQL任务]错误:执行查询" SELECT DocData FROM
dbo.docsRepo ..."失败,出现以下错误:"转换失败 从字符串转换为uniqueidentifier时。"。 可能的失败原因:查询问题," ResultSet" 属性设置不正确,参数设置不正确,或 连接未正确建立。
我在这里错过了某种基本逻辑吗?以下脚本在SQL Server中运行良好:
SELECT DocData
FROM docsRepo
WHERE DocumentGuid = '53A394A7-5D2B-40C0-A04D-90553E4535C3'
答案 0 :(得分:3)
我对您的样本进行了两处更改,然后我就能让它工作了。
第一个是在Execute SQL Task中将参数类型更改为字符串。我知道,它是一个guid,但由于它是SSIS中的字符串变量,保持数据类型对齐并让后端rdbms / driver处理转换。
我改变的另一件事是DocData的数据类型。你定义为Byte但从未使用过它,我担心它是一个完整的字节,而不是字节。无论如何,对于我创建的表,使用SSIS的Object数据类型使其工作。
这是我的表格及其中的单个值
IF NOT EXISTS
(
SELECT
*
FROM
sys.tables
WHERE
name = 'docsRepo'
)
BEGIN
CREATE TABLE dbo.docsRepo
(
DocumentGuid uniqueidentifier
, DocumentData varbinary(MAX)
);
INSERT INTO
dbo.docsRepo
SELECT
'53A394A7-5D2B-40C0-A04D-90553E4535C3'
, CAST('Hello world' AS varbinary(MAX));
END;
检索查询
SELECT D.DocumentData FROM dbo.docsRepo AS D WHERE D.DocumentGuid = ?;
使用完整结果集配置。使用OLE DB驱动程序。参数名称0,数据类型varchar,变量User :: DocumentGuid。结果选项卡,我的结果集名称为0,变量User :: DocumentData
这个Biml将创建一个SSIS包,演示所有这些
<Biml xmlns="http://schemas.varigence.com/biml.xsd">
<Connections>
<OleDbConnection Name="localhost" ConnectionString="Provider=SQLNCLI11;Integrated Security=SSPI;Data Source=.\dev2014;Initial Catalog=tempdb" />
</Connections>
<Packages>
<Package Name="SO_50028154" ConstraintMode="Linear">
<Variables>
<Variable Name="DocumentGuid" DataType="String">53A394A7-5D2B-40C0-A04D-90553E4535C3</Variable>
<Variable Name="DocumentData" DataType="Object" />
</Variables>
<Tasks>
<ExecuteSQL Name="SQL GenerateTable" ConnectionName="localhost">
<DirectInput>IF NOT EXISTS(SELECT * FROM sys.tables WHERE name='docsRepo')BEGIN CREATE TABLE dbo.docsRepo(DocumentGuid uniqueidentifier, DocumentData varbinary(max)); INSERT INTO dbo.docsRepo SELECT '53A394A7-5D2B-40C0-A04D-90553E4535C3', CAST('Hello world' AS varbinary(max)); END</DirectInput>
</ExecuteSQL>
<ExecuteSQL Name="SQL Retrieve data" ConnectionName="localhost" ResultSet="Full">
<DirectInput>SELECT D.DocumentData FROM dbo.docsRepo AS D WHERE D.DocumentGuid = ?;</DirectInput>
<Parameters>
<Parameter DataType="AnsiString" Name="0" VariableName="User.DocumentGuid" />
</Parameters>
<Results>
<Result Name="0" VariableName="User.DocumentData" />
</Results>
</ExecuteSQL>
</Tasks>
</Package>
</Packages>
</Biml>
答案 1 :(得分:1)
您可以尝试使用明确的CAST
:
SELECT DocData
FROM docsRepo
WHERE DocumentGuid = CAST(? AS UNIQUEIDENTIFIER);
答案 2 :(得分:0)
看起来您可能在DocumentGuid
中存储的值不是有效的GUID,或者是您传递给查询的无效GUID
要查找您的表是否包含无效的GUID,您可以运行:
SELECT DocumentGuid
FROM docsRepo
WHERE TRY_CAST(DocumentGuid AS UNIQUEIDENTIFIER) IS NULL
答案 3 :(得分:0)
当您要将uniqueIdentifer作为varchar发送到Execute SQL Task时,可以在Execute SQL Task中使用此查询:
DECLARE @docGuid AS UniqueIdentifier
SET @docGuid = CAST ( '{' + ? + '}' AS UniqueIdentifier )
SELECT DocData
FROM docsRepo
WHERE DocumentGuid = @docGuid
的?按参数以大小为50的varchar发送