Viewing 12 posts - 1 through 12 (of 12 total)
Have you tried with changing the datatype try using nchar instead of char. This may work use nchar(255) a bigger value.
January 15, 2014 at 7:38 am
The error message is saying that string or Binary value would have been Truncate means you are trying to insert a value which has more length you defined so you...
January 14, 2014 at 9:36 am
You can do some thing like this
select * into TempTable
from OldTable
-- Here you can use a where condition to get only the records you wanted.
--or you can delete the records...
November 8, 2013 at 9:35 am
Declare a newvariable called Filename and in the expression builder use the below expression it will give you fileName
REVERSE(SUBSTRING(
...
November 4, 2013 at 12:47 pm
Thanks guys for your reply. I am sorry for the broken DDL
Here is the correct Table structure ans some sample Data
Create table Customersnumber
(
cityname varchar(25)
,LoyalCustomers int
,DiscountCustomers int
,ImpulseCustomers int
,NeedBasedCustomers int
,WanderingCustomers int
)
insert...
June 28, 2013 at 4:31 pm
Thanks a lot for your help. Struggled for a day with this. But looks very simple and clear.
June 19, 2013 at 10:56 am
finally i solved this by changing Text qualifier: " in the flat file connection manager
June 3, 2013 at 2:08 pm
Thanks guys for your query
i have executed this and it gave me all the table names and columns where the condition is met.
May 23, 2013 at 10:59 am
Here all my datatypes are varchar there is no other datatype i have loaded the data into stating table where i have got some negative values and empty spaces loaded...
May 23, 2013 at 9:57 am
Thanks for the reply, I think this update statement is only for updating a particular column but i have to update all of my columns, tables in my entire Database,...
May 23, 2013 at 7:50 am
I am assuming that you are doing other things with these file and not just moving them?
If not, the FEL is overkill (and potentially slow). Instead you could use Execute...
May 3, 2013 at 7:52 am
Viewing 12 posts - 1 through 12 (of 12 total)