Forum Replies Created

Viewing 15 posts - 151 through 165 (of 532 total)

  • RE: Remove data row seems to be duplicate where one column not same

    You can also just use a grouping function in a derived table:

    select sq.col1, t.col2, t.col3, t.col4, t.col5, t.col6, t.col7

    from

    (select MIN(col1) as col1

    from #test

    group by col2, col3, col4, col5, col6) sq

    join...

  • RE: Are the posted questions getting worse?

    Kind of sad though ... I'm personally familiar with a number of companies that pay $200/hr (at an avg of 5-10 hrs per week throughout the year) or more for...

  • RE: Talking baseball

    Usually the Mets completely give up at the end of August or the beginning of September. It's nice to see them get a head start on things this year.

    And...

  • RE: How to get these results?

    diegocroitoru (8/2/2010)


    SSC Eights,

    Great response.

    Do you mind elaborating more on the:

    FOR XML PATH(''),TYPE

    ).value('.','VARCHAR(MAX)') , 1,1,SPACE(0)) AS Concat_Values

    string of your...

  • RE: String Return

    This works well too ...

    select STUFF(Column1, 1, 6, '') as ModifiedValue

    from Table1

  • RE: bulk insert vs openrowset

    There is a File Watcher Task available from www.SQLIS.com. Some people have reported memory leaks with it but I'm not sure if that's true or not. Another alternative...

  • RE: freetext

    What is the big picture of what you're trying to accomplish? I have a feeling that FREETEXT is not what you're think it's for.

  • RE: Different date formats in single table

    michielbijnen (8/2/2010)


    Thanks Varun.

    Problem is that the application inserts dates with YYYY-DD-MM, but somehow in SQL Server it is converted to YYYY-MM-DD.

    Hoep you have another clue.

    reg,

    Michiel

    I'm curious what the application is....

  • RE: find the search string from the url using sql string functions

    declare @searchPhrase varchar(max) = 'hl=en&source=hp&aq=sql+server+central& aqi=&aql=&oq=&gs_rfai=CNJ23UTtUTNGEEYuEhQT8-rGmAQAAAKoEBU_Q7u6a'

    declare @searchParam varchar(255) = '&q='

    select case when CHARINDEX(@searchParam, @searchPhrase) <> 0

    then SUBSTRING(@searchPhrase, CHARINDEX(@searchParam, @searchPhrase) + 3, CHARINDEX('&', @searchPhrase, CHARINDEX(@searchParam, @searchPhrase) + 3) - (CHARINDEX(@searchParam, @searchPhrase)...

  • RE: How to extract a delimited value from the table

    This is the same issue discussed in your other thread. Storing multiple delimited values in a single column is absolutely horrible design and you'll end up with nothing but...

  • RE: Convert SDT to date string

    What would be better is to do the formatting of data at the presentation layer. There are times (such as when producing system specific flat files) that this is...

  • RE: Joining Multiple Tables - What is the correct order on JOINS?

    I don't want to pretend I have a complete knowledge of your table structure and your data and what you want to return, so I can't tell you exactly what...

  • RE: Joining Multiple Tables - What is the correct order on JOINS?

    A LEFT JOIN will include data from the tables left of the join and whatever data that matches up from the tables on the right side of the join. ...

  • RE: How to get these results?

    tom 29037 (7/30/2010)


    I'm a dope...

    YES! That works. I'm reading BOL about Common Table Expressions. I've never used them before. What is the general purpose of a...

  • RE: Incremental pattern matching

    Although the absolute fastest performance is going to be what Scott said, it is possible to do it inline. (And this was worth doing anyway so you could use...

Viewing 15 posts - 151 through 165 (of 532 total)