Viewing 15 posts - 106 through 120 (of 285 total)
February 13, 2017 at 12:54 pm
SELECT @code
FROM inserted
February 13, 2017 at 12:43 pm
February 13, 2017 at 9:56 am
February 1, 2017 at 2:26 pm
What i was trying to do is get the Modelcode (from storedprocedure) as we execute the storedprocedure to enter the value to Table A. Use this "Modelcode" to do look...
February 1, 2017 at 2:17 pm
I have Firstname , firstname 1 , firstname 2 ,firstname3
If firstname is null thne firstname1 , if firstname1 is also null then Firstname2 ...will the case will work ?
Case when...
January 4, 2017 at 8:30 am
I have written code , but it throws error.
SELECT textresponse
,[Last Name] as LastName
,[First Name] as Firstname
[City]
FROM
(
Select
textresponse AS textresponse
,questiONtext
From #T
)AS P
PIVOT(
Max(textresponse) FOR [questiontext] in ([Last Name],[First Name],[City])
)as...
December 14, 2016 at 2:19 pm
So, Merge is good ? I am little confused to use lookup or merge.
November 10, 2016 at 2:23 pm
Thank you. Merge join worked .
November 8, 2016 at 1:42 pm
i am doing look up on destination to see if there is key already exists if not insert new record. SO i cannot send both match and unmatched to destination...
November 8, 2016 at 12:50 pm
I did use lookup on column3 but this way we get only matched data right? i need all data + matched one too to insert into new table.
November 8, 2016 at 12:34 pm
I would do it in tsql ...but wanted to do implment in ssis.
Because table a in one server and table b on other
November 8, 2016 at 11:26 am
Viewing 15 posts - 106 through 120 (of 285 total)