Forum Replies Created

Viewing 15 posts - 601 through 615 (of 5,504 total)

  • RE: Need help aggregate &count functions with date consideration

    Can you please provide some ready to use sample data and your expected result?

    For a guideline how to do that please see the first link in my signature.

    This will not...

  • RE: URGENT - ODBC Connectivity issue

    A google search for "connection is busy with results for another hstmt" indicates there's an issue with more than one acive cursor per connection:

    This error generally happens because an ODBC...

  • RE: T-SQL Query help for extracting data between special chars

    What makes you think this query would not work?

    Did you gave it a try?

    If so, what errors did you get?

  • RE: Select ALL the text from a text data type

    Would it help to convert it to xml instead of dealing with the text data type (which is deprecated anyway, so you should consider using xml or varchar() instead...)

    Declare ...

  • RE: T-SQL Query help for extracting data between special chars

    It looks like you're looking for a split string function and a CrossTab solution.

    One solution could look like this:

    DECLARE @tbl TABLE

    (

    ID INT,

    [PATH] VARCHAR(30)

    )

    INSERT INTO @tbl

    SELECT 11...

  • RE: reading html

    If your initla post was too simplistic, please provide a more descriptive version of what you're looking for. Your latest reply still indicate that REPLACE would be the way to...

  • RE: reading html

    Would a rather standard REPLACE help?

    SELECT

    REPLACE (

    '<body><p><a code1="111111"</a></p></body>' ,

    '<a code1="111111"</a>' ,

    '<a code1="111111" code2="222222"</a>'

    )

  • RE: SQL Client Access Licence requirements

    Since "MS" is a rather large group: do you know a person or a group we could contact?

    (The local rep we've asked didn't leave the impression that such specific licence...

  • RE: SQL Client Access Licence requirements

    Regarding your original question:

    I read the licence term exactly the same way as you do with one exception: when you mention "SQL", you're not referring to SQL Express...

    Especially the mail...

  • RE: Help with a float value

    Hmm... When running the following code the correct result will be returned in both cases.

    can you post a similar sample code with a value that would allow to duplicate the...

  • RE: SQL, VMs, and Backups... Oh my...

    Whenever there's a VM snapshot involved, keep in mind you'll loose any MS support!!

    For details please see http://support.microsoft.com/kb/956893/en-us

    Quote:

    Virtualization Snapshots for Hyper-V or for any virtualization vendor are not supported to...

  • RE: IT Budget

    There are many tools out there for many different tasks. Some are more reliable than others, some are considered "better" than others (but that's usually just personal preference).

    The question is:...

  • RE: Help with query

    You reference e.ProductName__c but this column is not part of your subquery.

    Either the column is included in the subquery or should be referenced based on Customers.dbo.Lead (l.ProductName__c).

  • RE: Getting Most Recent Date

    Dave Brooking (2/13/2012)


    Would the windowing version of the MAX function be useful here?

    Replace the line

    MAX(AP_Ex.Ap_Expt_Date) AS CRN_SIS_AD_AP_Ex_Ap_Expt_Date

    with

    MAX(AP_Ex.Ap_Expt_Date) OVER (PARTITION BY AP_Ex.Student_ID) AS CRN_SIS_AD_AP_Ex_Ap_Expt_Date

    and remove the...

  • RE: Getting Most Recent Date

    It's just been a typo. No reason to apologize twice. 😀

Viewing 15 posts - 601 through 615 (of 5,504 total)