Forum Replies Created

Viewing 15 posts - 8,596 through 8,610 (of 13,874 total)

  • RE: The Worst Comments

    Michael.Ramirez (3/13/2015)


    The only thing wrong w/ bad comments is no comments at all.

    On a number of occasions I have found that various co-workers will add a comment that...


  • RE: Allowing users to run SSIS packages remotely

    Maddave (3/13/2015)


    Thanks all for your help. I didn't want to run the job all the time as it can be quite intensive and users could be searching historical data whilst...


  • RE: The Worst Comments

    Going off on a slight tangent, what about bad error messages?

    I've just had this one in SSIS:

    Executing the query "exec ..." failed with the following error: "Package execution failed...


  • RE: The Worst Comments

    Gary Varga (3/13/2015)


    Yes!!! Commented out code. That's what source code control is for. If you need to leave a reference to old code then just leave a comment WHY it...


  • RE: The Worst Comments

    Superfluous comments are worse than no comments. You know the type:

    --Find the average

    select @avg = avg(x)

    Reminds me of those people who, when doing presentations, just recite what is written on...


  • RE: Allowing users to run SSIS packages remotely

    One simple solution is to schedule the package to run frequently and process any files it finds. If it finds no files, it completes without doing anything.

    Might that work?


  • RE: C#.Net "message box" question

    Nice work Stephanie. Are you involved in QA by any chance? If not, you should be:-)


  • RE: The MERGE statement attempted to UPDATE or DELETE the same row more than once

    You cannot 'ignore' this. You need to refine your match criteria to avoid it.


  • RE: C#.Net "message box" question

    Brandie Tarvin (3/11/2015)


    Phil Parkin (3/11/2015)


    What sort of C# app is this? Windows forms, console, web etc?

    Ummm... That's a good question. Where would I look to find that information? (Someone else...


  • RE: C#.Net "message box" question

    What sort of C# app is this? Windows forms, console, web etc?


  • RE: C#.Net "message box" question

    Try adding a couple more statements:

    switch (name) {

    case "Job1": this.DTDQC.Src = Page.ResolveClientUrl(imagename);

    break;

    case "Job2": this.XMEDPTX.Src = Page.ResolveClientUrl(imagename);

    break;

    default:

    MessageBox.Show("hello, how are you");

    break;

    ...


  • RE: C#.Net "message box" question

    So something like

    MessageBox.Show("Here is the message");

    is highlighted as an error? It should work. Could there be an error on the preceding line?


  • RE: Identity Field Fluctuations

    Are there any triggers on any of the target tables?


  • RE: Consultant about like operator

    So do the replace first, then the split.


  • RE: Delete takes a long time

    That would not help either. I would have to do one join on the update for the transactions found, a delete for transactions not found followed by an insert of...


Viewing 15 posts - 8,596 through 8,610 (of 13,874 total)