Forum Replies Created

Viewing 12 posts - 1 through 12 (of 12 total)

  • RE: exec .dtsx and ant .xml

    Alright,

    I figured it out, this is the working version!!

    @echo

    IF EXIST "C:\myProject\fileDrop\*.csv" (

    cd "C:\MypathToproject\Project\bin"

    dtexec /f load.dtsx

    cd "D:\MyAntPlace\bin"

    ant -buildfile D:\MyAntPlace\config\myTest.xml

    ) ELSE (

    echo file does not exist

    EXIT

    )

  • RE: exec .dtsx and ant .xml

    It's been a while since I wrote this.

    But wanted to follow up and share what I got..

    @echo

    If Exist "C:\myProject\fileDrop\*.csv" (

    cd "C:\MypathToproject\Project\bin"

    dtexec /f load.dtsx

    cd "D:\MyAntPlace\bin"

    ant -buildfile D:\MyAntPlace\config\myTest.xml

    ) else (

    echo file does...

  • RE: SSIS/FTP/textfile/Email

    Your question is not very clear.

    Are you importing the records to a table?

    What have you tried so far...?

    If you want please elaborate, or take a look at this, it might...

  • RE: Unstrectured Flat file loading

    Welcome,

    If you are new to SSIS I would strongly suggest the book:

    Professional SQL Server 2005 Integration Services, that should defiantly get you started.

    You have to at least attempt to start...

  • RE: execute package...

    Thanks for all your suggestions.

    I ended up using the following command:

    dtexec /f packageName.dtsx

    ...and that works great.

  • RE: import multiple files as a process

    Oohhh, sorry for being such as spazz.

    Thanks for clearing that up.

  • RE: import multiple files as a process

    See tutorial in BOL: Creating a Simple ETL Package---Lesson 2: Adding looping

    Where do I find this tutorial? And what is BOL?

    I have googled this and searched on this site, but...

  • RE: delete and determine dups by datetime field

    Thanks Jeff,

    I really appreciate your persistence and help.

  • RE: delete and determine dups by datetime field

    I understand what you are saying.

    And I apologize for not being more clear.

    My primary key is a true primary key in another system. Instead of truncating the table and...

  • RE: delete and determine dups by datetime field

    As a matter of fact, I am fully capable of inserting new record, that actually are duplicates into this table.

    I am not quite sure why you say I would not...

  • RE: Insert into ...

    Mypk is supposed to be the primary key but this is not always the case.

    This is an integration of multiple sources and ID is the true primary key.

    But can not...

  • RE: Insert into ...

    Thanks,

    It was easier than I thought.

    This is sort of what I did....

    INSERT INTO DuplicateTable (id, lastname, firstname, Mypk, dateStamp)

    SELECTid, lastname, firstname, Mypk, getDate()

    FROMINPUT_RECORDS

    WHEREMypk is not null

    GROUP BY id, lastname, firstname,...

Viewing 12 posts - 1 through 12 (of 12 total)