Forum Replies Created

Viewing 15 posts - 886 through 900 (of 3,233 total)

  • RE: Creating Header AND Footer to a flat file destination file

    Well, I always say I learn something new every day and today is no exception.

    The expression builder is not available from the flat-file destination properties window when working inside the...

  • RE: Max partitions in a single table

    In the other tread, I posted an article by Kimberly Tripp on partitioning. Re-read the section on partitioning indexes.

    You may want to consider partitioning your table (clustered...

  • RE: User initated start of SSIS package

    I've got a category #6 from the link (invent your own). I have 4 packages that I envoke via Serivce Broker.

    How, you might say? Well, the...

  • RE: Message task buries server

    Well, it's obvious that this statement is reading messages from a Service Broker queue. What process is running this statement? Is it in a stored procedure somewhere? ...

  • RE: Max partitions in a single table

    MTY-1082557 (11/10/2009)[hr

    I want to know if I change the partition by date I will be able to see a performance.

    It's hard to say without trying it. I have enough...

  • RE: Max partitions in a single table

    ALZDBA (11/10/2009)


    That's indeed what I intended to John ! Thank you for stating it more clearly !

    btw I wasn't aware you guys did already work on the subject on

    anohter...

  • RE: Execute sql task and Teradata

    I assume you are using the ExecuteSQL task? I get the same thing with the .Net connection and the ExecuteSQL task. Try the ODBC connectoin and see what...

  • RE: Google-ish Report Parameter

    Funny Phil, that's the second time in about a week where you've been called sleepy-head!

  • RE: Help with subquery

    Try this:

    SELECT Manager,

    COUNT(Call_Number) AS Total,

    SUM(CASE WHEN (Days_Old > 90) AND (Call_Status = 'O') THEN 1 ELSE 0 END) as GT90,

    SUM(CASE WHEN (Days_Old < 90) AND (Call_Status = 'O') THEN...

  • RE: Max partitions in a single table

    MTY-1082557 (11/9/2009)


    now, im confused

    On what?

    I think what ALZDBA is getting at is don't get too partition happy. In other thread that you and I worked on, partitioning seemed to...

  • RE: Execute sql task and Teradata

    Well, when I say ODBC, I do mean the Teradata provider. I'm using TDATA32.DLL from NCR Corp. This should be the default Teradata ODBC connection that gets installed...

  • RE: Execute sql task and Teradata

    You can use an ODBC connection with an Execute SQL task to query Teradata from SSIS. Treat it like any other connection and put your SQL statement in the...

  • RE: Max partitions in a single table

    Is this for the same database as your other partitioning work? If so, you may consider adding the date column to this table and partitioning everything by date. ...

  • RE: Cursor Fetch into XML Variable

    Why do you need a cursor?

    What's wrong with this:

    DECLARE @XML_Header xml

    SET @XML_Header = (

    select distinct

    BATCH_NUMBER,

    BATCH_ID,

    PRODUCT_NUMBER,

    SAMPLE_GROUP_ID,

    SAMPLE_GROUP_TS,

    [USER_NAME],

    SAMPLE_ID,

    SAMPLE_TS,

    TEST_ID,

    SAMPLE_VALUE,

    COMMENT

    FROM DBO.vwGetLineCheckDataForORACLE

    FOR XML RAW('item'), ROOT('items'),ELEMENTS , TYPE

    )

    SELECT @XML_Header

  • RE: Max partitions in a single table

    Yes, 1000 is the max # of partitions you can have on a table or index. One thing to consider in partitioning is how many rows you want to...

Viewing 15 posts - 886 through 900 (of 3,233 total)