Viewing 15 posts - 1 through 15 (of 34 total)
;with myTable (StartDate ,EndDate) AS
That semicolon 'initiator' is there just to...
October 23, 2018 at 7:21 am
Hi,
Basically, I have to deny the rows in table2 > number of units in table 1 for that date range.
October 9, 2018 at 8:38 am
Hi Guys,
I solved this using Script task.
I added a foreach loop container and a script task and added below code
var directory = new DirectoryInfo(Dts.Variables["User::remoteFolder"].Value.ToString());
...
November 9, 2016 at 2:28 pm
My XML file has different nodes with different information. I have to put them in different tables and join them on their respective Id's and ParentId's.it is not in same...
November 3, 2016 at 2:39 pm
hi ,
Thank you!
I used distinct and got the answer.
I have to stage the data from XML file into different tables and then use joins to put them together...
November 3, 2016 at 2:04 pm
thank you :-). I put them in CTE and it worked
October 31, 2016 at 9:53 am
hi,
Thank you!!
we have to insert source table via webservice and I am doing this in a script task. after the source table is inserted via web service, then I have...
October 28, 2016 at 8:32 am
thank you !!
This makes sense!
Well, client have a web service which inserts the values and lot of bugs with webservice and wrong value is brrn assigned to create ID....
October 26, 2016 at 2:54 pm
Hi,
There is update trigger and it has something like below code,
UPDATE [dbo].
SET
.[CreateId] = ISNULL(deleted.[CreateId],
.[CreateId]),
.[CreateDate] = ISNULL(deleted.[CreateDate],
.[CreateDate]),
.[LastUpdate] = GETDATE(),
.[UpdateId] = SUSER_SNAME()
FROM [dbo].
JOIN inserted
ON (inserted.[tableId] =
.[tableId])
LEFT JOIN...
October 26, 2016 at 2:26 pm
thank you very much!
How can i achieve that using except clause?
October 17, 2016 at 9:01 am
Hi ,
Thank you!yes I agree with you! My client wants to check if columns are same .update only if they are not same. I could think only of this way....
October 15, 2016 at 9:27 am
Hi,
More than 40 columns.
October 13, 2016 at 8:32 pm
Hi,
We cannot have hash because target table does not have it. we cannot alter the target table.
Can we do this by dynamic updates?
i.e. I want to check if any...
October 13, 2016 at 5:35 pm
They are in different database.
Basically, I am looping the files in SSIS and loading each file in target table. so each time I loop the file and load in target...
October 13, 2016 at 10:00 am
Thank you :-).
I suggested same but they are asking to check individual column when there is no difference .
Thanks again 🙂
October 13, 2016 at 9:58 am
Viewing 15 posts - 1 through 15 (of 34 total)