SSIS package works on one machine and gives conversion error on other machine

Hi All,
I have 150 + packages, I am fetching data from Oracle (11g) and loading in SQL Server. My problem is all the packages works fine on one machine whereas some of the packages give error "cannot convert between unicode and non-unicode string data types"
on other machine. Please note I have implemented data conversion in all the relevant packages and I have used SSDT for the migration.
My question is why the packages are working on one machine and not on another machine? How can I fix the issue without changing the packages (as it works on one machine) and where should I look for the problem?
Thank you for your help!!

One more observation, the machine on which all the packages are working reads char, varchar, nvarchar and nchar data type from source as DT_WSTR whereas on other machine it reads as DT_STR and DT_WSTR.
Can you check the datatyype mapping definition file under
<installationdrive>\Program Files\Microsoft SQL Server\110\DTS\MappingFiles
and see if two systems have any difference in file contents for Oracle to SSIS mapping?
Please Mark This As Answer if it helps to solve the issue Visakh ---------------------------- http://visakhm.blogspot.com/ https://www.facebook.com/VmBlogs

Similar Messages

  • SSIS package works in Visual Studio but not as a scheduled Job.

    I have a SSIS package that takes some CSVs and Excel documents and imports the data into a database.  The CSVs and Excel document come from outside agencies so I have no control over them.  I have successfully created and ran the SSIS package in
    BIDS (Visual Studio)  However, when I try to run it as a scheduled job on the SQL server I get the following error.
    Source: Import Brazos CSV data Brazos Co CSV [1]     Description: Data conversion failed. The data conversion for column "offDescription" returned status value 4 and status text "Text was truncated or one or more characters had no
    match in the target code page."
    The column is set to ignore on truncation in the data flow source.
    Any suggestions would be appreciated. 
    Thanks
    KJ
    Kevin Joyner

    Hi Kjoyner96,
    The error usually occurs due to the data conversion between non-Unicode and Unicode characters. According to your description, the data type of the Output Columns of the Flat File Source should be DT_STR. If the source flat file uses Unicode encoding and
    contains Unicode characters, the data conversion from DT_WSTR to DT_STR will fail. So, I guess the source file in your Dev environment doesn’t have Unicode characters, while the source file on the SSIS server has Unicode characters. If this is the case, open
    the Advanced Editor for the Flat File Source, switch to the Input and Output Columns Properties tab, and change the data type of the Output columns from DT_STR to DT_WSTR. In this condition, the Data Conversion Transformation is not necessary.
    Regards,
    Mike Yin
    TechNet Community Support

  • Auto To working for one material and not working for other material

    Hi,
    Hope everybody is doing fine.
    I have configured the auto TO. Its working fine for one material and not working for the other material. I checked the material master and wm 1,2 views have the same fileds / values. What could be wrong?
    I didn't setup the back ground processing job. Is that is affecting it?
    thanks for any help.
    regrads,
    KHAN

    Thnaks,
    You are right but then what could be wrong? Its working for one material and not working for otehr material? Any clue?
    Appreciate your time charlie

  • Firefox stop to work in one time,and i have to restart all because ff dont wor when i try to change page with mouse

    firefox stop to work in one time,and i have to restart all because ff dont wor when i try to change page with mouse

    Start Firefox in [[Safe Mode]] to check if one of your add-ons is causing your problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    * Don't make any changes on the Safe mode start window.
    See [[Troubleshooting extensions and themes]] and [[Troubleshooting plugins]]
    If it does work in Safe-mode then disable all your extensions and then try to find which is causing it by enabling one at a time until the problem reappears.
    * Use "Disable all add-ons" on the [[Safe mode]] start window to disable all extensions.
    * Close and restart Firefox after each change via "File > Exit" (Mac: "Firefox > Quit"; Linux: "File > Quit")

  • I've spent 6 hours trying to update my iPad, and it doesn't work. It can't get past trying to back up, and just stops and gives an error code. I've deleted the backup, re-synced, and tried again and still no luck. What do I do now?

    I've spent 6 hours trying to update my iPad, and it doesn't work. It can't get past trying to back up, and just stops and gives an error code. I've deleted the backup, re-synced, and tried again and still no luck. What do I do now?

    I am not running any antivirus software on my Mac, and I have the firewall shut off. Any other ideas? I have not problem downloading all other Apple software updates. I downloaded the latest iTunes software before starting the iPad update process.

  • Ibooks will not open the featured books page and gives an error message can't connect to iTunes Store. I have logged out and back in again and have restarted neither have worked. Any other suggestions?

    ibooks will not open the featured page on my ipad and gives an error message that it can't connect to iTunes Store, despite the other tabs working. I have signed out and back in again I have restarted neither worked . What else can I do?

    Hello Tm115,
    Thanks for using Apple Support Communities.
    For more information on this, take a look at:
    Can't connect to the iTunes Store
    http://support.apple.com/kb/TS1368
    Best of luck,
    Mario

  • I am capturing audio(my voice)and want to transmit to other machine in LAN.

    I am capturing audio(my voice)and want to transmit to other machine in LAN...USING JMF...
    But few errors are coming like-----
    ----java.lang.Error: Error opening DSound for capture
    ----javax.media.NoDataSourceException: Error instantiating class: com.sun.media.protocol.dsound.DataSource : java.lang.Error: Error opening DSound for capture
    at javax.media.Manager.createDataSource(Manager.java:1017)
    at MediaTransmitter.main(MediaTransmitter.java:69)
    can some one tell me how should i transmit voice to other ip address????
    My transmitter.java is program is :---
    import javax.media.*;
    import javax.media.control.*;
    import javax.media.protocol.*;
    import javax.media.format.*;
    import java.io.IOException;
    import java.io.File;
    import java.util.Vector;
    public class MediaTransmitter {
    private MediaLocator mediaLocator = null;
    private DataSink dataSink = null;
    private Processor mediaProcessor = null;
    private static final Format[] FORMATS = new Format[] {
    new AudioFormat(AudioFormat.ULAW_RTP)};
    private static final ContentDescriptor CONTENT_DESCRIPTOR =
    new ContentDescriptor(ContentDescriptor.RAW_RTP);
    public MediaTransmitter(MediaLocator locator) {
    mediaLocator = locator;
    public void startTransmitting() throws IOException {
    mediaProcessor.start();
    dataSink.open();
    dataSink.start();
    public void stopTransmitting() throws IOException {
    dataSink.stop();
    dataSink.close();
    mediaProcessor.stop();
    mediaProcessor.close();
    public void setDataSource(DataSource ds) throws IOException,
    NoProcessorException, CannotRealizeException, NoDataSinkException {
    mediaProcessor = Manager.createRealizedProcessor(
    new ProcessorModel(ds, FORMATS, CONTENT_DESCRIPTOR));
    dataSink = Manager.createDataSink(mediaProcessor.getDataOutput(),
    mediaLocator);
    public static void main(String[] args) {
    try {
    MediaLocator locator = new MediaLocator("rtp://192.168.1.75:333/audio");
    MediaTransmitter transmitter = new MediaTransmitter(locator);
    System.out.println("-> Created media locator: '" +
    locator + "'");
    Vector devices=CaptureDeviceManager.getDeviceList ( null );
    CaptureDeviceInfo cdi= (CaptureDeviceInfo) devices.elementAt ( 0 );
    DataSource source = Manager.createDataSource(cdi.getLocator());
    transmitter.setDataSource(source);
    System.out.println("-> Set the data source on the transmitter");
    transmitter.startTransmitting();
    System.out.println("-> Transmitting...");
    System.out.println(" Press the Enter key to exit");
    System.in.read();
    System.out.println("-> Exiting");
    transmitter.stopTransmitting();
    } catch (Throwable t) {
    t.printStackTrace();
    System.exit(0);
    }

    OT
    Thanks for the suggestion . As soon as they hand me my laptop at the store  in 45 minutes time I shall try the disable and then re boot as you suggest.
    so far they sent me this; Disk  has no problem.They may have more to say to me re the flash drive and results of storage diagnostics and ASDs ( what is this? ) when I see them .
    The case repair is redundant to the problem I am having  but if they give me a new one worth $399 i will not complain,eh.
    Problem Description/Diagnosis
    Issue: MacBook Pro is running extremely slow. Specifically IPhoto
    Steps to Reproduce: Attempted to repair disk, no issues found.
    Cosmetic Condition: Scratches to enclosure and clamshell.
    Proposed Resolution: Tighten MagSafe board. Run storage diagnostics and ASDs if no trouble found with flash drive.
    Estimated Turn Around Time: We'll call you in 3 - 5 days
    Mac OS Version: 10.10.x
    Hard Drive Size: 251 GB
    Memory Size: 8 GB
    iLife Version: Unknown
    Employee 1178255246
    Repair Estimate
    Item Number
    Description
    Price
    Amount Due
    Customer KBB
    661-8154
    Housing, Top Case with Battery
    $ 399.00
    $ 0.00
    S1490LL/A
    Hardware Repair Labor
    $ 39.00
    $ 0.00
    Tax
    $ 0.00
    Total
    $ 438.00
    $ 0.00

  • Iphone 3gs shows activation required, hocked up to iTunes and it is not recognized. Did the restore but just gets to the end and gives an error message it could not be restored, an unknown error occurred (-1). Can someone assist me in next steps please?

    iphone 3gs shows activation required, hooked up to iTunes and it is not recognized. Did the restore but just gets to the end and gives an error message it could not be restored, an unknown error occurred (-1). Can someone assist me in next steps please?

    Instructions to get the phone back working temporary.. till there is a real fix.
    1. turn off the phone
    2. fire up iTunes
    3. press and hold the home button, plug in the cable, hold till you get to see the recovery mode
    4. iTunes will the allow to choose restore the phone back to 5.0.1 ( no other choice)
    5. iTunes will then ask you to choose which previous backup to would like to recover.
    (note: please do not reboot your phone unless necessary, i realize at times after reboot, it goes back to sq1)

  • Please help, i connect my phone to computer and gives me error code this i phone cannot be used because the apple mobile device is not started

    please help, i connect my phone to computer and gives me error code this i phone cannot be used because the apple mobile device is not started

    http://support.apple.com/kb/HT1923
    uninstall and reinstall
    there is a complicated way to work with just the mobile device support but its simpler just to uninstall itunes and related components and then reinstall itunes
    ur music will be fine, u will just lose the playlists. but ur mobile device support will be working again.

  • To download an App the 3 security questions are required. But at the end, apple is not able to complete the task and gives an error message. No more downloads are possible. What can I do?

    to download an App the 3 security questions are required. But at the end, apple is not able to complete the task and gives an error message. No more downloads are possible. What can I do?

    Very Important, how much Free Space is on your Hard Drive first of all? Click on the Macintosh HD on the Desktop, then do a Get Info on it.
    Could be many things, we should start with this...
    "Try Disk Utility
    1. Insert the Mac OS X Install disc, then restart the computer while holding the C key.
    2. When your computer finishes starting up from the disc, choose Disk Utility from the Installer menu at top of the screen. (In Mac OS X 10.4 or later, you must select your language first.)
    *Important: Do not click Continue in the first screen of the Installer. If you do, you must restart from the disc again to access Disk Utility.*
    3. Click the First Aid tab.
    4. Select your Mac OS X volume.
    5. Click Repair Disk, (not Repair Permissions). Disk Utility checks and repairs the disk."
    http://docs.info.apple.com/article.html?artnum=106214
    Then try a Safe Boot, (holding Shift key down at bootup), run Disk Utility in Applications>Utilities, then highlight your drive, click on Repair Permissions, reboot when it completes.
    (Safe boot may stay on the gray radian for a long time, let it go, it's trying to repair the Hard Drive.)
    If perchance you can't find your install Disc, at least try it from the Safe Boot part onward.
    Do they launch OK while in Safe Mode?

  • How to connect new iMac to tv with a hdmi cord on one end and a thunderbolt on the other end

    how to connect new iMac to tv with a hdmi cord on one end and a thunderbolt on the other end

    You need a > Moshi Mini DP to HDMI Adapter with Audio Support - Apple Store (U.S.) to plug into the ThunderBolt port and an HDMI cable.

  • My compouter (PC) no longer recognizes my ipod (4th gen), it "sees" an unknowndevice and gives me error code 43.  Please help.

    My compouter (PC) no longer recognizes my ipod (4th gen), it "sees" an unknowndevice and gives me error code 43.  Please help.

    Check for hardware issues
    Try to restore your iOS device two more times while connected with a cable, computer, and network you know are good. Also, confirm your security software and settings are allowing communication between your device and update servers. If you still see the alert when you update or restore, contact Apple support.
    Common errors: 1, 10-47, 1002, 1011, 1012, 1014, 1000-1020.
    If still problem, make an appointment at the Genius Bar of an Apple store since it appears you have a hardware problem.
    Apple Retail Store - Genius Bar                                      

  • When I try to connect the Air with my iPhone to create an Hotspot, it drops the connection and gives an error message in the iPhone saying that the device (MacBook Air) is not supported. What can i do about it?

    When I try to connect the Air with my iPhone to create an Hotspot, it drops the connection and gives an error message in the iPhone saying that the device (MacBook Air) is not supported. What can i do about it?

    The problem has been fixed with the most recent OS X software update.

  • Hi, I am unable to install new itunes version to windows 7 PC.  It requires application support and gives windows error 2.  I have tried to save on desktop and run as administrator but errors remains, what other options do I have

    Hi, I am unable to install new itunes version to windows 7 PC.  It requires application support and gives windows error 2.  I have tried to save on desktop and run as administrator but errors remains, what other options do I have?

    Hello, hanliefromzaf. 
    Thank you for visiting Apple Support Communities. 
    Here is an article that I would recommend going through when experiencing this issue. 
    iTunes for Windows: Unable to install or open
    http://support.apple.com/kb/ts5376
    Cheers,
    Jason H. 

  • I have the same songs showing up on 2 playlists on my Ipod. How do I remove the songs from one playlist and leave them on the other playlist?

    I have the same songs showing up on 2 playlists on my Ipod. How do I remove the songs from one playlist and leave them on the other playlist?

    Hi tmilbut,
    Welcome to the Support Communities!
    The information below may be able to answer your questions about how to delete items from a playlist on an iPod.
    iPod Nano User Guide - Remove items from a playlist - page 23
    http://manuals.info.apple.com/MANUALS/1000/MA1624/en_US/ipod_nano_user_guide.pdf
    Remove items from a playlist:
    1 On the Home screen, tap Music > Playlists, then tap the playlist you want to edit.
    2 Flick down, then tap Edit.
    3 Tap next to the item you want to delete, then tap Delete when it appears on the right.
    4 When you finish, tap Done.
    Delete a playlist:
    1 On the Home screen, tap Music > Playlists.
    2 Flick down, then tap Edit.
    3 Tap next to the playlist you want to delete, then tap Delete when it appears next to the playlist.
    If you tapped the wrong playlist, tap the one you want to remove.
    4 Tap Delete, or tap Cancel if you change your mind.
    5 When you finish, flick up, then tap Done (or swipe right to return to the Home screen if you cancel).
    Cheers,
    - Judy

Maybe you are looking for

  • HELP! Need Hypethreading in Windows XP PRO

    Sup    I please need some help here to get Intel (HT) Hypethreading to work in Windows XP Pro. I have a Intel SL6Z3 Pentium 4 2.4GHz with HT technology, MSI 875P Neo mainboard (i875P An Intel Chipset that supports HT techology), AMI Bios 1.9 that sup

  • Full Screen Preview in 2nd Monitor

    On a dual display system, is there any way to view the video preview of DCP, full screen on your other monitor ?

  • BW Reporting and R/3 Data

    Hi, I have deleted some data from a table in R/3. But when i am quering that Table in BW. I am still getting  records which are deleted from R/3. Please help me out.

  • Problem installing CS2 Illustrator onto non HFS disk

    I am activating Illustrator CS2 onto a new computer with the special code, but I cannot locate a disk to install it on. I get this:

  • Create mirror text and stroke text in AI Scripting

    Hello All, Please help me with the Script of creating mirror text and stroke text in Adobe illustrator scripting. Thanking you. With Regards Sawlay Singh.