Viewing 15 posts - 12,301 through 12,315 (of 13,849 total)
That was fun! 🙂
Use this as your derived column definition:
SUBSTRING([OpenDate],FINDSTRING([OpenDate],"/",2) + 1,4) + "-" + SUBSTRING([OpenDate],1,FINDSTRING([OpenDate],"/",1) - 1) + "-" + SUBSTRING([OpenDate],FINDSTRING([OpenDate],"/",1) + 1,FINDSTRING([OpenDate],"/",2) - FINDSTRING([OpenDate],"/",1) - 1) + SUBSTRING([OpenDate],LEN([OpenDate])...
January 30, 2010 at 4:31 am
It does feel like it is permissions related, but ...
..if it were, why would the Script Task work and the File System Task have problems?
January 29, 2010 at 12:28 pm
I've also had problems doing this sort of thing in the past and ended up scripting it ... I know others have too (I've seen the forum posts) - this...
January 29, 2010 at 12:11 am
I think Lynn is correct: export the package out into the file system and then open it in BIDS to see what the steps are doing ...
By the way, I...
January 28, 2010 at 11:08 am
Is there a delimiter (eg "") around company name? Or is it just
Field1, co, name, here, field2
Field1, another company name here, field3
?
If there is no field delimiter, you are...
January 28, 2010 at 3:26 am
You could have a look here and see where the links take you.
January 28, 2010 at 2:36 am
Some sample data (source & desired output) would illuminate this for others who are reading ...
You are probably going to end up using the Script Component within a dataflow to...
January 23, 2010 at 2:23 am
Use a SQL Server statement as you suggest (you can get the result of a single-valued T-SQL query into a variable (say MaxID) directly from the Execute SQL task).
Then use...
January 23, 2010 at 2:18 am
Please consider posting this in a more appropriate forum ... one related to Crystal, perhaps? 🙂
January 20, 2010 at 9:32 am
Sounds like an automated backup/restore process might be more efficient - are you effectively just replacing the dev db?
January 19, 2010 at 10:24 am
Are the files all of the same format? Are they going to the same destination folder?
January 19, 2010 at 12:19 am
Another alternative, of course, is to do it all in one hit at the end, using a simple UPDATE query.
January 18, 2010 at 3:05 pm
Viewing 15 posts - 12,301 through 12,315 (of 13,849 total)