08 Incremental data load in SSIS based on lastupdated or modifieddate | SSIS real time scenarios

08 Incremental data load in SSIS based on lastupdated or modifieddate | SSIS real time scenarios

Learn SSIS

3 года назад

25,995 Просмотров

Ссылки и html тэги не поддерживаются


Комментарии:

@Altamashrk
@Altamashrk - 11.12.2023 10:56

Sir, your ssis playlist enough to land a job as a ssis developer

Ответить
@lilli7984
@lilli7984 - 27.11.2023 11:37

Salam aleikom Sorry if I insist, this query hi I need to perform this in SISS how can I perform two aggragate? because once I need to group by month and then I need a new column which is grouped by year, PLEASE HELP ME


SELECT
d.month, d.year,
SUM(c.crime_gravity) AS MonthlyGravity,
SUM(SUM(c.crime_gravity)) OVER (PARTITION BY d.year) AS AnnualTotalGravity,
(SUM(c.crime_gravity) * 100.0) / NULLIF(SUM(SUM(c.crime_gravity)) OVER (PARTITION BY d.year), 0) AS PercentageGravity
FROM
Date d
JOIN
Custody c ON c.date_fk = d.date_pk
GROUP BY
d.month, d.year
ORDER BY d.month, d.year;
Has to be performed in SISS without usino sql just the tools inside SISS like lookup aggregation ect.
Please help me

Ответить
@lilli7984
@lilli7984 - 25.11.2023 01:15

hi I need to perform this in SISS how can I perform two aggragate? because once I need to group by month and then I need a new column which is grouped by year, PLEASE HELP ME


SELECT
d.month, d.year,
SUM(c.crime_gravity) AS MonthlyGravity,
SUM(SUM(c.crime_gravity)) OVER (PARTITION BY d.year) AS AnnualTotalGravity,
(SUM(c.crime_gravity) * 100.0) / NULLIF(SUM(SUM(c.crime_gravity)) OVER (PARTITION BY d.year), 0) AS PercentageGravity
FROM
Date d
JOIN
Custody c ON c.date_fk = d.date_pk
GROUP BY
d.month, d.year
ORDER BY d.month, d.year;

Ответить
@user-ox5xu7op1r
@user-ox5xu7op1r - 26.10.2023 13:03

Hello Ahmed,

I hope you are doing well,

how do validate the foreign key in fact table already exists in the dim table before loading the data?
should I use two lookup components? One for left join and the second one for split data to new records and updated records?

thanks,

Ответить
@shraddhadhakad1154
@shraddhadhakad1154 - 16.10.2023 15:49

Hi Aqil
I'm following your SSIS playlist. It's really helpful.
I have to load the data from oracle to SQL server. I do no have timestamp in oracle DB but i have date of transaction. Please create a video on this topic else if you have any article pls share the link . It's urgent . It would be great if you help me .🙂🙂🙂🙂

Ответить
@Rohan-ce1sy
@Rohan-ce1sy - 28.09.2023 10:41

Good expalnation. Very helpful video @learnssis.
Can you please share the dataset fo this video?
Can you also create a video which has Incremental load (with Creation Date)+ Staging Layer + SCD type 1 & 2 + Audit table for ETL load date all in one SSIS package ?
Thanks

Ответить
@user-ox5xu7op1r
@user-ox5xu7op1r - 17.08.2023 14:13

Hi Ahmed,

Thanks for the great video.

I got this error after the execution

Execute SQL Task Error: Executing the query
declare @updatedRecords int

UPDATE a
SET a...." failed with the following error: "Multiple-step OLE DB operation generated errors.
Check each OLE DB status value, if available. No work was done.". Possible failure reasons:
Problems with the query, "ResultSet" property not set correctly, parameters not set correctly, or connection not established correctly.

Ответить
@muatafayousif6084
@muatafayousif6084 - 13.08.2023 02:48

Hello bro, I did the work step by step, but the result was 10 records before the update. Please advise🤨

Ответить
@user-mu1tg5wv4v
@user-mu1tg5wv4v - 17.06.2023 13:53

Please put a video on : How do we add parameter for the ADO source, like using variables to filter the records. select * from table1 where date > ? I am connecting to a DB2 source and retrieving data, it already got 20million records on it, i just what to upload it incrementally on last modified date. need to query the DB2 using the date modified.

Ответить
@sanjuchauhan7175
@sanjuchauhan7175 - 02.06.2023 01:03

Nice

Ответить
@salmanriaz5184
@salmanriaz5184 - 15.05.2023 13:44

Hi, Sir your lecture is excellent it is exactly what I was looking for in my project but 2 things I want to notify here first, please try not to use the same named Databases or tables for the source and destination it is making too much confusion and complicated to understand and second, the provided script is not sufficient as it is a 1-hour session and you just provided a single statement please check. I also want to thank you for your efforts in doing these sessions and helping people like me. God Bless you. Keep it up!!

Ответить
@aryanjakangari6915
@aryanjakangari6915 - 16.04.2023 08:22

Hi bro, i want learn SSIS from u pls how to contact and pls. Msg me

Ответить
@manjunathak9291
@manjunathak9291 - 15.03.2023 15:12

Hi Ahmed,

Can you please let me know. How to implement for multiple tables..where in my environment there are 300 tables in the database will be modified/inserted every day.

Thanks.. this video helped a lot..
And I have implemented this for one table.

Ответить
@NebroProg
@NebroProg - 05.03.2023 15:03

Hello Ahmed,

I pray to God to bless you.
Extremely useful video.
Can you please make a video illustrating how to handle the incremental load in the dimensions table?
for example, what happens if the value in the dimension table changes, do we need to change the value in all fact table or, just change it based on the time.

Best regards,
Alnebras.

Ответить
@mundial8514
@mundial8514 - 24.01.2023 01:56

The video is cool. But how can you make one for a fact table?

Ответить
@keepup2106
@keepup2106 - 14.01.2023 06:06

Excellent video as usual, just a question, is this the best way to load large number of (60 million or more) rows in incremental loading or there is another way?

Ответить
@mohammadzaman7383
@mohammadzaman7383 - 10.12.2022 21:27

Question:Is it possible in Loading from Different Layout tables Dynamically using Foreach Loop ? Never saw any example for that over the net. Please can you do that for us, Mr Aqil

Ответить
@fitehalewdemilew4527
@fitehalewdemilew4527 - 06.10.2022 05:38

Thanks man, you're good at it!

Ответить
@thiagoperezsantos
@thiagoperezsantos - 31.08.2022 11:26

Thank you very much!

Ответить
@seethaladeviu
@seethaladeviu - 12.08.2022 08:16

How to do lookup tarnsformation from SQL server to oracle sql

Ответить
@ramamohan9024
@ramamohan9024 - 12.08.2022 06:38

hi nice explanation thank you, can you show the same looping through list of tables in a config table, with dynamic columns mapping and updating/ insert using above concept

Ответить
@yess9086
@yess9086 - 29.07.2022 16:05

Would you please make a video on incremental load from oracle to SQL server

Ответить
@sohailshaik5357
@sohailshaik5357 - 29.07.2022 15:40

Hi Aquil, could u make video on incremental load data through MSSQL Server to Sql Server. Thanks in advance.

Ответить
@ashitrivedi9856
@ashitrivedi9856 - 28.06.2022 12:58

could u make video on incremental load data through stored Procedure.Thanks in advance.

Ответить
@jatspower1
@jatspower1 - 26.06.2022 13:42

can we do the same when the source and destination on different servers?

Ответить
@sathishkumar-yd3pk
@sathishkumar-yd3pk - 25.05.2022 13:06

This is the best way of doing incremental load

Ответить
@masoudsaffari9046
@masoudsaffari9046 - 23.04.2022 11:51

Thank you for this great tutorial. would you please share all the codes used in this tutorial?

Ответить
@indrasishdatta7210
@indrasishdatta7210 - 31.03.2022 15:05

Thank you, this was a great tutorial.

Ответить
@ExonaQ
@ExonaQ - 07.03.2022 21:49

nice content but very long video

Ответить
@lucamel8766
@lucamel8766 - 21.02.2022 13:59

Tx for the detailed explanation

Ответить
@sandeeppai25
@sandeeppai25 - 22.01.2022 15:13

Great tutorials, thanks.
How to implement scd type 2 dimension in SSIS without using SCD component?

Ответить
@sivakumar-lm1hc
@sivakumar-lm1hc - 18.12.2021 18:40

Is there any way to update the destination table without creating a ZZ_EmailAddress temporary table?

Ответить
@mallikarjunreddy5422
@mallikarjunreddy5422 - 29.09.2021 18:28

Hi sir I know your email ? to discuss

Ответить
@thrilokreddy52
@thrilokreddy52 - 21.09.2021 18:41

Hi Aqil,I have received an Excel file weekly and I need to load the data into Salesforce destination with incremental load using SQL procedure. Can you make video for this scenario.

Ответить
@jagadeeshpinninti
@jagadeeshpinninti - 27.06.2021 17:41

Aqil, can you do video's on real time scenarios and best practices

Ответить
@nivetha.meceskct6693
@nivetha.meceskct6693 - 26.06.2021 21:00

Bro need a help from you..... preparing for ssis interview need your suggestions if possible can u provide mail or contact number?

Ответить
@ericsos101
@ericsos101 - 23.06.2021 09:49

Can you please share dataset

Ответить
@sathiyamoorthi9224
@sathiyamoorthi9224 - 20.06.2021 09:41

Hi Aqil,
Very very thanks lot

Ответить