Forum Replies Created

Viewing 15 posts - 2,161 through 2,175 (of 3,957 total)

  • RE: My BiPolar Users aka Sort a AlphaNumeric Field as if its Numeric

    david.holley (1/15/2013)


    It does place anything starting with a letter at the end which is consistent with another application that we have.

    Yup you missed mentioning that. 🙂

    As long as it works...

  • RE: Find First and Last Period without holes

    I understand you already have a solution but this might be a bit more efficient. The technique is based on an article by Jeff Moden on Grouping Islands of...

  • RE: UDF Table

    llcooldre75 (1/15/2013)


    Here is the structure of my tables i am using.

    CREATE TABLE Billing (

    CUSTCODE VARCHAR,

    SALESID ...

  • RE: Better Way to Perform this Query

    wolfkillj (1/15/2013)


    Actually, that article was my starting point in challenging myself to come up with a true set-based DLD solution. The code posted there is functional but requires a lot...

  • RE: error handling best practices (in my case)

    I don't really know if this applies but if you're creating procedure main_p so that you have a cover SP that you can run by SQL agent (on a schedule),...

  • RE: My BiPolar Users aka Sort a AlphaNumeric Field as if its Numeric

    Are you sure that link gives you what you need? I looked and it didn't look like the same problem.

    This should work as long as the leftmost characters in...

  • RE: orphaned extended properties in SQL

    Another cool thing about extended properties is that, when you add them (for example) to a table or to a column, when you use SSMS to script that table's creation,...

  • RE: Insert Value From Column into String Value of Another Column: Query

    Happy to be of service my friend.

  • RE: Pivot to produce a timetable

    Greg Snidow (1/15/2013)


    dwain.c My personal preferences in cases like this is to combine the calendar (time slot) generation with the Tally table

    Yep, mine is to always keep things as separate...

  • RE: Better Way to Perform this Query

    wolfkillj (1/15/2013)


    I've been working on a set-based T-SQL solution to determine the Damerau-Levenshtein Distance between two strings. (DLD distance is just like LD - the number of changes required to...

  • RE: Excel 64 bit driver

    sathiyan00 (1/15/2013)


    its showing error

    Msg 7302, Level 16, State 1, Line 1

    Cannot create an instance of OLE DB provider "Microsoft.ACE.OLEDB.12.0" for linked server "(null)".

    Chances are pretty good that you either haven't...

  • RE: Reverse Of Number without Using reverse()

    If we're reviving old, dead threads then I say there's always this:

    DECLARE @num BIGINT = 1234567890

    ,@numstr VARCHAR(20) = ''

    ;WITH Tally (n) AS (

    ...

  • RE: Excel 64 bit driver

    Koen Verbeeck (1/15/2013)


    I think you can use the 2010 ACE OLE DB driver to read from 2007 workbooks. It's possible you'd have to change the Excel version in the connection...

  • RE: Excel 64 bit driver

    Koen Verbeeck (1/15/2013)


    dwain.c (1/15/2013)


    You must have all 3 running in the same mode. The driver won't allow you to install 32 bit in a 64 bit environment.

    You can install...

  • RE: string extraction help

    oliver.morris (1/15/2013)


    I see what you are up to here. This is a really neat method and will work it up. Thank you for sending over the CLR reference, I will...

Viewing 15 posts - 2,161 through 2,175 (of 3,957 total)