Forum Replies Created

Viewing 15 posts - 31 through 45 (of 479 total)

  • RE: This is just a test of something

    Ok so the characters between the quotes are:

    < / t a b l e >

    It seems that the forum code lets it through and it causes strange formatting because it...

  • RE: Are the posted questions getting worse?

    Steve Jones - Editor (7/15/2009)


    jcrawf02 (7/15/2009)


    Steve, funky display going on inthis thread.

    No idea, what's wrong there. Usually it's an embedded HTML code, but I don't see on there. Definitely something...

  • RE: one character of data

    I chose char(1), but having skimmed the various replies think that there's also an argument for nchar(1). The question is a bit vague as to the supported character set.

    What's clear...

  • RE: Sum up intervals and show value for each corresponding day

    byron.vanwyk (6/3/2009)


    I couldn't quite understand exactly what you did 🙂 but took some stuff you used and added it to my query. The result ..... exactly what I was looking...

  • RE: Sum up intervals and show value for each corresponding day

    To show how to extend it, using the same test data, the following computes the distribution in hourly bins.

    select

    date,

    datepart(hh,(convert(datetime,time,108))) as 'hr',

    sum(acd_calls) as 'acd_calls per hr',

    sum(aban_calls) as 'aban_calls per hr',

    sum(sum(acd_calls)) over(partition...

  • RE: Sum up intervals and show value for each corresponding day

    In the absence of a full set of sample date, I used part of your array as follows

    create table #t (date datetime,

    time char(5),

    acd_calls int,

    aban_calls int,

    expect_percent float)

    insert #t values('01-may-2009', '07:30', '0',...

  • RE: SSIS Package Execution

    Interesting. The 2 I've regularly used are BIDS and SQL server agent jobs. I've hardly ever used dtxec and wasn't sure about the dtexecui option!

    It just shows how different people...

  • RE: Are the posted questions getting worse?

    Alvin Ramard (6/1/2009)


    Derek Dongray (6/1/2009)


    Alvin Ramard (5/28/2009)


    Lynn Pettis (5/28/2009)


    At the rate things are going I'll have that many spam emails in my spam folder by the end of the day....

  • RE: Are the posted questions getting worse?

    Alvin Ramard (5/28/2009)


    Lynn Pettis (5/28/2009)


    At the rate things are going I'll have that many spam emails in my spam folder by the end of the day. Some spammer is using...

  • RE: Are the posted questions getting worse?

    GilaMonster (5/21/2009)


    Tom Brown (5/21/2009)


    You mean you don't count those headless voles, rat livers and mouse innards as wages.

    Mine never bring me anything. Only once they brought a bird in and...

  • RE: Are the posted questions getting worse?

    Lynn Pettis (5/20/2009)


    Roy Ernest (5/20/2009)


    Is the Window washer player around in T-SQL section? I just want to take a peek... 😀

    If you really must, he's here.

    Does anyone else feel like...

  • RE: Are the posted questions getting worse?

    Paul White (5/12/2009)


    Jeff Moden (5/12/2009)


    I'm finally going to break down and buy a laptop...

    Any budgetary constraints Jeff?

    If I win the lotto this weekend, I know which one I would buy.

    (NZ)...

  • RE: Are the posted questions getting worse?

    Bruce W Cassidy (5/6/2009)


    [font="Verdana"]Algol 68 was a later revision to the language. However, it may have been the first version of PL/1. Been, er, 20 years since I...

  • RE: Are the posted questions getting worse?

    GilaMonster (5/4/2009)


    Luke L (5/4/2009)


    Or perhaps that seeing the name might be enough to jog your memory, although I wasn't sure since you're from South Africa. Not sure how...

  • RE: Dynamic Query

    Far too easy!

    Since 1 works, the answer had to include 1. Hence it had to be 1,2,4 without needing to actually check the others. 🙂

Viewing 15 posts - 31 through 45 (of 479 total)