Viewing 15 posts - 1 through 15 (of 284 total)
sorry...i updated the question now. with correct example.
September 5, 2023 at 4:52 pm
Thanks....This join works for me.....as i am looking for both results either join on t1.a =t2.a or t1.b=t2.b.....this returns results , when either of the fields ( t1.a or t1.b)...
August 15, 2023 at 8:13 pm
For DB2 connection , you need to set a odbc connection. Install db2 drivers first on sql server set up.
You need to set up/Create the node for db2.
August 15, 2023 at 2:55 pm
I used script task and cahnged the LF TO CRLF. Thanks. This process is permanent going forward
July 15, 2022 at 10:21 pm
Thanks working.
May 17, 2022 at 7:32 pm
Still same issue. Is it how you pass environment varibles correctly? I just specified folder name ? do we need to give path sepcifically?
May 17, 2022 at 2:34 pm
Thank you. I was able to update my logic based on the query you provided. Is there a way in your query to get the relationship for those i gave...
January 24, 2022 at 11:24 pm
Thanks for the Reply. I was able to validate data using Regular expressions , since we have oracle source data Using Script component as transformation in SSIS. It is way...
October 8, 2021 at 4:34 pm
Thank you everyone for the reply.
July 19, 2019 at 4:36 pm
;WITH CTE AS (
SELECT E.E_ID , E.D_ID, E.salary,Row_number() over (partition by d_id order by salary desc) as row
FROM Employee2 E
)
SELECT CurrentRow.E_ID , CurrentRow.D_ID , Nextrow.Salary as othersalary
from CTE CurrentRow
left JOIn...
July 18, 2019 at 9:34 pm
Here is how i am looking for status to be in second table. If there is no entry in table 1 for a loan Then i need status to be...
June 19, 2019 at 9:11 pm
I just provided two loans but if i take 1000 loans, i do not want same value for status1 , status 2 . instead i want to get different status...
June 19, 2019 at 8:44 pm
Viewing 15 posts - 1 through 15 (of 284 total)