Forum Replies Created

Viewing 15 posts - 61 through 75 (of 334 total)

  • RE: SP works in QA but not ASP/ADO...

    The message above is from the

    SELECT 'Return Value' = @return_value

    in QA and has nothing to do with the actual execution of the SP. If I comment...

  • RE: SP works in QA but not ASP/ADO...

    Tried both. Err.number=0 so there's no message. Changed the Select to return only the first column -- same results.

    ANy idea why I'm still getting "(1 row(s) affected)"

  • RE: SP works in QA but not ASP/ADO...

    I check the Return Code, the Recordcount and I dump the Parameters collection:

    Paging records returned=-1    This is rs.recordcount

    RC: :                                  No Return Code (no "return" in SP)         

    Parms:3:                             Number of Parms (correct)

    0=RETURN_VALUE-><-3         Parm 0=Return...

  • RE: Using SP as Data Transform Source gives no source columns

    So in order to use a Stored Procedure as the Source for a Data Transform I have to code in my SQL Query to create a temp table with all...

  • RE: Using SP as Data Transform Source gives no source columns

    >What works for me is to click the 'Populate from Source' button, then the >'Execute' button.

     

    Original post: "The button is there but it doesn't do anything. "

    I click Populate from Source...

  • RE: Bulk Insert of 128M rows fills Log file

    Was set to Bulk Logged
    No triggers
    No replication

    ...Thought I had already dropped the PK (script was supposed to Drop the table then Create it again) but apparently it was still there....

  • RE: JOIN with LIKE?

    The value of A.Squeezed already contains the wildcard (see examples above).

  • RE: JOIN with LIKE?

    Ooops...

    Select Distinct A.[Company Name], A.DAM, B.Acct_Number, B

  • RE: JOIN with LIKE?

    select

    Distinct A.[Company Name], A.DAM, B.Acct_Number,...

  • RE: JOIN with LIKE?

    Related question:

    How do I get the rows in B that are not matched by a row in A?

  • RE: JOIN with LIKE?

    Duh..

     

    Thanks. That worked.

  • RE: JOIN with LIKE?

    That's basically what I've been doing with no luck. Instead of theory here's the real stuff:

    Sample data from vw_CRM_Accounts:

    [Company Name]             DAM                        Squeezed

    A O Smith

    Lanphere Wendy

    AOSMITH%

    A O...

  • RE: Listing database size data

    Thanks for all the suggestions. I was puttering around with it from home last night and did a sp_helpdb from Master and got all the basic info I need: Name,...

  • RE: Dynamic SQL and Temp Tables/Table Variables

    Didn't know you could do that.

     

    Thanks. 

  • RE: Passing GUID as parm to Stored Procedure

    The test GUID should have said 'BF33FA65-D558-43F5-BE47-0F0D20AB0028'.

    Turns out my problem was the Select in the SP:

          Select Fullname, Start_Date from tSearch where SearchGUID=@srch

    I actually...

Viewing 15 posts - 61 through 75 (of 334 total)