Viewing 15 posts - 61 through 75 (of 118 total)
PSB (11/11/2010)
LEN([Phone]) == 10 ? (DT_STR,12,1252)SUBSTRING([Phone],1,3) + "-" + SUBSTRING([Phone],4,3) + "-" + SUBSTRING([Phone],6,4) : LTRIM(RTRIM([Phone]) worked for me .Thanks a lot
Any idea why you needed 6,4 in the...
November 11, 2010 at 2:40 pm
PSB (11/11/2010)
LEN([Phone]) == 10 ? (DT_STR,12,1252)SUBSTRING([Phone],1,3) + "-" + SUBSTRING([Phone],5,3) + "-" + SUBSTRING([Phone],9,4) : LTRIM(RTRIM([Phone]) is inserting as 803-887-84instead of 803-788-7884 from the number 8037887884
Whoops, I...
November 11, 2010 at 2:27 pm
I would loop through your files and use presedence constraints to determine which table to write to.
November 11, 2010 at 2:11 pm
Do you know what the file definition will be for each table ahead of time?
November 11, 2010 at 1:14 pm
shirishjani (11/11/2010)
suppose
1 is jann.txt then i have that table for that schema is ready so just want to insert in...
November 11, 2010 at 1:07 pm
You could use the PIVOT relational operator to get the same result too.
November 11, 2010 at 1:05 pm
PSB (11/11/2010)
I have a phone field in the excel source. Sometimes it comes as xxx-xxx-xxxx and sometimes xxxxxxxxxx .
I have to check if the length of the field is...
November 11, 2010 at 1:02 pm
Elliott Whitlow (11/11/2010)
tmitchelar (11/3/2010)
November 11, 2010 at 7:29 am
Craig Farrell (11/10/2010)
I agree with you it's possible, but the 4.xml statement was the one that got me. He's overloading the load with multiple types, which is gonna go...
November 10, 2010 at 2:20 pm
conningtower (10/2/2009)
I m trying to access an Oracle table and update a sql table based on a primary key match between the two tables.
What I ve done...
November 10, 2010 at 2:00 pm
shirishjani (11/10/2010)
Want to make SSIS package
it will take file from folder and insert that file's data in SQL server
every day in folder i receive different type of...
November 10, 2010 at 1:56 pm
You could perform a lookup to the destination table on the primary key, and then only insert records that fail the lookup. You could even redirect your records that...
November 10, 2010 at 12:57 pm
Linda 44925 (11/9/2010)
I’ve never done any work with CTE’s before and I would very much appreciate it if you would give some more detailed explanations of why you changed the...
November 9, 2010 at 11:17 am
Have you tried changing your row delimiter?
November 9, 2010 at 10:22 am
A couple of things...
I would make sure there aren't any other processes running on or against that server at the same time your process is running.
Or you could...
November 9, 2010 at 9:23 am
Viewing 15 posts - 61 through 75 (of 118 total)