Forum Replies Created

Viewing 15 posts - 2,206 through 2,220 (of 2,612 total)

  • RE: Run an update using Ole DB Destination

    Yes - it can be done, but don't.

    Use an OLE DB Command task instead. It is much easier to use and meant for what you are doing.

    You do not...

  • RE: Disabling tasks SSIS

    Here is a how-to for precedence constraints with pictures that I created for someone else.

    It should help.

  • RE: copying the data to different tables ??

    Source:

    SSNFEI

    ------- -----------

    12343333

    23454444

    52126666

    Destination:

    ID_TypeID_Value

    ------------------

    SSN1234

    FEI3333

    SSN2345

    FEI4444

    SSN5212

    FEI6666

    1) Select the source table using a data source adaptor (OLEDB or DataReader will work fine).

    2) Multicast your dataset into two data sets (the Multicast component just makes a...

  • RE: Import all files in a directory?

    It will get a little complicated, but if you search on Google you will find some samples and pictures to walk you through it.

    DTS had some good features, but SSIS...

  • RE: Import all files in a directory?

    In the toolbox when you have the control flow open you will find a component called a Foreach Loop Container. When you open the edit window for this component...

  • RE: Performance, Full Recovery Mode vs Simple

    The answer to your questions is basically "No". Even in simple recovery mode, MS SQL writes to the transaction log. In simple recovery mode, it just truncates the...

  • RE: Clustering Vs Mirroring

    Both mirroring and clustering offer hardware failover support, but they offer different failure protection.

    It is true that you mirror user databases, not the entire server. Since you are unlikely...

  • RE: User processes on Suspended status

    SQL "Suspends" a process when it is waiting for a non-SQL resource to complete an action. A very common example would be that a process has requested a large...

  • RE: How to prevent a rollback?

    You could try moving your processes into SSIS. If it is as simple as your example (copy form one table to another), you could try the SQL Server destination...

  • RE: How to Access an SSIS Task & its properties through script task?

    You really need to convert your SQL Statements into stored procedures that take parameters that do not overflow this 4000 character limit. I just do not think what you...

  • RE: Filtering a calculated field

    You will not be able to index that view.

    You really do have to either spend the time to change the logic, or create a table called v1 and re-populate it...

  • RE: How to Access an SSIS Task & its properties through script task?

    Let's start with asking why you would want to do that? If you are trying to use a script task like the DTS dynamic properties task, don't.

    Can you post...

  • RE: Layout problem: How to prevent automatic landscape ?

    RS does not turn landscape because the width is greater than the height. What it actually does is takes the defined width and height and compares it to the...

  • RE: sql2005 benefit

    The only thing I will add is that if Microsoft follows their plan to only support two versions of a product, you may find SQL 2000 support is gone as...

  • RE: Filtering a calculated field

    You need to re-think your approach. Because the column is calculated (using a function, case, concatenation, etc.) you will always end up with a table scan of some sort...

Viewing 15 posts - 2,206 through 2,220 (of 2,612 total)