Forum Replies Created

Viewing 15 posts - 2,461 through 2,475 (of 15,381 total)

  • RE: Query that gives info twice

    Luis Cazares (8/13/2015)


    Sean Lange (8/13/2015)


    jodevil99 (8/13/2015)


    FROM keyword not found where expected

    select *

    from quer a

    cross join (select 'Text1' as MyText union all select 'Text2') x

    missing keyword

    select *

    from quer a

    cross apply (values('Text1'),...

  • RE: Query that gives info twice

    jodevil99 (8/13/2015)


    FROM keyword not found where expected

    select *

    from quer a

    cross join (select 'Text1' as MyText union all select 'Text2') x

    missing keyword

    select *

    from quer a

    cross apply (values('Text1'), ('Text2')) x (MyText)

    SQL command...

  • RE: Query that gives info twice

    jodevil99 (8/13/2015)


    Well, considering the error messages did not say much more and were in french, I don't think it was really relevent to post a french error message here

    Actually it...

  • RE: Are the posted questions getting worse?

    SQLRNNR (8/13/2015)


    Ed Wagner (8/13/2015)


    Sean Lange (8/13/2015)


    Ed Wagner (8/13/2015)


    Sean Lange (8/13/2015)


    Every table name and every column name are exactly 6 UPPER case letters.

    I feel your pain. Baan's tables were named...

  • RE: Are the posted questions getting worse?

    Grant Fritchey (8/13/2015)


    Lynn Pettis (8/13/2015)


    Ed Wagner (8/13/2015)


    I've worked in both environments and really prefer case-insensitive. As a habit, though, I try to write everything as case-sensitive.

    Having been working in...

  • RE: Are the posted questions getting worse?

    Lynn Pettis (8/13/2015)


    Ed Wagner (8/13/2015)


    I've worked in both environments and really prefer case-insensitive. As a habit, though, I try to write everything as case-sensitive.

    Having been working in case sensitive...

  • RE: Are the posted questions getting worse?

    Ed Wagner (8/13/2015)


    Sean Lange (8/13/2015)


    Every table name and every column name are exactly 6 UPPER case letters.

    I feel your pain. Baan's tables were named using a multi-part naming convention...

  • RE: Query that gives info twice

    jodevil99 (8/13/2015)


    Neither of those seemed to work, sadly.

    The first one tells me I lack a "FROM" clause (and underlines union to identify where's the mistake)

    The second one says it...

  • RE: Query that gives info twice

    Sure here are a couple of examples.

    select *

    from MyTable

    cross join (select 'Text1' as MyText union all select 'Text2') x

    select *

    from MyTable

    cross apply (values('Text1'), ('Text2')) x (MyText)

  • RE: Are the posted questions getting worse?

    Jack Corbett (8/13/2015)


    ...Of course the case sensitivity thing is rather silly in that system. Every table name and every column name are exactly 6 UPPER case letters.

    That's why...

  • RE: Are the posted questions getting worse?

    TomThomson (8/12/2015)


    Sean Lange (8/12/2015)


    They took the old RPG code and used a tool to convert it to java which is what the front end is "written" in today. All of...

  • RE: Are the posted questions getting worse?

    SQLRNNR (8/12/2015)


    Lynn Pettis (8/12/2015)


    I have learned much here at the feet of people like Jeff, Gail, Steve, Wayne, Jason, Jack, Ed, Eirikur, Sean, and many others. But I...

  • RE: Are the posted questions getting worse?

    TomThomson (8/12/2015)


    Ed Wagner (8/11/2015)


    It is good to hear that Baan is no more, but I'm not surprised. I guess their miserable product finally caught up with them.

    It died (but...

  • RE: Inserting values in the database

    anjaliagarwal5 (8/12/2015)


    there are lot of values inserting in that table, but this special character will be always at the end if present.

    Probably the easiest way is to use replace.

    declare @SomeValue...

  • RE: Real to Float

    roger.plowman (8/12/2015)


    Between this question and the one on varchar conversion the takeaway is never trust implicit conversion? To be honest once the real was truncated the value should have remained...

Viewing 15 posts - 2,461 through 2,475 (of 15,381 total)