Forum Replies Created

Viewing 15 posts - 23,221 through 23,235 (of 26,486 total)

  • RE: Order by numbers in proper sequence

    If you are sure that the values are all numeric, you can do this:

    ORDER BY

    CAST(YourColumn as INT)

  • RE: Which .Net Language Should We Adopt

    Not sure. I did a lot of COBOL programming at my previous employer and I think moving to an OO environment where I could continue to use the skills...

  • RE: Is there any option like IF EXISTS(SQL Query) in SQL CE

    EXISTS is available in SQL Server 2005 CE, so I'd hope it was also available in earlier versions. Have you checked BOL for your version?

  • RE: Which .Net Language Should We Adopt

    Actually, they have made this COBOL pretty much OO. I have been looking at the web site, and it looks like there is a lot of effort behind it...

  • RE: Which .Net Language Should We Adopt

    If you have been COBOL shop for years, why not look at Fujitsu NetCOBOL for .NET?

    You may still need VB.NET for SSIS, SSRS, et al.

  • RE: The Full Potential of SQL 2000

    Well, it is still alive and kicking. My co-worker was taking a C class in college, wrote his programs using Power Basic first and got it working, then ported...

  • RE: Catch numeric conversion errors and KEEP GOING

    It would help if you could provide the table DDL (create statement), some sample data (in the form of insert statements), and what your expected results would be based on...

  • RE: The Full Potential of SQL 2000

    Co-worker at my previous employer really like Power Basic. Creates extremely fast and tight code. They recently added a /bloat switch that makes the executable bigger, but still...

  • RE: simple and tricky question

    You will have to test the following code as I am currently applying SP3 to my system here at home.

    ;with MyData (

    rownum,

    colA,

    ...

  • RE: simple and tricky question

    Just to be sure, as this is posted in a SQL Server 2005 forum (we have had SQL Server 2000 posts here), that you are using SQL Server 2005. ...

  • RE: simple and tricky question

    This could be as easy as a simple pivot or a more complex dynamic pivot. Based on your data provided, it is a little difficult to know for sure....

  • RE: Small Query

    Now that makes total sense. Here is some code:

    create Table #temp1

    (

    id int,

    Rno int,

    sno int

    )

    insert into #temp1 values(10,125,32)

    insert into #temp1 values(20,145,32)

    insert into #temp1 values(10,125,32)

    insert into #temp1 values(30,125,32)

    insert into...

  • RE: Are the posted questions getting worse?

    Steve Jones - Editor (12/16/2008)


    I'm happy to entertain moderator nominations. It helps to have others that can move threads if they're in the wrong spot. I hate to have people...

  • RE: Small Query

    I'm sorry, but I'm confused as to what you want as a result set based on the sample data. Your verbal discription is confusing, and your answer to Barry...

  • RE: PIVOT vertical table without Aggregating

    david.c.holley (12/16/2008)


    Been busy...

    For the record, the discussion groups that I have been apart of do not have stringent rules as to what needs to be included and what does not....

Viewing 15 posts - 23,221 through 23,235 (of 26,486 total)