February 8, 2016 at 11:43 am
Good tutorial. I get the following error when I follow along though.
Node tbSource Source: Could not execute Query on Connection SSISIncrementalLoad_Source:
SELECT * FROM dbo.tblSource
A network-related or instance-specific error occurred while establishing a connection to SQL Server.
...
Could not open a connection to SQL Server.
June 28, 2016 at 5:18 pm
Great Post for the starters.I am a newbie in SSIS and BIML ,this post explain how to implement incremental load for single table. But is there any logic in BIML which can do incremental load for all the tables in the database? Long story short does BIML Implement the incremental load for all the tables in the database?
June 29, 2016 at 9:20 pm
prathmanu (6/28/2016)
Great Post for the starters.I am a newbie in SSIS and BIML ,this post explain how to implement incremental load for single table. But is there any logic in BIML which can do incremental load for all the tables in the database? Long story short does BIML Implement the incremental load for all the tables in the database?
The next step in this stairway, http://www.sqlservercentral.com/articles/BIML/101472/ shows just how to do that.
June 29, 2016 at 11:21 pm
I read this post. But it doesn't explain how the deleted rows will be updated.
October 27, 2017 at 1:23 am
Hi,
I am new to BIML, I am trying to create BIML for SSIS package which is using Merge join , and per Merge Join concept we need sorted data as input for Merge Join , I am not able to get it sorted without using SORT transformation.
Thanks
October 27, 2017 at 1:07 pm
nikki_d - Friday, October 27, 2017 1:23 AMHi,I am new to BIML, I am trying to create BIML for SSIS package which is using Merge join , and per Merge Join concept we need sorted data as input for Merge Join , I am not able to get it sorted without using SORT transformation.
Thanks
That should be an option of the data set output if the data is already sorted. Either that or add a SORT transform (though that's a blocking transform). Not sure how that's set in BIML, but the forums over at varigence.com should get you some additional help there.
November 1, 2017 at 11:38 pm
Peter Schott - Friday, October 27, 2017 1:07 PMnikki_d - Friday, October 27, 2017 1:23 AMHi,I am new to BIML, I am trying to create BIML for SSIS package which is using Merge join , and per Merge Join concept we need sorted data as input for Merge Join , I am not able to get it sorted without using SORT transformation.
Thanks
That should be an option of the data set output if the data is already sorted. Either that or add a SORT transform (though that's a blocking transform). Not sure how that's set in BIML, but the forums over at varigence.com should get you some additional help there.
Thanks for the reply, I was already using SortKeyPosition="1" with sorted data output , Now got it implemented in BIML as well 🙂 , Below is the BIML :
<Columns>
<Column SourceColumn="ID" TargetColumn="ID_DWH" SortKeyPosition="1" />
</Columns>
Viewing 7 posts - 16 through 21 (of 21 total)
You must be logged in to reply to this topic. Login to reply