Forum Replies Created

Viewing 8 posts - 1 through 8 (of 8 total)

  • RE: Rounding Rules

    The real take away is everyone makes mistakes, even sometimes when checking the work. Check, double check, take a break (and then triple check <if it is important>) and...

  • RE: 100 Hours

    For some one with decent computer language experience, the problem isn't learning new syntax or or even getting a good sense of how a language flows. It is learning all...

  • RE: TSQL "where - 101"

    Without a good 'reason' for the table, the id column by itself is not enough to say that there are 2 different "Brian" employees. the id might be refering...

  • RE: SaaS and Multi-tenancy Models

    5th Option - Use a RAM Centric Model in a JVM

    Build your database in RAM on your system in a JVM. Store all leave objects changes (edit/insert/deletions) immediately to...

  • RE: SSIS File Exists Over Range of Time

    I think the comments above, regarding the sleep command is required, and so is the file check logic after the loop.

    Suggestion 3.

    The script putting the file onto the server should...

  • RE: Prevent repeating space characters from being stripped from rendered report?

    This function in the textbox worked. & n b s p did not work in the place of

    chr(160).

    =Replace(Fields!str_len5.Value, " ", Chr(160))

    Thanks this solved the problem, put me on...

  • RE: Using VBScript to Automate Tasks

    I don't wish to denigrate vbscript in any way, I probably should use it more, the results are certainly easier to read than some of the stuff I do. ...

  • RE: MERGE

    Interesting Question, 2 comments:

    Syntax appears to be wrong to me, missing '2' and one bracket: ')'

    **I could be wrong but I think the sql should be**:

    MERGE Address as NewAddress

    Using (select...

Viewing 8 posts - 1 through 8 (of 8 total)