When searching for primes, you can increase the testnumber with 2 every time, since an odd number can’t be a multiplum of only even numbers. The initiation should check wether the limit is >=2, since 2 is not an odd number smaller than 1.
@WiseOwlTutorials3 жыл бұрын
As a maths graduate, Andy B will be devastated to learn that he has made such a schoolboy error!
@haatpraat5307 жыл бұрын
Perhaps when mentioning Sequence Containers transaction processing can also be mentioned. You could have say 3 different Execute SQL tasks in a Sequence Container that update a table. If the transaction property of the Sequence Container is set to 'required', then if any of the tasks fails within the Sequence Container ALL of the work of those tasks are rolled back.
@DesiHoonMain8 жыл бұрын
Great tutorial series
@mrleokarthik9 жыл бұрын
Excellent Tutorial for beginners, Can you provide SSIS files from all the lessons.
@marvid0087 жыл бұрын
Karthikeyan Shivasankaran bh
@ravikonda883510 жыл бұрын
Thanks for this tutorial
@abhimanyusharma80978 жыл бұрын
Where to get this prime no code??
@UriGerhard8 жыл бұрын
What's up with the audio on this one?
@feelingeverfine6 жыл бұрын
Change it to 1.25 and it sounds a little better.
@pratapchava18 жыл бұрын
I hope this was useful.. For Script task1: int TestNumber=Convert.ToInt32(Dts.Variables["User::TestNumber"].Value); int i; bool IfPrime = true; for (i = 2; i
@Anatoli88887 жыл бұрын
It's getting a bit harder because one have to add manually a lot of code to get it to work. While this is fun and good learning, for demonstrating certain features, perhaps some code could be provided? It was perfect, until this tutorial. Thank you, anyway.
@rafozoid7 жыл бұрын
I struggled with some code on other tutorials. Found some on the internet and others I had to guess what was hidden... Anyways, Great tutorials!