Forum Replies Created

Viewing 6 posts - 16 through 21 (of 21 total)

  • RE: Accessing and changing data 2008

    liam.stirling (9/23/2008)


    I thought "The following statements are equivalent" meant they were the same.

    Silly me!

    Exactly. Even though the resultsets might be slightly different, the statements are equivalent. Boooo, I want my...

  • RE: Problem with NULL values

    Thanks again Gsquared...

    Your answer makes sense but has me slightly concerned..

    What I'm trying to do is basically when a dataset is imported into a "staging" table, then normalise it by...

  • RE: Problem with NULL values

    ok, solved it myself

    INSERT INTO tblType

    SELECT DISTINCT [Type] from #tblUploadA

    WHERE [Type] not in

    (SELECT Description

    ...

  • RE: Overview of SSIS

    Lars - I know where you're coming from, it could be a little better explained in parts for an SSIS newbie. If you open the solution explorer you'll see Datasources,...

  • RE: General data -> database question

    OK, this was what I was trying to do (don't laugh!) 😀

    UPDATE #tblUpload1

    Set Section = (SELECT tblSection.ID

    FROM #tblUpload1

    inner join tblSection

    ON #tblUpload1.Section=tblSection.Description)

    It's trying to update on the results of the...

  • RE: General data -> database question

    Perfect, thanks GSquared. That's actually what I'd started doing - only issue I'm having is trying to update back into the staging table - so was going to create second...

Viewing 6 posts - 16 through 21 (of 21 total)