Viewing 15 posts - 271 through 285 (of 642 total)
I found the following youtube video by Microsoft technical writer showing how to create a lookup against a cached referenced data set. http://www.youtube.com/watch?v=FB5OPkGsDtA
It shows how to create a lookup...
May 27, 2013 at 5:55 pm
Before you eliminate the #temp table, take a look at this link and see if it's ideas help solve the #temp table issue.
http://www.sql-server-performance.com/2013/temp-tables-ssis/
As far as the error message, I will...
May 27, 2013 at 12:26 am
I'm not saying you can't execute a sproc as a sql statement but I've never done it. Why don't you just extract the sql out of the sproc for the...
May 26, 2013 at 9:41 pm
awesome. Thanks. I will learn this thanks to your showing me the way. I appreciate it.
May 26, 2013 at 2:35 pm
create NONCLUSTERED INDEX #idx_ID on #TID(ID) include (TID)
hmmm. the create index is for a temp table I don't see referenced anywhere else (I see #ID and #EID)
Can you remove...
May 26, 2013 at 12:57 pm
I have another CASE statement, similar but different, with which I am struggling.
Here's the case statement:
, AcctNum = CASE
When [Obj Acct] = 0 then [Sub]
When [Sub] = 0 then [Obj...
May 26, 2013 at 11:14 am
Hi BlackGarlic,
First, my advice is that you post this to the T-SQL forum because this one on SqlServerCentral is for Integration services (SSIS) which is not as frequently visited as...
May 26, 2013 at 11:07 am
Vikash, thanks a lot.
I put it in that way and Derived Column Transformation Editor 'accepted' it, meaning the Expression went black. I haven't run the SSIS package yet, but...
May 25, 2013 at 11:25 pm
Bhaskar, thanks for input. I think the problem in this case was that I am concatenating a string value ie. '.' with a different datatype and everything has...
May 23, 2013 at 6:52 am
Thank you Kingston. Missed converting those two column references to varchar.
May 23, 2013 at 6:50 am
sounds like a paraphrase of error message. I don't get your point.
There's an int I've cast as varchar so that I can concatenate with '.' and num2 which I've also...
May 23, 2013 at 12:19 am
Careful thought before I ask the following:
Would it be ok with you not to post to my topics for about 6 months? There are so many people on the...
May 21, 2013 at 8:59 am
Well, i'm not going to say anymore, other than, thank you all for your time.
May 21, 2013 at 4:40 am
In that case I was trying to learn cursors, and there was no better way. I even prefaced and said something like, I don't want to be talked out...
May 20, 2013 at 7:29 am
Viewing 15 posts - 271 through 285 (of 642 total)