Forum Replies Created

Viewing 15 posts - 1,066 through 1,080 (of 3,233 total)

  • RE: Query optimation help

    Michael,

    Here's a link on how to post your problem so that we can quickly help you. We need to see table definitions (I cannot open your .rar file),...

  • RE: Error in BCP

    I'm not sure that's it. I created a table w/ a column name Col2/Name and I was able to BCP into it just fine.

  • RE: Error in BCP

    Can you post your table structure and a couple sample lines of the input file? This is most likely a data problem in your file with the / character...

  • RE: Problem: Slowly Changing Dimension - 2 rows with the same PK

    Try putting a Sort transformation directly before your SCD Transformation. Inside the Sort, configure it to sort on the PK value and check the 'Remove rows with duplicate sort...

  • RE: Question on Data Transformation

    I think 2 data flows is the way to go here. With what Elliot said in terms of how SSIS batches the rows through the pipeline, you can't do...

  • RE: Lookup with Xml file

    How many rows will you be importing from your flat file?

    You can use the XML source component inside the same data flow as your flat file source. ...

  • RE: Why is using an SSIS package so difficult?

    What does your expression look like?

    It looks like you are now calling a Stored Procesure from your SQL Source? If so, you don't need an expression, you...

  • RE: data conversion error

    You mentioned that you have an error, would you mind sharing that with us?

  • RE: SSIS urgent...!

    Is this a one-time clean up task? If so, I'd scrap the idea of modeling out in SSIS. Write a query to return the dupes, cut and paste...

  • RE: Dynamic connection strings for Oledbconnection Manager

    BOT is on the right track here. In addition, you don't want to use a data flow task to read your connection parameters into a recordset destination. Instead,...

  • RE: Urgent: Help regarding "For XML" Clause

    That doesn't make sense. Adding characters to a file because it is too big! How do you go about truncating a self-describing file?

    You can't do this with the...

  • RE: SSIS I/O

    Rowan (8/23/2009)


    Please note that you don't necessarily need to use staging tables becasue of complex queries. Moving a pacakge that uses a staging table to not need one should not...

  • RE: xml to relational table

    Maybe John can add some "pro openxml". Mine are all cons...

    No, I sure can't. I've seen some articles over the last 6 months or so comparing the two...

  • RE: xml to relational table

    I'd use OPENXML instead of Xquery.

    DECLARE @x xml

    SET @x =

    '

    '

    DECLARE @iDoc int

    EXEC sp_xml_preparedocument @idoc OUTPUT, @x

    SELECT *

    FROM OPENXML (@idoc, '/DATA/ROW',2)

    WITH (

    ObjectID int './@ObjectId'

    )

    EXEC sp_xml_removedocument @idoc

  • RE: bcp command - microsoft examples do not run - what am I doing wrong?

    A couple of things. First, the format file that the example creates does not match the data file. The format file has "\t" for the field terminator. ...

Viewing 15 posts - 1,066 through 1,080 (of 3,233 total)