Forum Replies Created

Viewing 15 posts - 4,981 through 4,995 (of 11,678 total)

  • RE: Improving the performance of a Big table

    GilaMonster (8/29/2013)


    Koen Verbeeck (8/29/2013)


    Are you saying you can't speed up inserts with minimized logging or partition switching?

    Was the OP talking about large bulk inserts? They're not going to improve the...

  • RE: Would like to add data in table when sql m/c starts or shutdown

    HanShi (8/29/2013)


    To write data when the instance is started you can create a job with a schedule to be executed "Start automatically when SQL Agent starts". Maybe you should include...

  • RE: Are the posted questions getting worse?

    Brandie Tarvin (8/29/2013)


    David Burrows (8/29/2013)


    Jan Van der Eecken (8/29/2013)


    Now, that's interesting. Was looking for a book on SSAS on Amazon. Found "Professional Microsoft SQL Server 2012 Analysis Services with MDX...

  • RE: Improving the performance of a Big table

    GilaMonster (8/29/2013)


    Koen Verbeeck (8/29/2013)


    HanShi (8/29/2013)


    You are not to be improving a table, but you need to improve the queries accessing that table.

    And how can you improve a query? By updating...

  • RE: Improving the performance of a Big table

    Compression leads indeed to more CPU utilization, but if the CPU isn't under pressure, this shouldn't be a problem. Because the data is compressed, you need to use less IO...

  • RE: executing package

    The package execution returned DTSER_SUCCESS (0).

    That means it ran just fine.

  • RE: SQL Server to Oracle Query Conversion

    The easiest method to do this is to run this query on Oracle and see which functions error out.

    Use Google to find the Oracle equivalent. (for example: convert sql server...

  • RE: Transaction Control in SSIS

    raga.bysani (8/29/2013)


    Thank for reply ,

    We are moving record by record using for each loop container

    But will this work without the package being failed , when ever there is...

  • RE: Transaction Control in SSIS

    I don't think that is possible.

    Rows are moved in batches, and it's an all or nothing transaction.

    If you want to implement something like this, you'll need to do the clean-up...

  • RE: sql schema compare

    It's a free download, so I guess there's no license fee.

  • RE: Transaction Control in SSIS

    Rollback how? If a row is sent to an error output, it is not written to the destination.

  • RE: Improving the performance of a Big table

    HanShi (8/29/2013)


    You are not to be improving a table, but you need to improve the queries accessing that table.

    And how can you improve a query? By updating statistics, minimize logging,...

  • RE: sql schema compare

    BIDS (now SSDT) is for developing BI solutions. You need SQL Server Data Tools (SSDT). Yes, I know they have the same name now 😀

    The SSDT for database projects is...

  • RE: Improving the performance of a Big table

    Some of the things I'd check:

    * are statistics updated?

    * is the table indexed? Are they indexed well?

    * Are there unnecessary indexes?

    * compression

    * partitioning

  • RE: Between & Collation

    palotaiarpad (8/29/2013)


    Please explain, why 'b.' is selected and 'b' not.

    If the sequence is b, B, b., ... and you select data starting from B, the b is dropped.

    Interesting question by...

Viewing 15 posts - 4,981 through 4,995 (of 11,678 total)