Forum Replies Created

Viewing 15 posts - 211 through 225 (of 2,452 total)

  • RE: Query Help

    shanegair - Thursday, April 20, 2017 7:14 AM

    Sorry for the bad post, reading article now to get understanding of how to properly...

    ________________________________________________________________
    you can lead a user to data....but you cannot make them think
    and remember....every day is a school day

  • RE: Latest

    Luis Cazares - Thursday, April 13, 2017 11:11 AM

    This is additional work, but I noticed it today.
    You can apply filters to avoid...

    ________________________________________________________________
    you can lead a user to data....but you cannot make them think
    and remember....every day is a school day

  • RE: Speed up Openquery

    doesnt answer your question....but if you are looking for a free SQL refactoring tool that is configurable

    http://www.apexsql.com/sql_tools_refactor.aspx

    ....Note...I do not work for these guys

    ________________________________________________________________
    you can lead a user to data....but you cannot make them think
    and remember....every day is a school day

  • RE: Parse numbers from Column

    maybe I am wrong (probably:P) but I don't think I have seen a solution that correctly parses
    INSERT INTO #Weights
    VALUES
    ('14lb 7.6oz')  ---- note no spaces between...

    ________________________________________________________________
    you can lead a user to data....but you cannot make them think
    and remember....every day is a school day

  • RE: Parse numbers from Column

    dba-512085 - Friday, April 7, 2017 4:16 PM

    I have a sql table that stores weight in one column. How would I go...

    ________________________________________________________________
    you can lead a user to data....but you cannot make them think
    and remember....every day is a school day

  • RE: SQl Statement Need help with, please

    me thinks you need a join between "band" & "event" tables to start.....shouldn't be very difficult

    ________________________________________________________________
    you can lead a user to data....but you cannot make them think
    and remember....every day is a school day

  • RE: Removing Reverse Duplicates

    for these records

    10000003 | 10000004 
    -----------------------------
    10000005 | 10000006 

    why arent there corresponding reverse entries?.......or am I misunderstanding your post?

    ________________________________________________________________
    you can lead a user to data....but you cannot make them think
    and remember....every day is a school day

  • RE: Create From and To dates

    sgmunson - Tuesday, April 4, 2017 11:35 AM

    So fix it.... 😀😀😀

    :w00t:

    ________________________________________________________________
    you can lead a user to data....but you cannot make them think
    and remember....every day is a school day

  • RE: Create From and To dates

    sgmunson - Tuesday, April 4, 2017 10:48 AM

    jaggy99 - Sunday, April 2, 2017 7:28 AM

    ________________________________________________________________
    you can lead a user to data....but you cannot make them think
    and remember....every day is a school day

  • RE: Create From and To dates

    jaggy99 - Saturday, April 1, 2017 5:03 PM

    jaggy99 - Saturday, April 1, 2017 4:52 PM

    ________________________________________________________________
    you can lead a user to data....but you cannot make them think
    and remember....every day is a school day

  • RE: Create From and To dates

    possibly something along these lines...??

    ;WITH
        cte_FixData AS (
            SELECT
                r.R23_SQL_ID,
                r.PROP_CODE,
                r.TENANT_NUMB,
                From_Date = CAST(r.DATE_CHANGED_SQL AS DATE),
                r.TOT_DEB_VAL    ,
                ROW_NUMBER() oVER (PARTITION BY r.PROP_CODE,    r.TENANT_NUMB,    CAST(r.DATE_CHANGED_SQL AS...

    ________________________________________________________________
    you can lead a user to data....but you cannot make them think
    and remember....every day is a school day

  • RE: Performaing a Right and Comprehensive Age Calculation Part 2

    Sergiy - Friday, March 31, 2017 12:51 PM

    > maybe its the way my brain works ...but I cannot accept that 4 different...

    ________________________________________________________________
    you can lead a user to data....but you cannot make them think
    and remember....every day is a school day

  • RE: Performaing a Right and Comprehensive Age Calculation Part 2

    maybe its the way my brain works ...but I cannot accept that 4 different DOBs produce the same result.

    SELECT * from dbo.AgeCalculation(' 2017-01-27 ','2017-03-01','md' ) --...

    ________________________________________________________________
    you can lead a user to data....but you cannot make them think
    and remember....every day is a school day

  • RE: Getting correct start date for member eligibility

    a few q's......you have posted in SQL 2005 forum...pls confirm this is the version you are working on.
    can you post expected results from your sample set up...so we know...

    ________________________________________________________________
    you can lead a user to data....but you cannot make them think
    and remember....every day is a school day

  • RE: Need SQL Training Recommendations

    james.mobley - Thursday, March 30, 2017 9:56 AM

    Just hired for a DBA position with no experience............ I have been hired to...

    ________________________________________________________________
    you can lead a user to data....but you cannot make them think
    and remember....every day is a school day

Viewing 15 posts - 211 through 225 (of 2,452 total)