Hi
in my package i am getting data from txt file and loading in to table sqlserver 2005.
there is one column as mentioned below in txt file
Lname
-------
ASD
ABCED
ASFGTE
K"C"ASDF ------------ replace " with space
PLKJH
now i want to replace the " with sapce
so i have used drived column transformation and using the following expression
Replace([Lname],"\"","")
but its not working
can any one help me with this ??