This is published 6 years ago 🤔. Just came across this tutorial. It's really awesome, explained very well. Thanks.
@uncle_eddies_adventures4 жыл бұрын
This man has single-handedly convinced me that I belong in the UK. Thank you sir.
@blrm46816 жыл бұрын
Thank you , your videos are excellent!!!! In my last job they did not use ssis (or have it installed - have no idea why) and now that I am looking for a new job,many of the jobs do mention it . Your tutorial with me trying to do the same myself should give me some basic starting knowledge.. Will make a donation (if I remember) once I land a job. Thank you.
@franciso46503 жыл бұрын
Can you please provide the sample data files for these tutorials, it will be greatly appreciated. Excellent job so far.
@MrIrrepressible6 жыл бұрын
This is great, thanks for this I'm sure it will come in handy for me at some point in time, I'm think of something like outputting the rows that have been affected by an update.
@parrisgjerde92125 жыл бұрын
And of course, instead of looping through the records in the table we could have just run a select statement to get the name and max protégés from the database... but where’s the fun in that😀 Nice video.
@WiseOwlTutorials5 жыл бұрын
Indeed! Thanks for the comment and for watching!
@judedcosta51789 жыл бұрын
Thanks Andy for these tutorials. Really good quality. You should get your content over to plural sight if possible!
@barnaberodrigues33419 жыл бұрын
Barnabe
@mohsenhs8 жыл бұрын
Awesome video, nice and clear explanation. Thanks a lot
@-Harambe10 жыл бұрын
Andy, thank you so much for these great tutorial videos. Andy, towards 11:46 minutes of this video, you are converting data type to string before you populate the local variable "Highest Name". Why is this necessary? Data type you assigned to "Highest Name" is already data type from the time of declaration. Also, can you run *.dtsx file from SQL Server job(task) for automation purpose?
@-Harambe10 жыл бұрын
***** Thank you so much for your help Andy! I really appreciate it.
@MiaMia-tb9cl6 жыл бұрын
Thank you for All God Bless You
@ryanblythe773510 жыл бұрын
Is there any advantage of having used a Script task to determine the largest value? Couldn't a ternary operator (?:) have been used in an expression task instead?
@akncaliskan81628 жыл бұрын
"Error: The type of the value (Int32) being assigned to variable "User::ServerName" differs from the current variable type (String). Variables may not change type during execution. Variable types are strict, except for variables of type Object."
@hemadriboddu63887 жыл бұрын
super ,thank you so much
@akncaliskan81628 жыл бұрын
There is no mistake like error message what could be problem?
@yasarkocyigit13143 жыл бұрын
part 2 script task public void Main() { // read in value ow two variables passed in string highestname = Convert.ToString(Dts.Variables["highestname"].Value); int highestnumber = Convert.ToInt32(Dts.Variables["highestnumber"].Value); //display name of busiest mentor MessageBox.Show("Busiest mentor is " + highestname + "with" + highestnumber.ToString() + "proteges"); Dts.TaskResult = (int)ScriptResults.Success; }
@yasarkocyigit13143 жыл бұрын
public void Main() { // TODO: Add your code here User::firstname,User::lastname,User::proteges User::highestname,User::highestnumber string firstname = Convert.ToString(Dts.Variables["firstname"].Value); string lastname = Convert.ToString(Dts.Variables["lastname"].Value); int proteges = Convert.ToInt32(Dts.Variables["proteges"].Value); int highestnumber = Convert.ToInt32(Dts.Variables["highestnumber"].Value); if (proteges > highestnumber) { //set new highest number Dts.Variables["highestnumber"].Value = proteges; Dts.Variables["highestname"].Value = firstname + " " + lastname; }