Viewing 15 posts - 11,056 through 11,070 (of 11,676 total)
And what about configurations? Do you use config files/tables?
There must be some reason why the set-up is different in SQL Server Agent.
Are all the permissions set-up correctly?
October 4, 2010 at 8:15 am
Raunak Jhawar (10/4/2010)
da-zero (10/4/2010)
Raunak Jhawar (10/4/2010)
October 4, 2010 at 7:11 am
Raunak Jhawar (10/4/2010)
October 4, 2010 at 6:52 am
Try the following:
create a variable of type string. Let's call it str_ExecSP.
Populate this variable with the following expression:
"EXEC dbo.proc_TEmptest " + (DT_WSTR,50) @[User::value1] + " , " + (DT_WSTR,50) @[User::value2]...
October 4, 2010 at 6:05 am
Are you running the SSIS package in 32 or in 64-bit mode?
It also seems that your connection string is incomplete (or you copy pasted just a small part of it)....
October 4, 2010 at 5:53 am
It kind of depends I think 🙂
But if you are allowed to use linked servers and if you have good indexes on those tables, I would prefer the left outer...
October 4, 2010 at 5:48 am
Good question and thanks to Oleg for the more detailed explanation.
@nakul: no excuses about having no time to do the detailed reasoning 🙂 Post your question a few days later...
October 4, 2010 at 12:22 am
Raunak Jhawar (9/27/2010)
rmdichos_29 (9/27/2010)
Error:
[OLE DB Destination [73]] Error: SSIS Error Code DTS_E_OLEDBERROR. An OLE DB error has occurred. Error code: 0x80004005. An OLE DB record is available. ...
September 27, 2010 at 6:55 am
I did a small test, and manually cancelling the package execution in BIDS doesn't generate any logging.
I guess that nobody is logging into your server and manually killing SSIS packages,...
September 27, 2010 at 6:49 am
Hugo Kornelis (9/27/2010)
da-zero (9/27/2010)
So 1+1 should still be rejected in your opinion.
It is. ISNUMERIC('1+1') returns 0. And that makes sense, because '1+1' does not convert to any of the numerical...
September 27, 2010 at 4:16 am
tommyh (9/27/2010)
And yes i dont think $1 should count as numeric. $ is a currency symbol not a number.
+ / * - % are arithmetic operators, not numbers. So 1+1...
September 27, 2010 at 3:36 am
tommyh (9/27/2010)
da-zero (9/27/2010)
But I don't think that considering scientific notation as numeric is stupid. 2e1 is just another way...
September 27, 2010 at 1:29 am
Good question, although I seem to remember that I've seen similar ones.
But I don't think that considering scientific notation as numeric is stupid. 2e1 is just another way writing 20,...
September 27, 2010 at 12:28 am
Viewing 15 posts - 11,056 through 11,070 (of 11,676 total)