Viewing 15 posts - 9,556 through 9,570 (of 13,880 total)
Any ideas?
I would start by taking Excel out of the equation. Output the data to CSV (or fixed-width) and work from there.
November 15, 2013 at 12:03 am
SPtiruttani (11/14/2013)
I need the to subtract the value from the previous record and insert into another table
Declare @temp Table( [DeviceID] Int,[ctDate] DateTime,[Value] INT )
Insert Into @temp Values(1,'20131114 00:00:00',10)
Insert Into...
November 14, 2013 at 11:58 pm
Does your SQL Agent proxy credential have access to the file? Is it a domain account?
November 14, 2013 at 1:59 pm
Have a look here and see whether it helps.
November 14, 2013 at 1:04 pm
The proxy account also needs to be associated with the SSIS subsystem, I think.
November 14, 2013 at 12:29 pm
OK, maybe you could put some more sophisticated error-handling in the script in an effort to work out exactly which row is causing the error. I don't remember having any...
November 14, 2013 at 12:23 pm
Are there any other errors? The one you posted doesn't really help that much, unfortunately.
Are you saying that all packages containing scripts fail when run under SQL Agent, or just...
November 14, 2013 at 11:49 am
dan-572483 (11/13/2013)
November 13, 2013 at 8:43 am
The first thing I would do is try to work out at what stage the characters are being dropped. You can think of your package as going through the following...
November 13, 2013 at 8:12 am
This avoids possible issues with SQL injection.
Hi Dwain, I did consider this. But as the variable in question had a numeric datatype, I could not see how there could be...
November 13, 2013 at 2:03 am
If you run the packages in 32-bit mode, does that work?
How did you perform the migration of the packages? Have you tried redeploying them manually? (I'm sure you have.)
November 13, 2013 at 2:01 am
You are mixing string and integer data.
Try converting your integer variable to a string before you insert it into the code block.
November 12, 2013 at 6:24 am
You could try using the import wizard ...
November 12, 2013 at 3:15 am
Viewing 15 posts - 9,556 through 9,570 (of 13,880 total)