Viewing 15 posts - 9,946 through 9,960 (of 13,874 total)
SQL_Learning (5/3/2013)
Execute process task 1 --- i am selecting all the .txt files and moving them
Execute process task...
May 3, 2013 at 8:03 am
SQL_Learning (5/2/2013)
I was trying to get all my .txt and .csv files from one folder and move them to another folder so, how can i do...
May 3, 2013 at 5:51 am
dfulks (5/1/2013)
May 2, 2013 at 2:59 am
Can you create a connection name which does not contain any spaces and try that?
May 2, 2013 at 1:31 am
Smash125 (4/29/2013)
Yes. how to process this file
That file does not exist. Remove the wildcard characters and use the real file name.
April 29, 2013 at 10:52 am
Daniel Bowlin (4/29/2013)
So the real challenge is getting the data out of the stored procedure. You could build a work table and then
INSERT...
April 29, 2013 at 8:25 am
brian.geregach (4/16/2013)
Setup:
I have an SSIS package that inserts rows to a database. On...
April 29, 2013 at 6:30 am
I do not think that the wildcard character * is valid in file names - assuming that that is your question?
April 29, 2013 at 4:15 am
Use an Execute Process command at the end of your package to run a DOS copy/append:
copy file1.txt+file2.txt+File3.txt+File4.txt AllFiles.txt
April 26, 2013 at 3:08 am
If you can find any way that you can re-engineer this process so that you do not do any sorting or grouping within SSIS and instead use the SQL Server...
April 25, 2013 at 8:41 am
prakashr.r7 (4/25/2013)
Phil Parkin (4/25/2013)
If just INSERTs, SSIS should eat that up with no need for any...
April 25, 2013 at 6:07 am
By 'Load' what do you mean? Just INSERTs, or INSERTs & UPDATEs? Or something else?
If just INSERTs, SSIS should eat that up with no need for any 'batch processing' -...
April 25, 2013 at 5:49 am
subbareddyap (4/24/2013)
I have one task, The task having stored procedure andthe task will be run daily and insert the data into Excel sheet.
Regards,
Subash.
What is your question?
April 25, 2013 at 1:12 am
Eric M Russell (4/24/2013)
Karan_W (4/23/2013)
1: Execute a storted proc and using the output create a CSV file.
2: this CSV file need to...
April 24, 2013 at 9:01 am
One thing which I can see holding this solution back as volumes increase is that the multiple EXECs are essentially single-threaded - they run sequentially.
A better-performing solution may be to...
April 24, 2013 at 4:27 am
Viewing 15 posts - 9,946 through 9,960 (of 13,874 total)