Viewing 8 posts - 1 through 8 (of 8 total)
This CTE solved the problem:
CREATE TABLE TestPivot (ID int, Name nvarchar(50))
INSERT INTO TestPivot VALUES (1,'aaa')
...
January 31, 2012 at 1:24 am
Thank you all for replying.
Making the following changes solved the issue:
1. Setting Text Qualifier of Flat File Connection Manager to ".
2. Using REPLACE(REPLACE(Column,",",""),"\"","") in Derived Column Transformation.
January 11, 2012 at 6:24 pm
Thank you all for your reply!
I modified the expression to fetch date directly from the XML file, rather than swapping mm and dd in SQL server table itself. This did...
December 22, 2011 at 12:54 am
Very helpful article! Simple and well-explained. Thanks for posting it!!!
November 1, 2011 at 9:36 pm
I solved this issue by converting the encoding in my C# page as follows:
//Define Windows 1252, Big5 and Unicode encodings
...
October 11, 2011 at 7:41 pm
No problem Sean!
Thank you for taking some time out for this!
October 9, 2011 at 9:00 pm
Hi Sean,
Which version of Access are you using?
I have to transfer data from Access 97, where Memo field uses Double-byte encoding. If you are using recent versions of Access,...
October 6, 2011 at 8:36 pm
Hi James,
Thanks for your reply. But, I agree with Sean. Nevertheless, I implemented your suggestion. Inserting non-English characters from Memo field to nText field still inserts ??? in SQL Server...
October 6, 2011 at 1:19 am
Viewing 8 posts - 1 through 8 (of 8 total)