Forum Replies Created

Viewing 15 posts - 1,381 through 1,395 (of 3,232 total)

  • RE: using SSIS to perform data validation in ETL app

    The Slowly Changing Dimension data flow transformation is a wizard that walks you through defining your SCD. In it, you tell it what your business key is and what...

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: Oracle Datatype compatibility with SQL SERVER 2005

    In your first explanation, you referenced moving data from an Oracle source to a SQL Server destination. Now you are talking about flat files? I'm not sure I...

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: Handling of Primary Keys

    I would question their use even when implemented correctly. IDENTITY is the way to go in SQL Server when for surrogate key creation. Can someone give me a...

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: Changing the type from string to date mm/dd/yyyy

    First off, why would you want to store a date as a character column?

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: Handling of Primary Keys

    Ah, the Sequence Table. If not implemented correctly, you're going to be chasing deadlock problems until you're blue in the face. I can't say it any better than...

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: normalizing data in csv file into relational tables using SSIS

    Coffee....mmmm.

    I hate to recommend web resources other than SSC because it is by far the best, but since Jamie Thomson requents SSC as well, I'll give him due credit. ...

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: Script Component writing UNC path very slow...

    Phil Parkin (6/17/2009)


    You have mentioned "Script Task" and "Script Component" as if they are the interchangeable - they are not. Just for clarification, I'm assuming that you mean Script Task...

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: TRimming of data froma record

    DECLARE @Table TABLE (RowValue varchar(15))

    INSERT INTO @Table

    SELECT 'ABC_error' UNION ALL

    SELECT 'CDB' UNION ALL

    SELECT 'XYZ' UNION ALL

    SELECT 'YUY' UNION ALL

    SELECT 'ROP_error'

    SELECT REPLACE(RowValue,'_error','')

    FROM @Table

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: Avoid mulitiple join on same table

    Some of that may depend on what is in the NOT EXISTS() clause. In this example, the SELECT statement in the NOT EXISTS is referencing a table outside the...

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: Avoid mulitiple join on same table

    I would favor the original query over the NOT EXISTS query. Your execution plan my look the same on this small example, but you'll see different results when you...

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: Script Component writing UNC path very slow...

    You could create one file destination and use the expression builder to create the file names so your process is dynamic enough to create as many (or few) files as...

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: Avoid mulitiple join on same table

    Bob,

    Your example does not work. Your INSERT INTO....VALUES construct is not correct. Also, I have a feeling your SELECT code in your example is not producing the...

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: How to copy a file on a share point site to our system using SSIS package

    Do you know the location of the file or do you want to attempt to pull it from the sharepoint api? If you can get the physical location of...

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: Script Component writing UNC path very slow...

    Just curious, why are you using a script task for this? I aggree that you should attempt to run a test where you write the files locally and then...

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: Backing up File Folders sitting on Server

    SQL Server only has the abillty to create SQL Server database backups. What you need is a file system backup. I would recommend working with your network or...

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

Viewing 15 posts - 1,381 through 1,395 (of 3,232 total)