Viewing 15 posts - 1 through 15 (of 389 total)
Unfortunately, the author is not available in my outlook.
But even I was thinking why to put additional code and ask SQL engine to decode the same which looks like overhead...
May 16, 2023 at 1:09 pm
Thanks Johan.
However just wondering why someone writes code like that "1 = " instead of simple AND / OR conditions.
Is there any benefit in writing such form?
May 16, 2023 at 11:49 am
September 3, 2017 at 12:51 am
Brandie Tarvin (2/25/2016)
Hard coding based on the dates given is not wise. Ideally, code should be written to logically decide what fits either circumstance depending...
February 25, 2016 at 6:08 am
Thanks for sharing nice question 🙂
Thanks Hugo for sharing all history.
December 1, 2015 at 9:45 pm
John Mitchell-245523 (7/3/2015)
July 6, 2015 at 10:19 pm
For incremental load, I guess you should use encryption techniques to find out actual updated records.
In case loading the updated records in temp table.
Also please let us know your package...
July 3, 2015 at 3:50 am
Will loading the id values in a temp table and making join with source to avoid For each loop container help me in it ?
June 28, 2015 at 11:14 pm
Are you able to execute package from BIDS ?
If you are able to execute in BIDS, it would be permission issue for user to the path where your package is...
June 28, 2015 at 11:02 pm
Eirikur Eiriksson (4/6/2015)
rhythmk (4/6/2015)
I am getting strange error mentioned below while executing my package.
Error: ForEach Variable Mapping number 0 to variable "??" cannot be applied
I am using SSIS 2012.
I...
April 6, 2015 at 2:57 am
Something like below.
SELECT ClientKey,VendorKey,
(SELECT eno,ResumeText,Email,Active,postalcode,country
FROM Candidates
FOR XML Path('Candidate'), TYPE, ROOT('Candidates'))
FROM CareerBuilderdatafeed
FOR XML RAW('CareerBuilderdatafeed')
February 22, 2015 at 11:45 pm
Hi Ashok,
Why don't you have below approach.
1.A separate connection config which will have all the connections and would be common to all packages.Please make sure that connection variables name would...
February 20, 2015 at 2:07 am
anshulparmar (2/19/2015)
Try using OLE DB Command instead and update flag while inserting new records.
How will you achieve it ?
Think of the scenario where OP wants to do this exercise for...
February 19, 2015 at 11:03 pm
Viewing 15 posts - 1 through 15 (of 389 total)