Bro ,Thanks for all patience you have to provide series on Ssis 🙏🙏.But only suggestion i ask is please avoid using script task where ever possible or please make one more video how to do same task without using script task and add link in comments .As u know script task has its own flaws and not every developer has knowledge on c sharp .
Thanks for your suggestion, yes wherever possible we should avoid using script task, I just given an example that it is also one way to do this. Using file system task you can do this like below th-cam.com/video/IbieDAatf5M/w-d-xo.html
Hi, In the below line you would need to change the code, string DestFilePath = ArchiveFolderPath + "\\" + FileName; Instead of Filename, you would need to provide the new file name.
hi Everybody, I have encounter this error "Warning: 0x80019002 at Package: SSIS Warning Code DTS_W_MAXIMUMERRORCOUNTREACHED. The Execution method succeeded, but the number of errors raised (1) reached the maximum allowed (1); resulting in failure. This occurs when the number of errors reaches the number specified in MaximumErrorCount. Change the MaximumErrorCount or fix the errors." how can I resolved it
Yes we should always use File System task to move the files from one location to another location. It was my bad that I used script task to move the files. Here is the video how you can use File System task to move the files. th-cam.com/video/IbieDAatf5M/w-d-xo.html
There is one more thing, if you are using file system task to move the file to archive folder, then you can just declare an ssis variable ArchiveFolder and provide it a valid folder path and then you can use that variable in the destination variable inside File System Task.
Hi Aqil, thank you for all your SSIS related videos. Can you please make a video on how to do unit testing of SSIS packages/ how does a developer test ssis package?
Thanks Priyanka. I have created few videos on debugging your SSIS packages which can be found here which might help you th-cam.com/video/Z7pUNlIIYR4/w-d-xo.html th-cam.com/video/1OMANQhoMQM/w-d-xo.html th-cam.com/video/8cLEEc4ZmZ8/w-d-xo.html th-cam.com/video/hVPKO3GkWxM/w-d-xo.html
Excellent tutorial. Please share the msbi installation steps . Is SQL server 2014 developer edition enough for msbi practice or any other tool required . Please help me
Thanks for your comment. You need SQL Server Developer edition and SQL Server Data Tools 2013 for the development of SSIS packages. I have made videos on both of the above topics 1. th-cam.com/video/HZwsBZJtZYc/w-d-xo.html 2 . th-cam.com/video/UEndVBefNbU/w-d-xo.html
Q: as a developer how to send our packages to tester for testing and how tester will send us packages for chenge back to developer please answer me Q: in which stage we decide is it new data or old data i mean whether it is in etl-staging--ods
Hi Ankush, thanks for question. Answer to both of your question differs company to company and project to project. A. Sometimes QA do not look at SSIS package at all, they just look at data. However still you want to send them the package. Just Zip whole Solution Folder and send it to QA. Similar way they can follow as well. Second time may be you can send just the .dtsx file to them and they can replace the old .dtsx file in their old solution with the new one. A. It depends project to project. Sometimes if possible we can fetch the new\modified data from source itself and while loading to staging tables we can decide if the data is new or updated. Similarly we can also decide from staging to ods if data is new or modified, its purely depends of the type of project and requirement. Thanks.
Thank u Aqil really happy to see you accepting my request and posting the scenario...your way of explanation is superb
Glad to know that you liked the video.
This is very useful information. Thank you Sir!
You are most welcome.
Bro ,Thanks for all patience you have to provide series on Ssis 🙏🙏.But only suggestion i ask is please avoid using script task where ever possible or please make one more video how to do same task without using script task and add link in comments .As u know script task has its own flaws and not every developer has knowledge on c sharp .
Thanks for your suggestion, yes wherever possible we should avoid using script task, I just given an example that it is also one way to do this. Using file system task you can do this like below
th-cam.com/video/IbieDAatf5M/w-d-xo.html
Hi thank you for your sharing. I have question, what if I also want to rename the file that I want to archive with date?
Hi,
In the below line you would need to change the code,
string DestFilePath = ArchiveFolderPath + "\\" + FileName;
Instead of Filename, you would need to provide the new file name.
Hi Akhil,
How to make copy of table .if we are getting data in tables like archiving files in SSIS
In this video you can see how to make copy of table.
th-cam.com/video/C8tLES1BHM4/w-d-xo.html
Hello Sir,
Is there any videos available on C# to learn sir. To get some basic or intermediate knowledge?
Hi, I don't have the C# videos on my channel but you can find plenty of them on youtube from other creators.
hi Everybody, I have encounter this error "Warning: 0x80019002 at Package: SSIS Warning Code DTS_W_MAXIMUMERRORCOUNTREACHED. The Execution method succeeded, but the number of errors raised (1) reached the maximum allowed (1); resulting in failure. This occurs when the number of errors reaches the number specified in MaximumErrorCount. Change the MaximumErrorCount or fix the errors."
how can I resolved it
There should be more details of error. It is a generic error message.
Can we use File System task to move file instead of Script task
Yes we should always use File System task to move the files from one location to another location. It was my bad that I used script task to move the files. Here is the video how you can use File System task to move the files.
th-cam.com/video/IbieDAatf5M/w-d-xo.html
There is one more thing, if you are using file system task to move the file to archive folder, then you can just declare an ssis variable ArchiveFolder and provide it a valid folder path and then you can use that variable in the destination variable inside File System Task.
Hi Aqil, thank you for all your SSIS related videos. Can you please make a video on how to do unit testing of SSIS packages/ how does a developer test ssis package?
Thanks Priyanka. I have created few videos on debugging your SSIS packages which can be found here which might help you
th-cam.com/video/Z7pUNlIIYR4/w-d-xo.html
th-cam.com/video/1OMANQhoMQM/w-d-xo.html
th-cam.com/video/8cLEEc4ZmZ8/w-d-xo.html
th-cam.com/video/hVPKO3GkWxM/w-d-xo.html
why file system task was not used to archive files ?
We can use either File System task or Script task to archive the files. I just used Script task in this example.
Excellent tutorial.
Please share the msbi installation steps .
Is SQL server 2014 developer edition enough for msbi practice or any other tool required .
Please help me
Thanks for your comment. You need SQL Server Developer edition and SQL Server Data Tools 2013 for the development of SSIS packages.
I have made videos on both of the above topics
1. th-cam.com/video/HZwsBZJtZYc/w-d-xo.html
2 . th-cam.com/video/UEndVBefNbU/w-d-xo.html
very helpful.. Thank you
Thanks Harsha Vardhan.
Q: as a developer how to send our packages to tester for testing and how tester will send us packages for chenge back to developer please answer me
Q: in which stage we decide is it new data or old data i mean whether it is in etl-staging--ods
Hi Ankush,
thanks for question. Answer to both of your question differs company to company and project to project.
A. Sometimes QA do not look at SSIS package at all, they just look at data. However still you want to send them the package. Just Zip whole Solution Folder and send it to QA. Similar way they can follow as well. Second time may be you can send just the .dtsx file to them and they can replace the old .dtsx file in their old solution with the new one.
A. It depends project to project. Sometimes if possible we can fetch the new\modified data from source itself and while loading to staging tables we can decide if the data is new or updated. Similarly we can also decide from staging to ods if data is new or modified, its purely depends of the type of project and requirement. Thanks.
Nice video
Thanks for your comment.
Good job
Glad to know that you liked the video. Thanks.
Please provide the code in notepad
I have uploaded the code to the google drive.