Forum Replies Created

Viewing 15 posts - 2,341 through 2,355 (of 5,103 total)

  • RE: Tax Day

    Scott,

    Interesting Idea!! Still I would like to see 'sample numbers'. It is nice to know that there is a choice

    Hope that it flourish!!

     


    * Noel

  • RE: Copy tables to another server

    Don't like the idea for several reasons.

    Constraints (all kinds) are lost, indexes (all kinds) are lost and the network will be really taxed if the DB grows at "decent" sizes. By...


    * Noel

  • RE: complex statement! not even sure if it is even possible....

    CREATE proc ben_sp_bringBackConsultantNull

    @daterequired datetime,

    @consultancytypeid numeric(9),

    @level tinyint,

    @clientid numeric(9)

    as

    SELECT top 10 (left(Thedate,11) + ' - ' + consultantname ) as 'Consultant Name', Thedate 'Date'

    FROM WeekEndsAndHolidays, vw_consultant_ability

    WHERE dayname <> 'Saturday'

    AND dayname <>...


    * Noel

  • RE: The Best Job

    I N V E N T O R. Hands down!!

    I am graduated from EE and Automation and Control systems. I would have love to invent many of the cool things I...


    * Noel

  • RE: Not receiving newsletters

    Actually I am on the same boat as Jamie. I don't receive the emails a regularly as I used to!!

    Cheers,

     


    * Noel

  • RE: What the hell is wrong with my hour comparison?

    select datediff( hour, '1899-12-30 20:00:00.000','2006-04-05 20:14:19.000')

    Returns: 931488

    The number of hours between the two dates. That, is why the query you posted returns 0 records when you used datediff(hour, tz.stop1, h.calldatetime)...


    * Noel

  • RE: Query puzzle

    Howard,

     

    Sorry I couldn't get back to you sooner.

    try:

    select

        sum( case when Control_code ='B' and NextControl_Code <> 'E' then 1 else 0 end) as BwithNoFollowingE

      , sum( case when (Control_Code=...


    * Noel

  • RE: Using sql_variant as a parameter

    Rob,

    All I have to say is that I haven't laught this much in a loooooong time

     


    * Noel

  • RE: speed up LEN(RTRIM(LTRIM(ERR))) > 0????

    if we are talking about 5 - 7 millions I still think that the calculated column (with an index) will be a lot faster for two reasons.

    1.The value is an...


    * Noel

  • RE: Query puzzle

    Sure I do too!!!

    I have learnt a lot on this comunity

     


    * Noel

  • RE: speed up LEN(RTRIM(LTRIM(ERR))) > 0????

    Sorry but this was the post:

    LEN(RTRIM(LTRIM(ERR))) > 0

    is equal to

    LEN(ERR) > 0

    and that is not correct. Len ignores trailing spaces but not the begining ones.

    select Len ( '  Space...


    * Noel

  • RE: speed up LEN(RTRIM(LTRIM(ERR))) > 0????

    Well I have to say....  that is not really exact:

    select Len ( '  Space in the begining '), Len (rtrim(ltrim('  Space in the...


    * Noel

  • RE: speed up LEN(RTRIM(LTRIM(ERR))) > 0????

    How many rows are we talking about here?

     


    * Noel

  • RE: Query puzzle

    Howard,

    No problem, we(at least I) pretty much come here for two things: to help and to have fun solving the problems people post

     

    Cheers,

     


    * Noel

Viewing 15 posts - 2,341 through 2,355 (of 5,103 total)