Viewing 12 posts - 1 through 12 (of 12 total)
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
)
September 23, 2008 at 2:46 pm
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...
September 23, 2008 at 1:56 pm
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...
August 26, 2008 at 8:40 pm
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...
August 21, 2008 at 9:35 pm
Thanks for all your suggestions.
I ended up using the following command:
dtexec /f packageName.dtsx
...and that works great.
November 4, 2007 at 11:19 am
Oohhh, sorry for being such as spazz.
Thanks for clearing that up.
October 23, 2007 at 7:38 am
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...
October 23, 2007 at 7:21 am
Thanks Jeff,
I really appreciate your persistence and help.
October 16, 2007 at 10:16 am
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...
October 16, 2007 at 5:37 am
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...
October 15, 2007 at 9:27 pm
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...
May 15, 2007 at 2:28 pm
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,...
May 15, 2007 at 8:46 am
Viewing 12 posts - 1 through 12 (of 12 total)