Can't run non-UNICODE-DbSl against UNICODE database

Hi everyone. I get this error during the update of Solution Manager 7.1 SPS4 (dual stack) to SPS10. It is a green install. This happens during the
phase PREP_EXTRACT/PREIMP! Of the ABAP stack. Step 5.2. I do not see a lot of people with this problem, so I assume it is something I am doing wrong, as it is my first time using the tool SUM.
Details of the system:
Solution Manager 7.1 SPS4
Windows 2008 R2 64 bit
Microsoft SQL 2008 R2 64 bit SP1
Central installation type with all components on
the same host
Kernel level 600
Here is what I have done so far:
Downloaded the media as described in the installation
guide.
Worked my way through the install using the
Software Provision Manager 1.0
Updated the Kernel from level 401 to 600, by
copying the files from the download folder to the F:\usr\sap\SM1\SYS\exe\uc\NTAMD64
folder. This is the folder that is assigned to the DIR_CT_RUN parameter.
I start the STARTUP.BAT file in the SUM folder.
I then start the SUM GUI and run through the
steps and in step 3 I map the Stack configuration file (XML) to one listed in
the folder “51047130\DATA” called “SPS10_stack.xml”
Then I
get to 5.2 where the system stops with this error:
Severe error(s) occurred in phase PREP_EXTRACT/PREIMP!
Last error code set: Single errors (code <= 8) found in logfile 'PREIMP.ELG'
ERROR: Detected the following errors:
# F:\usr\SUM\abap\log\R710VPE.<DB>:
      4 ETW000 TRACE-INFO: 19:  [    dev trc,00000]  Driver: sqlncli10.dll Driver release: 10.50.2769                                3938  0.039733
      4 ETW000 TRACE-INFO: 20:  [    dev trc,00000]  GetDbRelease: 10.50.2769.00                                                      1603  0.041336
      4 ETW000 TRACE-INFO: 21:  [    dev trc,00000]  GetDbRelease: Got DB release numbers (10,50,2769,0)                                21  0.041357
      4 ETW000 TRACE-INFO: 22:  [    dev trc,00000]  Can't run non-UNICODE-DbSl against UNICODE database                              2647  0.044004
      4 ETW000 TRACE-INFO: 23:  [    dev trc,00000]  CheckCodepageType failed. Connect terminated.                                      13  0.044017
      2EETW169 no connect possible: "DBMS = MSSQL                            ---  SERVER = '<SERVER>' DBNAME = '<DB>'"
Can
anyone please help?
PS:
The admin user that I use do have access to the database. It is listed with
sysadmin role and the default DB is the Solution Manager db.

ERROR: Detected the following errors:
# F:\usr\SUM\abap\log\R710VPE.<DB>:
      4 ETW000 TRACE-INFO: 19:  [    dev trc,00000]  Driver: sqlncli10.dll Driver release: 10.50.2769                                3938  0.039733
      4 ETW000 TRACE-INFO: 20:  [    dev trc,00000]  GetDbRelease: 10.50.2769.00                                                      1603  0.041336
      4 ETW000 TRACE-INFO: 21:  [    dev trc,00000]  GetDbRelease: Got DB release numbers (10,50,2769,0)                                21  0.041357
      4 ETW000 TRACE-INFO: 22:  [    dev trc,00000]  Can't run non-UNICODE-DbSl against UNICODE database                              2647  0.044004
      4 ETW000 TRACE-INFO: 23:  [    dev trc,00000]  CheckCodepageType failed.
As per error, you have used wrong kernel. Please make sure that you use unicode kernel as your system is also unicode.
Thanks,
Sunny

Similar Messages

  • Problem in running a 6i-form against 10g-Database

    Hi gentlemen, I'm developing my application with Database 10g and Developer-6i at front end. when I compile a file (which was formarly created with Dev-6i but Database 8.3(personal edition)at the back end) it gives the following error:
    Compiling PRE-INSERT trigger on PURINV_MAS data block...
    Compilation error on PRE-INSERT trigger on PURINV_MAS data block:
    PL/SQL ERROR 0 at line 0, column 0
    ORA-00600: internal error code, arguments: [17069], [77299844], [], [], [], [], [], []
    Compiling WHEN-LIST-CHANGED trigger on UNIT_NAME item in PURINV_MAS data block...
    Compilation error on WHEN-LIST-CHANGED trigger on UNIT_NAME item in PURINV_MAS data block:
    PL/SQL ERROR 0 at line 0, column 0
    ORA-00600: internal error code, arguments: [17069], [77299844], [], [], [], [], [], []
    Compilation errors have occurred.
    however if I run this file again with Db8x at back-end,it compiles n runs correctly without any error. Plzzz can u tell me a solution for this? thanx.

    With 10g database, minimum required patch is patch 16 (patch 17 is last Forms 6i patch).
    Regards,
    Zlatko Sirotic

  • Running the same query against numerous databases

    My organization has 20+ clients. Each client has a separate database in the same MSSQL server*. For these purposes, the databases are structurally identical. I've been tasked to gather information from tables in all of these databases. I can use the same query on multiple clients - my issue is switching between databases.
    The naive solution would be for me to declare 20+ DataSource instances, and have some mapping from client name to DataSource. I think that's going to be a real mess and my inclination is to avoid it.
    Another possibility would be dynamically generating the PreparedStatement based on the client, something like
    "SELECT foo, bar " + "FROM " + client.getDatabaseName() + ".dbo.my_table";
    My understanding, though, is that it's a bad practice to have dynamically generated prepared statement calls and not possible to parameterize the 'from' clause.
    Another thing I've been digging around at is using a transaction and an SQL Server call to alter what database calls from that transaction go to. I thought that could be done, but I'm not finding anything which suggests it's possible.
    I guess I've identified my problem, but I'm thrashing on how to solve it. I'm still newish to non-trivial database interactions, so I'd appreciate any input. If I posted this in the wrong place, please feel free to yell at me and move it.
    Thanks in advance,
    Eric
    * Not my fault. I'm new.

    I'm collection usage and storage metrics. "Client X has 200 records, Client Y has 250. Client X has 15 active users, Client Y has 12."
    The data is being read from the client databases and stored into a separate metrics database.
    I anticipate it will be mostly select count() calls.
    I can. For the maintenance reasons I mentioned above, I'd rather not have to maintain all those datasources if I don't have to.
    No, the invocations will be sequential.
    for (each metric type) {
        for (each client) {
            gather information;
            add to batch
        update batch in metrics database
    }I guess I was hoping there was a Sekrit SQL way to swap what database inside a server instance the connection was pointing to. I'm guessing that's not going to happen, and I'm left with N datasources for N clients or generated preparedStatements which swap out the database name in the FROM portion.
    The data is being written to a table in a single, separate metrics database.
    I'm trying not to, honest.
    Edited by: 919852 on Mar 12, 2012 8:38 AM

  • Web-Intelligence Reports against Access Database

    We are unable to run Web-Intelligence reports against Microsoft Access Database which resides on a network drive
    Able to create Unvierse, and Universe Connection to the Access Database through ODBC, but unable to run Web-I reports, when tried we get the following error
    A database error occured. The database error text is: [Microsoft][ODBC Microsoft Access Driver] '(unknown)' is not a valid path.  Make sure that the path name is spelled correctly and that you are connected to the server on which the file resides.. (WIS 10901)
    Did anyone tried to develop Web-I reports from Access database on a network drive, if so I request you to provide us details and your findings
    Thank you

    We run the designer on the same machine where BOBJ runs and also on other client machines, from disigner it works fine,
    The service account which is used to run BO Application Services has full control access to the network location and folder where the database resides
    We can run / refresh Desk-I and Web-I rich client but cannot run web-i reports against access database
    Thanks
    Sreekanth Pinnam
    Edited by: Sreekanth Pinnam on Jul 9, 2009 2:07 PM

  • Reports 6i against 10g database

    Hi,
    We are upgrading our database from 9i to 10g. We are running our reports (6i) against 10g database in the batch mode. For some of our reports we are getting the following error:
    REP-0736: There exist uncompiled program unit(s).
    REP-1247: Report contains uncompiled PL/SQL.
    When report is opened in ReportBuilder it needs to be recompiled against 10g and then it runs fine.
    Please advise how to solve this problem.

    This is not because of the database is changed. Some of the packages/program units compilation dates might have changed and hence reports wants it to be recompiled.
    Rajesh Alex

  • Cannot run a UNICODE kernel against a non-UTF8 database

    Hi,
    I am trying to install SAP ECC 6.0 SR2 . am using  windows 2003 server oracle 10g db.
    please help me how to resolve this...
    sapparam: sapargv( argc, argv) has not been called.
    sapparam(1c): No Profile used.
    sapparam: SAPSYSTEMNAME neither in Profile nor in Commandline
    D:\usr\sap\DEV\SYS\exe\uc\NTI386\R3load.exe: START OF LOG: 20100717144107
    D:\usr\sap\DEV\SYS\exe\uc\NTI386\R3load.exe: sccsid @(#) $Id: //bas/700_REL/src/R3ld/R3load/R3ldmain.c#13 $ SAP
    D:\usr\sap\DEV\SYS\exe\uc\NTI386\R3load.exe: version R7.00/V1.4 [UNICODE]
    Compiled Jul 17 2007 01:28:45
    D:\usr\sap\DEV\SYS\exe\uc\NTI386\R3load.exe -testconnect
    DbSl Trace: ORA-1403 when accessing table SAPUSER
    DbSl Trace: Cannot run a UNICODE kernel against a non-UTF8 database (charset = AL32UTF8)
    (DB) ERROR: db_connect rc = 256
    DbSl Trace: Default conn.: already connected to DEV
    (DB) ERROR: DbSlErrorMsg rc = 29
    D:\usr\sap\DEV\SYS\exe\uc\NTI386\R3load.exe: job finished with 1 error(s)
    D:\usr\sap\DEV\SYS\exe\uc\NTI386\R3load.exe: END OF LOG: 20100717144108

    Reinstallae the server .problem solved thanks to 3everyone

  • Troubles between non-Unicode R3 and Unicode Adobe LiveCycle Designer

    Hi experts,
    I'm getting troubles while trying to make a New Data Connection to R3 from Adobe LiveCycle Designer. The error say's "Cannot proccess unicode RFC in non-unicode system (for details see note 875767#)".
    I know R3 was configured non-unicode and Adobe is unicode, but non of them let me change this property even in Adobe options or in RFC options. How can I solve this problem without changing unicode R3 kernel configuration?
    Thanks

    Did you raise this SAP via an OSS message?
    Chintan

  • Can you run multiple Excel Services Applications against a single Web Application?

    I have been struggling with this one for a while now, hopefully someone can help me understand what I am missing...
    I have a single SharePoint Farm.  This farm runs multiple Web Applications & the Service Applications.
    1. SharePoint Only Server with Multiple Site Collections (http://sharepoint.com/...)
    2. MS Project Server with Multiple Site Collections (http://pwa.com/...)
    3. My services applications all exist on the same farm.
    I was under the impression, and believe that I validated this through testing and from this site (http://blogs.office.com/2009/11/16/excel-services-in-sharepoint-2010-administration-improvements),
    that you can only run a single Excel Services Application against each unique Web Application.  In essence, I can run one Excel Services Application against the SharePoint Only Server, and another Excel Services Application against the MS Project
    Server...  However, I can NOT run multiple Excel Services Applications against the different Site Collections within the MS Project Server becuase it is only aware of its "default" Excel Service Application. 
    ie. I can NOT do the following:  ExcelServiceApp1 for
    http://pwa.com/SiteA & ExcelServiceApp2 for
    http://pwa.com/SiteB
    Is that correct?
    If that is not correct, then I must be missing a way to specify a different Excel Service App for each Project Web App Site. 
    Some other solutions that I think may work, but would really appreciate if someone could validate:
    - Create multiple Project Server Service Applications for each instance of PWA/Excel Service? (but wouldn't this still have to use one of the two WebApplications and cause the same limitation?)
    - Create a new Web Applciation for each PWA/Excel Service?  (ie.
    http://pwasite1.com;
    http://pwasite2.com; http://pwasite3.com, etc.)
    Thoughts/suggestions are very greatly appreciated!!!

    Hello Trpy2k
    I have not done what you are doing and I assume that you are using project server 2010.  However, you answer lives in PowerShell.
    The New-WebServiceProxy show that you can create a new proxy by spacing a URL and not a web application. The default proxy from the web application is directing to the default excel service.  If you need another excel service, you must specify another
    proxy and this may do it for you.
    Also, don't forget the Secure State service and that each excel report will need this configured, that is with the assumption that the other excel service requires different authentication.
    PS.  This question may get a better answer in the SharePoint forums.
    Cheers!
    Michael Wharton, MVP, MBA, PMP, MCT, MCTS, MCSD, MCSE+I, MCDBA
    Website http://www.WhartonComputer.com
    Blog http://MyProjectExpert.com contains my field notes and SQL queries

  • Importing non-unicode data into unicode 10gR2 database

    Hi:
    I will have to import non-unicode data into unicode 10gR2 database. The systems the data is coming from are the following: CODA, Timberline, COMMS, CMS, LIMS. These are all RDBMS, sql-enabled systems. We are talking about pretty big amounts of data (a couple hundred GB combined).
    Did anybody go through a similar exersize?
    I know I'll have to setup nls_length_semantics to CHAR.
    What other recommendations could you guys give?
    TIA,
    Greg

    I think "nls_length_semantics" isn't mandatory at this point, and you must extract a little quantity of information from every source and do some probes injecting them into the Oracle10g database.

  • Can an error in battery cause a slow CPUS and the fan to run non-stop?

    tthe battery need serviced but my computer runs slow and the fan is running non-stop. MacBook Pro 13" purchased around 2011.

    OK, you really need to dump that Windows attitude quickly, because what worked over there is completely useless here.  I never understood the "upgrade didn't work obviously, because this or that happened, so how do I downgrade."  I hang out around here, and I haven't seen many comments about fans running full blast after the updates. I did them, and nothing happened.
    First, you can't downgrade the firmware EFI update.  I think if you tried, it would brick your MBP.
    You could reinstall Lion if you wanted, but that's really a pain, and once again, one of those Windows things that people always do that wastes time.  A security update and Remote Desktop Client (which only runs if you start it up) would not effect your fan speed.
    Apple does have "restore points", but it's a real backup system that requires a backup drive.  It's called Time Machine and it's preinstalled on your Mac, easy to use, and allows you to go as far back in time on your Mac as the size of your backup drive will allow.
    Now, after all that, let's try to figure out what's going on with your fans.  First, did you do the EFI update correctly?  Meaning did you do it when the MBP was actually plugged into the wall?  What are you running?  Games?  Videos?  Something else?

  • How can we run MDBT transaction for non-valuated items only

    HI,
    We want to run the MDBT transaction for non-valuated items only...but through this transaction we can run for all items..
    How can we run only for non-valuated items???
    Regards,

    Dear Anil,
    MD02 - Material level planning ( Multilevel )
    MD01 - Plant level planning ( Multilevel )
    MDBT - Back ground MRP ( Multilevel )
    coming to ur query if all 20 materials belongs to one storage location or one MRP controller
    Then you perform MRP for that 20 materials with the above given user exit
    Also Plz refer my reply from this thread
    [Re: MD01 Replanification.]
    Regards
    Madhu

  • Can't run programs from non-admin account: redux

    Background: I have years of experience with PCs, very little with Macs. I work with children in a group home. The tech support people who set up this iMac (OS X 10.2) have long since departed, and no one in the organization has any clue as to what changes they made to this system, and I'm sure that those tech people made some changes. For example, in admin accounts other than "root," either there is no access to the Utilities folder or the folder has been well hidden.
    The Problem: The boys in this home will use a non-admin account. The programs I have installed for them will run under admin accounts but not under the "boys" account, which is non-admin. The system tells me that the account does not have enough access privileges to run the programs. (Program that had been installed before I got access to this iMac will run under the "boys" account.)
    In discussions on this forum several months ago, I thought the answers I got here had helped me solve the problem. Then, for administrative reasons, I did not touch the iMac until last week. What I thought had been solved is not solved.
    From "root," using the "Capabilities" option in the Accounts folder, I have added to the "Add other applications..." section the programs I want "boys" to have access to. But this doesn't work. When I log in to "boys," access is denied: insufficient access privileges.
    If I give up on this system, the boys will not be able to use this iMac, and that would be a shame.

    I realize that it sounds like I ignored all the previous advice before I drafted this latest post. But the first thing I did when I returned to the iMac was to look at the posts.
    I didn't touch the system for six months. I was waiting for approval from administration to upgrade the OS. By the time I got the approval, upgrading was no longer an option -- according to the manager of the local Genius Bar. This system is not capable of running 10.5, and Apple will no longer sell 10.4. I can find 10.4 on the Net, but those are private sellers and the price is too high.
    Now that I've got that out of the way, the current task: I have no idea why, but the gains I accomplished six months ago have disappeared. The "boys" account can run none of the software I installed. No one else has touched the system. (I live alone.)
    I logged on as "root" and went to Accounts. Using 10.2's Capabilities function, I tried to check all the boxes for "boys." But when I close the screen and then re-open it, the system has unchecked "Open all System Preferences"; "Change Password"; and access to "Utilities."
    At this point I cannot create new folders under "boys." "boys" can run software that was installed before I got the machine, but that's all.
    I have to assume that I inadvertently did something that wiped out my previous gains. But I ain't got a clue.

  • Can I install OS X Server for Leopard on Macs running non-server Tiger?

    I need to install OS X Server on a small business network of 5 Macs and 2 pc's. I need to run Mac software on the pc's using Aqua and need to use the pc's to run software that won't run on the Macs.
    All my Macs run 10.4.11 (non-server), so what I need to know is will I be able to buy and install OS X Server (Leopard)? Or do I need to buy OS X Server (Tiger)?
    And if I can use the Leopard Server version, can I also install it on my Macs at home that don't connect to the work network?
    Thanks, Ted

    I'm a little confused here.
    I need to run Mac software on the pc's using Aqua
    Running Mac OS X Server on the Macs won't help here. You can't run Mac software on a PC. The best you can do is screen-share (so the PC can run software that lets it see and control the Mac's screen), but you don't need Mac OS X Server for that.
    All my Macs run 10.4.11 (non-server), so what I need to know is will I be able to buy and install OS X Server (Leopard)? Or do I need to buy OS X Server (Tiger)?
    You can't but Mac OS X Server 10.4 at all now. It's been EOL for a year or more (I forget when Leopard was released now). Your only option is to buy Leopard Server.
    As to whether you can install Leopard Server, that depends on the hardware you're running. If it meets (or exceeds) the minimum specifications for Mac OS X Server then yes, you can install it. Whether it will solve your goals depends on quite what those goals are.
    And if I can use the Leopard Server version, can I also install it on my Macs at home that don't connect to the work network?
    You can install it on any system you're licensed for. Since each copy of Mac OS X Server is licensed for a single system only, you'll need to buy additional licenses for your machine(s) at home.

  • How can i run VisualScript of one URL against another URL

    hi folks,
    could anybody tell me how can we run the visual script of one url against another url ?
    eg: visual script recorded for http://www.abcd.com/index.html must be run against http://www.abcd.com/index1.html
    thanks in advance,
    pasumarthi

    pasumarthi,
    You can right click the address node select properties on page one and change the url there. Since the tool is DOM based all following urls will automatically update when you play the script back. You can also use the script updater utility (in the etest icon group) if you have 8.20.
    Hope this helps.

  • Migration unicode Linux to unicode AIX

    Not sure if this is the right forum.
    I am trying to run heterogeneous system copy of Unicode SolMan 7 Enh 1 system from Source Linux target AIX.
    Having problems with R3load export.
    /usr/sap/SID/SYS/exe/run/R3load -e D010INC.cmd -datacodepage 4102 -l D010INC.log
    -stop_on_error
    (DB) INFO: connected to DB
    (DB) INFO: Export without hintfile
    (CNV) ERROR: There shall be only one Unicode in a database
    I THINK I have to do a Unicode migration to get from Linux Unicode little endian
    to AIX Unicode big endianu2026
    Is there such a thing as Unicode to Unicode migration documentation anywhere?
    Does current Unicode Migration document have Unicode source section?
    This system already had Unicode migration at SM 7.0 level...
    Does this mean UMG tables need reset?
    Ken

    TRACE      2010-08-10 16:25:53.385 [syuxctask.cpp:1382]
               CSyTaskImpl::start(bool)
    A child process has been started. Pid = 20731
    ERROR      2010-08-10 16:25:53.421 [sixxcstepexecute.cpp:950]
    FCO-00011  The step runMigrationMonitor with step key |NW_Export|ind|ind|ind|ind|0|0|NW_ABAP_Export_Dialog|ind|ind|ind|ind|4|0|NW_ABAP_Export|ind|ind|ind|ind|0|0|runMigrationMonitor was executed with status ERROR .
    TRACE      2010-08-10 16:25:53.440 [iaxxgenimp.cpp:752]
                CGuiEngineImp::showMessageBox
    <html> <head> </head> <body> <p> An error occurred while processing option SAP Solution Manager 7.0 EhP1 > Software Life-Cycle Options > System Copy > IBM DB2 for Linux, UNIX, and Windows > Source System Export > Central System > Based on AS ABAP and AS Java > Database and Central Instance Export. You can now: </p> <ul> <li> Choose <i>Retry</i> to repeat the current step. </li> <li> Choose <i>View Log</i> to get more information about the error. </li> <li> Stop the option and continue with it later. </li> </ul> <p> Log files are written to /nfs/@soulman-t/cd/tmpdir/sapinst_instdir/SOLMAN/LM/COPY/DB6/EXP/CENTRAL/AS/EXP. </p> </body></html>
      export_monitor.java.log -
    java version "1.4.2"
    Java(TM) 2 Runtime Environment, Standard Edition (build 2.3)
    IBM J9 VM (build 2.3, J2RE 1.4.2 IBM J9 2.3 Linux amd64-64 j9vmxa64142-20080923 (JIT enabled)
    J9VM - 20080922_23329_LHdSMr
    JIT  - 20080815_1845_r8
    GC   - 200809_04)
    Export Monitor jobs: running 1, waiting 55, completed 0, failed 0, total 56.
    Export Monitor jobs: running 2, waiting 54, completed 0, failed 0, total 56.
    Export Monitor jobs: running 3, waiting 53, completed 0, failed 0, total 56.
    Export Monitor jobs: running 3, waiting 52, completed 1, failed 0, total 56.
    Export Monitor jobs: running 3, waiting 51, completed 2, failed 0, total 56.
    Unloading of 'BALDAT' export package: ERROR
    Export Monitor jobs: running 1, waiting 51, completed 2, failed 2, total 56.
    Unloading of 'BDLDATCOL' export package: ERROR
    Export Monitor jobs: running 0, waiting 51, completed 2, failed 3, total 56.
    Unloading of 'D010INC' export package: ERROR
    Export Monitor jobs: running 0, waiting 51, completed 2, failed 3, total 56.
    Export Monitor jobs: running 1, waiting 50, completed 2, failed 3, total 56.
    Export Monitor jobs: running 2, waiting 49, completed 2, failed 3, total 56.
    Export Monitor jobs: running 3, waiting 48, completed 2, failed 3, total 56.
    Unloading of 'DOKCLU' export package: ERROR
    Export Monitor jobs: running 2, waiting 48, completed 2, failed 4, total 56.
    Unloading of 'DSVASREPODOCS' export package: ERROR
    Export Monitor jobs: running 1, waiting 48, completed 2, failed 5, total 56.
    Unloading of 'D010TAB' export package: ERROR
    Export Monitor jobs: running 0, waiting 48, completed 2, failed 6, total 56.
    Export Monitor jobs: running 1, waiting 47, completed 2, failed 6, total 56.
    Export Monitor jobs: running 2, waiting 46, completed 2, failed 6, total 56.
    Export Monitor jobs: running 3, waiting 45, completed 2, failed 6, total 56.
    Unloading of 'DSVASRESULTSGEN' export package: ERROR
    Export Monitor jobs: running 2, waiting 45, completed 2, failed 7, total 56.
    Unloading of 'DSVASRESULTSATTR' export package: ERROR
    Export Monitor jobs: running 1, waiting 45, completed 2, failed 8, total 56.
    Unloading of 'DSVASTEXTCLUSTER' export package: ERROR
    Export Monitor jobs: running 0, waiting 45, completed 2, failed 9, total 56.
    Export Monitor jobs: running 1, waiting 44, completed 2, failed 9, total 56.
    Export Monitor jobs: running 2, waiting 43, completed 2, failed 9, total 56.
    Export Monitor jobs: running 3, waiting 42, completed 2, failed 9, total 56.
    Unloading of 'DYNPSOURCE' export package: ERROR
    Export Monitor jobs: running 1, waiting 42, completed 2, failed 11, total 56.
    Unloading of 'E071K' export package: ERROR
    Export Monitor jobs: running 1, waiting 42, completed 2, failed 11, total 56.
    Unloading of 'OCSCMPLOBJ' export package: ERROR
    Export Monitor jobs: running 0, waiting 42, completed 2, failed 12, total 56.
    Export Monitor jobs: running 1, waiting 41, completed 2, failed 12, total 56.
    Export Monitor jobs: running 2, waiting 40, completed 2, failed 12, total 56.
    Export Monitor jobs: running 3, waiting 39, completed 2, failed 12, total 56.
    Unloading of 'RSDDSTATEVDATA' export package: ERROR
    Export Monitor jobs: running 2, waiting 39, completed 2, failed 13, total 56.
    Unloading of 'REPOTEXT' export package: ERROR
    Export Monitor jobs: running 1, waiting 39, completed 2, failed 14, total 56.
    Unloading of 'REPOSRC' export package: ERROR
    Export Monitor jobs: running 0, waiting 39, completed 2, failed 15, total 56.
    Export Monitor jobs: running 1, waiting 38, completed 2, failed 15, total 56.
    Export Monitor jobs: running 2, waiting 37, completed 2, failed 15, total 56.
    Export Monitor jobs: running 3, waiting 36, completed 2, failed 15, total 56.
    Unloading of 'SACONT01' export package: ERROR
    Unloading of 'SAPAPPL0_1' export package: ERROR
    Export Monitor jobs: running 1, waiting 36, completed 2, failed 17, total 56.
    Export Monitor jobs: running 1, waiting 36, completed 2, failed 17, total 56.
    Unloading of 'RSDDSTATLOGGING' export package: ERROR
    Export Monitor jobs: running 0, waiting 36, completed 2, failed 18, total 56.
    Export Monitor jobs: running 1, waiting 35, completed 2, failed 18, total 56.
    Export Monitor jobs: running 2, waiting 34, completed 2, failed 18, total 56.
    Export Monitor jobs: running 3, waiting 33, completed 2, failed 18, total 56.
    Unloading of 'SAPAPPL0_4' export package: ERROR
    Export Monitor jobs: running 2, waiting 33, completed 2, failed 19, total 56.
    Unloading of 'SAPAPPL0_2' export package: ERROR
    Export Monitor jobs: running 1, waiting 33, completed 2, failed 20, total 56.
    Unloading of 'SAPAPPL0_3' export package: ERROR
    Export Monitor jobs: running 0, waiting 33, completed 2, failed 21, total 56.
    Export Monitor jobs: running 1, waiting 32, completed 2, failed 21, total 56.
    Export Monitor jobs: running 2, waiting 31, completed 2, failed 21, total 56.
    Export Monitor jobs: running 3, waiting 30, completed 2, failed 21, total 56.
    Unloading of 'SAPAPPL0_5' export package: ERROR
    Export Monitor jobs: running 2, waiting 30, completed 2, failed 22, total 56.
    Unloading of 'SAPAPPL1_1' export package: ERROR
    Export Monitor jobs: running 1, waiting 30, completed 2, failed 23, total 56.
    Unloading of 'SAPAPPL1_2' export package: ERROR
    Export Monitor jobs: running 0, waiting 30, completed 2, failed 24, total 56.
    Export Monitor jobs: running 1, waiting 29, completed 2, failed 24, total 56.
    Export Monitor jobs: running 2, waiting 28, completed 2, failed 24, total 56.
    Export Monitor jobs: running 3, waiting 27, completed 2, failed 24, total 56.
    Unloading of 'SAPAPPL1_3' export package: ERROR
    Export Monitor jobs: running 2, waiting 27, completed 2, failed 25, total 56.
    Unloading of 'SAPAPPL2_1' export package: ERROR
    Export Monitor jobs: running 1, waiting 27, completed 2, failed 26, total 56.
    Unloading of 'SAPAPPL2_2' export package: ERROR
    Export Monitor jobs: running 0, waiting 27, completed 2, failed 27, total 56.
    Export Monitor jobs: running 1, waiting 26, completed 2, failed 27, total 56.
    Export Monitor jobs: running 2, waiting 25, completed 2, failed 27, total 56.
    Export Monitor jobs: running 3, waiting 24, completed 2, failed 27, total 56.
    Unloading of 'SAPAPPL2_4' export package: ERROR
    Export Monitor jobs: running 2, waiting 24, completed 2, failed 28, total 56.
    Unloading of 'SAPAPPL2_3' export package: ERROR
    Unloading of 'SAPCLUST' export package: ERROR
    Export Monitor jobs: running 0, waiting 24, completed 2, failed 30, total 56.
    Export Monitor jobs: running 0, waiting 24, completed 2, failed 30, total 56.
    Export Monitor jobs: running 1, waiting 23, completed 2, failed 30, total 56.
    Export Monitor jobs: running 2, waiting 22, completed 2, failed 30, total 56.
    Export Monitor jobs: running 3, waiting 21, completed 2, failed 30, total 56.
    Unloading of 'SAPDFACT' export package: ERROR
    Export Monitor jobs: running 2, waiting 21, completed 2, failed 31, total 56.
    Unloading of 'SAPDODS' export package: ERROR
    Unloading of 'SAPDDIM' export package: ERROR
    Export Monitor jobs: running 0, waiting 21, completed 2, failed 33, total 56.
    Export Monitor jobs: running 0, waiting 21, completed 2, failed 33, total 56.
    Export Monitor jobs: running 1, waiting 20, completed 2, failed 33, total 56.
    Export Monitor jobs: running 2, waiting 19, completed 2, failed 33, total 56.
    Export Monitor jobs: running 3, waiting 18, completed 2, failed 33, total 56.
    Unloading of 'SAPPOOL' export package: ERROR
    Export Monitor jobs: running 2, waiting 18, completed 2, failed 34, total 56.
    Unloading of 'SAPSDIC' export package: ERROR
    Export Monitor jobs: running 1, waiting 18, completed 2, failed 35, total 56.
    Unloading of 'SAPNTAB' export package: ERROR
    Export Monitor jobs: running 0, waiting 18, completed 2, failed 36, total 56.
    Export Monitor jobs: running 1, waiting 17, completed 2, failed 36, total 56.
    Export Monitor jobs: running 2, waiting 16, completed 2, failed 36, total 56.
    Export Monitor jobs: running 3, waiting 15, completed 2, failed 36, total 56.
    Unloading of 'SAPSDOCU' export package: ERROR
    Export Monitor jobs: running 2, waiting 15, completed 2, failed 37, total 56.
    Unloading of 'SAPSLDEF' export package: ERROR
    Export Monitor jobs: running 1, waiting 15, completed 2, failed 38, total 56.
    Unloading of 'SAPSLEXC' export package: ERROR
    Export Monitor jobs: running 0, waiting 15, completed 2, failed 39, total 56.
    Export Monitor jobs: running 1, waiting 14, completed 2, failed 39, total 56.
    Export Monitor jobs: running 2, waiting 13, completed 2, failed 39, total 56.
    Export Monitor jobs: running 3, waiting 12, completed 2, failed 39, total 56.
    Unloading of 'SAPSLOAD' export package: ERROR
    Export Monitor jobs: running 2, waiting 12, completed 2, failed 40, total 56.
    Unloading of 'SAPSSEXC_1' export package: ERROR
    Export Monitor jobs: running 1, waiting 12, completed 2, failed 41, total 56.
    Unloading of 'SAPSPROT' export package: ERROR
    Export Monitor jobs: running 0, waiting 12, completed 2, failed 42, total 56.
    Export Monitor jobs: running 1, waiting 11, completed 2, failed 42, total 56.
    Export Monitor jobs: running 2, waiting 10, completed 2, failed 42, total 56.
    Export Monitor jobs: running 3, waiting 9, completed 2, failed 42, total 56.
    Unloading of 'SAPUSER' export package: ERROR
    Export Monitor jobs: running 2, waiting 9, completed 2, failed 43, total 56.
    Unloading of 'SAPSSEXC_2' export package: ERROR
    Export Monitor jobs: running 1, waiting 9, completed 2, failed 44, total 56.
    Unloading of 'SAPSSRC' export package: ERROR
    Export Monitor jobs: running 0, waiting 9, completed 2, failed 45, total 56.
    Export Monitor jobs: running 1, waiting 8, completed 2, failed 45, total 56.
    Export Monitor jobs: running 2, waiting 7, completed 2, failed 45, total 56.
    Export Monitor jobs: running 3, waiting 6, completed 2, failed 45, total 56.
    Unloading of 'SAPUSER1' export package: ERROR
    Unloading of 'SASACONT1' export package: ERROR
    Export Monitor jobs: running 1, waiting 6, completed 2, failed 47, total 56.
    Export Monitor jobs: running 1, waiting 6, completed 2, failed 47, total 56.
    Unloading of 'SEOCOMPODF' export package: ERROR
    Export Monitor jobs: running 0, waiting 6, completed 2, failed 48, total 56.
    Export Monitor jobs: running 1, waiting 5, completed 2, failed 48, total 56.
    Export Monitor jobs: running 2, waiting 4, completed 2, failed 48, total 56.
    Export Monitor jobs: running 3, waiting 3, completed 2, failed 48, total 56.
    Unloading of 'SMD_HASH_TABLE' export package: ERROR
    Export Monitor jobs: running 1, waiting 3, completed 2, failed 50, total 56.
    Unloading of 'TST03' export package: ERROR
    Export Monitor jobs: running 1, waiting 3, completed 2, failed 50, total 56.
    Unloading of 'SOFFCONT1' export package: ERROR
    Export Monitor jobs: running 0, waiting 3, completed 2, failed 51, total 56.
    Export Monitor jobs: running 1, waiting 2, completed 2, failed 51, total 56.
    Export Monitor jobs: running 2, waiting 1, completed 2, failed 51, total 56.
    Export Monitor jobs: running 3, waiting 0, completed 2, failed 51, total 56.
    Unloading of '_BI0_F0CCMARSH' export package: ERROR
    Export Monitor jobs: running 2, waiting 0, completed 2, failed 52, total 56.
    Unloading of '_BI0_F0CCMSAEXE' export package: ERROR
    Export Monitor jobs: running 1, waiting 0, completed 2, failed 53, total 56.
    Unloading of 'WDR_ADP_CONST_MP' export package: ERROR
    Export Monitor jobs: running 0, waiting 0, completed 2, failed 54, total 56.
    sample failing package log D010INC.log (they all look the same)
    /usr/sap/SSM/SYS/exe/run/R3load: START OF LOG: 20100810161653
    /usr/sap/SSM/SYS/exe/run/R3load: sccsid @(#) $Id: //bas/701_REL/src/R3ld/R3load/R3ldmain.c#8 $ SAP
    /usr/sap/SSM/SYS/exe/run/R3load: version R7.01/V1.4 [UNICODE]
    Compiled May 22 2010 00:12:41
    /usr/sap/SSM/SYS/exe/run/R3load -ctf E /nfs/@soulman-t/cd/export/ABAP/DATA/D010INC.STR /nfs/@soulman-t/cd/export/ABAP/DB/DDLDB6_LRG.TPL D010INC.TSK DB6 -l D010INC.log
    (RTF) ########## WARNING ###########
            Without ORDER BY PRIMARY KEY the exported data may be unusable for some databases
    /usr/sap/SSM/SYS/exe/run/R3load: job completed
    /usr/sap/SSM/SYS/exe/run/R3load: END OF LOG: 20100810161653
    /usr/sap/SSM/SYS/exe/run/R3load: START OF LOG: 20100810161653
    /usr/sap/SSM/SYS/exe/run/R3load: sccsid @(#) $Id: //bas/701_REL/src/R3ld/R3load/R3ldmain.c#8 $ SAP
    /usr/sap/SSM/SYS/exe/run/R3load: version R7.01/V1.4 [UNICODE]
    Compiled May 22 2010 00:12:41
    /usr/sap/SSM/SYS/exe/run/R3load -e D010INC.cmd -datacodepage 4102 -l D010INC.log -stop_on_error
    (DB) INFO: connected to DB
    (DB) INFO: Export without hintfile
    (CNV) ERROR: There shall be only one Unicode in a database
    /usr/sap/SSM/SYS/exe/run/R3load: job finished with 1 error(s)
    /usr/sap/SSM/SYS/exe/run/R3load: END OF LOG: 20100810161655
    end of logs -
    Ken

Maybe you are looking for

  • I have a purple spot on my iPhone 5 camera ?

    I've had my iPhone 5 from September2012 and it was working fine until suddenly I got a purple spot on my camera screen! I thought it was the lens so I cleaned it but it's still there and it's annoying me, anyone else had this problem? The Apple store

  • FCE rendering with Western Edition MyBook External Hard Drive

    So i am having some difficulty with this project i am working on (i am learning as i go) and was wondering if anyone can shed some light... Ok, so i am using final cut express to edit video footage. I uploaded about 2 1/2 hours worth of HD footage in

  • Why can't I reduce the storage my icloud email is using?

    I have been trying for 2 weeks to reduce the amount of space I'm using on iCloud and I can't do it. I moved every email to a folder stored on my computer, I deleted all sent messages. The space I'm using has actually gone up! What's wrong? I have 2 d

  • SendAndLoad problem 

    So it's work when i strat it from Flash as "CRL + ENTER" but when i start it from html from my appache it won't to work .I need help

  • Using E52 as a Internet Hub

    Dear All, I have recently purchased an E52 mobile phone and was wondering how I could use this device to connect my laptop to the internet. I have an unlimited data plan and can obviously connect the phone to surf the web, check emails, etc. However,