Viewing 15 posts - 1 through 15 (of 49 total)
The exact error is as follows:
An error occurred during the execution of xp_cmdshell. A call to 'LogonUserW' failed with error code: '1326'
I don't think its a syntax issue there. Sounds...
November 19, 2010 at 6:08 am
Try both of your suggestions. No sucess.
August 27, 2010 at 12:38 pm
Yup.
Used Derived Column Transformation and got the substring of the desired length on all the columns.
Package ran sucessfully.
Thanks for the help.
October 28, 2009 at 8:27 pm
Column widths are correct. Column 0 contains 5659 for all the rows. I don't see any special character in this column to cause problem.
October 28, 2009 at 4:05 pm
In one way or the other I need to use qualifier. If I run on SSIS Execute SQL TASK (AS400 Connection), I don't need to specify ASWTEST.S1012A5C. I can just...
October 22, 2009 at 3:39 pm
ASWTEST is servername
S1012A5C is catalog name
IC1480BFPD is Library name
Then Table Name, Column Name.
BTW Librayname.ColumnName is attached.
When I run simple select statement, it runs with 5 qualified names...It doesn't run with...
October 22, 2009 at 1:27 pm
Thanks for your patience working with me. Its been a huge pain. I ran the two pieces seperately and still erroring out
SELECT [DataWarehouse480].[dbo].[Temp_SalesRep].XUBRNAM
FROM [DataWarehouse480].[dbo].[Temp_SalesRep]
WHERE [DataWarehouse480].[dbo].[Temp_SalesRep].XUBCUNO = ASWTEST.S1012A5C.IC1480BFPD.XROHUB.XUBCUNO
ERROR:failed with...
October 22, 2009 at 12:32 pm
BTW, I have removed the spaces between the table qualifier and column. Still same issue.
SELECT XUBRNAM
FROM [DataWarehouse480].[dbo].[Temp_SalesRep]
WHERE [DataWarehouse480].[dbo].[Temp_SalesRep].XUBCUNO = ASWTEST.S1012A5C.IC1480BFPD.XROHUB.XUBCUNO
AND EXISTS
(SELECT 1 FROM [DataWarehouse480].[dbo].[Temp_SalesRep] WHERE...
October 22, 2009 at 10:24 am
Tried the following SELECT based on your suggestion. Erroring out.
SELECT XUBRNAM
FROM [DataWarehouse480].[dbo].[Temp_SalesRep]
WHERE [DataWarehouse480].[dbo].[Temp_SalesRep].XUBCUNO = ASWTEST.S1012A5C.IC1480BFPD.XROHUB.XUBCUNO
AND EXISTS
(SELECT 1 FROM [DataWarehouse480].[dbo].[Temp_SalesRep] WHERE [DataWarehouse480].[dbo].[Temp_SalesRep].XUBCUNO = ASWTEST.S1012A5C.IC1480BFPD.XROHUB .XUBCUNO)
ERROR:
failed with...
October 22, 2009 at 10:13 am
Sure did. Same error.
UPDATE ASWTEST.S1012A5C.IC1480BFPD.XROHUB
SET XUBRNAM =
(SELECT XUBRNAM
FROM [DataWarehouse480].[dbo].[Temp_SalesRep] T1
WHERE T1.XUBCUNO = ASWTEST.S1012A5C.IC1480BFPD.XROHUB .XUBCUNO
AND EXISTS
(SELECT 1 FROM [DataWarehouse480].[dbo].[Temp_SalesRep] T1 WHERE T1.XUBCUNO = ASWTEST.S1012A5C.IC1480BFPD.XROHUB .XUBCUNO))
October 22, 2009 at 8:19 am
No. Still the same error persists.
Token SET was not valid. Valid tokens: . SQLSTATE: 42601, SQLCODE: -104". Possible failure reasons: Problems with the query, "ResultSet" property not set correctly, parameters...
October 22, 2009 at 7:39 am
Sorry. The error I posted earlier might not be relevant. That was run on query analyzer.
Here is the exact error message when I tried to run the queriy in SSIS...
October 21, 2009 at 2:27 pm
Thanks guys. I am almost there. I added a linked server to AS400 and can easily bring the AS400 table in the join and find the record that do not...
October 21, 2009 at 1:59 pm
Viewing 15 posts - 1 through 15 (of 49 total)