Failed to create 11.2.0.1 repository. Please Help :)

Hi,
I installed Oracle Database 11g R2 (11.2.0.1) 32 bit. on 32 bit xp virtual machine.
I wanted to use warehouse builder tools that comes with the installation. I open sql developer and connected to sys user and unlock the OWBSYS and OWBSYS_AUDIT accounts.
1.When i try to build a new repository via design center;
The Warehouse Builder workspace owner installation failed on user OWBSYS. Exception occured in 'processLoadJavaToken' oracle.ide.ExitNotAllowedException
occurs.
2.When i try to build a new repository via repository assistant;
The Warehouse Builder workspace owner installation failed on user OWBSYS java.sql.SQLException: ORA-06550:
PLS:00103: "end of file" error occurs.
When i exemined the log files i released some packages or tables in owbsys user doesnot exists like wb_rt_script_util. I run clean_owbsys, cat_owb, reset_owbcc.sql files but nothing changed. For almost a week i am trying different things to solve this problem i deinstalled and installed oracle many time. I googled and tried solutions to similar problems but it does not work.
Please Help Me
Thanks :)

Hi a found my problem a few months ago i forgot to write it here.
The problem was the language of my Operating system. I installed all software on an English 32 bit Xp Operating system and it worked fine there is no problem now.
Also regional and language options setting must be set to English(United States).

Similar Messages

  • Failed to create the Crystal Query Engine. Please Help me resolve this issu

    i keep getting the this error :
    Failed to create the Crystal Query Engine.
    on this line of code :
    billing.ExportToDisk(CrystalDecisions.Shared.ExportFormatType.PortableDocFormat, fileName);
    i'm trying to use export it to pdf.
    the page works fine on my notebook. but when deployed to window server 2003 server i get this error.
    Crystal Reports Basic Runtime for Visual Studio 2008 is already installed there.
    I have provided NETWORK_SERVICE and ASPNET access to the root drive C:, which is the only drive on the server. but i'm getting this error.

    I'd like you to download the Process Monitor utility from here:
    http://technet.microsoft.com/en-ca/sysinternals/bb896645.aspx
    Filter for the name of your process as this utility makes large logs. Once you have a log, search for any error messages (Access denied, etc.).
    The only note I found on the same error is [here|https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/oss_notes_boj/sdn_oss_boj_erq/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/scn_bosap/notes.do] which points to the crqe.dll being at fault.
    See if the Depends utility tells you of any missing dependencies. Depends is here:
    http://www.dependencywalker.com/
    (Simply open the dll in the utility)
    Ludek

  • How to create authorisation object for save button please help in abap

    how to create authorisation object for save button please help in abap

    Hi
    In general different users will be given different authorizations based on their role in the orgn.
    We create ROLES and assign the Authorization and TCODES for that role, so only that user can have access to those T Codes.
    USe SUIM and SU21 T codes for this.
    Much of the data in an R/3 system has to be protected so that unauthorized users cannot access it. Therefore the appropriate authorization is required before a user can carry out certain actions in the system. When you log on to the R/3 system, the system checks in the user master record to see which transactions you are authorized to use. An authorization check is implemented for every sensitive transaction.
    If you wish to protect a transaction that you have programmed yourself, then you must implement an authorization check.
    This means you have to allocate an authorization object in the definition of the transaction.
    For example:
    program an AUTHORITY-CHECK.
    AUTHORITY-CHECK OBJECT <authorization object>
    ID <authority field 1> FIELD <field value 1>.
    ID <authority field 2> FIELD <field value 2>.
    ID <authority-field n> FIELD <field value n>.
    The OBJECT parameter specifies the authorization object.
    The ID parameter specifies an authorization field (in the authorization object).
    The FIELD parameter specifies a value for the authorization field.
    The authorization object and its fields have to be suitable for the transaction. In most cases you will be able to use the existing authorization objects to protect your data. But new developments may require that you define new authorization objects and fields.
    http://help.sap.com/saphelp_nw04s/helpdata/en/52/67167f439b11d1896f0000e8322d00/content.htm
    To ensure that a user has the appropriate authorizations when he or she performs an action, users are subject to authorization checks.
    Authorization : An authorization enables you to perform a particular activity in the SAP System, based on a set of authorization object field values.
    You program the authorization check using the ABAP statement AUTHORITY-CHECK.
    AUTHORITY-CHECK OBJECT 'S_TRVL_BKS'
    ID 'ACTVT' FIELD '02'
    ID 'CUSTTYPE' FIELD 'B'.
    IF SY-SUBRC <> 0.
    MESSAGE E...
    ENDIF.
    'S_TRVL_BKS' is a auth. object
    ID 'ACTVT' FIELD '02' in place 2 you can put 1,2, 3 for change create or display.
    The AUTHORITY-CHECK checks whether a user has the appropriate authorization to execute a particular activity.
    This Authorization concept is somewhat linked with BASIS people.
    As a developer you may not have access to access to SU21 Transaction where you have to define, authorizations, Objects and for nthat object you assign fields and values. Another Tcode is PFCG where you can assign these authrization objects and TCodes for a  profile and that profile in turn attached to a particular user.
    Take the help of the basis Guy and create and use.
    Regards
    ANJI

  • HT1349 "Sync session failed to finish"---keeps me from syncing. Please Help!

    "Sync session failed to finish"---keeps me from syncing. Please Help!

    Quit iTunes, reboot your PC, and then try again.

  • Error while creating an Index in SP14..Please help..  :(

    Hello All,
    Im working on SP14.
    Got an error as below while creating an Index:
    " <b>Index could not be created; creating index failed: general configuration error (Errorcode 2030)"</b>
    Whats wrong..?
    Please help.
    Awaiting Reply.
    Thanks and Warm Regards,
    Ritu R Hunjan

    Hi Ritu & Subrato,
    I'm affraid Errorcode 2030 is related to TREX user administrative rights in the OS.
    Please take a look at this thread and the suggestions give there to fix your problem:
    Index creation failure and other problems
    Hope this helps,
    Robert

  • Error in creating a process using runtime class - please help

    Hi,
    I am experimenting with the following piece of code. I tried to run it in one windows machine and it works fine. But i tried to run it in a different windows machine i get error in creating a process. The error is attached below the code. I don't understand why i couldn't create a process with the 'exec' command in the second machine. Can anyone please help?
    CODE:
    import java.io.*;
    class test{
    public static void main(String[] args){
    try{
    Runtime r = Runtime.getRuntime();
         Process p = null;
         p= r.exec("dir");
         BufferedReader br = new BufferedReader(new InputStreamReader(p.getInputStream()));
         System.out.println(br.readLine());
    catch(Exception e){e.printStackTrace();}
    ERROR (when run in the dos prompt):
    java.io.IOException: CreateProcess: dir error=2
    at java.lang.Win32Process.create(Native Method)
    at java.lang.Win32Process.<init>(Win32Process.java:63)
    at java.lang.Runtime.execInternal(Native Method)
    at java.lang.Runtime.exec(Runtime.java:550)
    at java.lang.Runtime.exec(Runtime.java:416)
    at java.lang.Runtime.exec(Runtime.java:358)
    at java.lang.Runtime.exec(Runtime.java:322)
    at test.main(test.java:16)
    thanks,
    Divya

    As much as I understand from the readings in the forums, Runtime.exec can only run commands that are in files, not native commands.
    Hmm how do I explain that again?
    Here:
    Assuming a command is an executable program
    Under the Windows operating system, many new programmers stumble upon Runtime.exec() when trying to use it for nonexecutable commands like dir and copy. Subsequently, they run into Runtime.exec()'s third pitfall. Listing 4.4 demonstrates exactly that:
    Listing 4.4 BadExecWinDir.java
    import java.util.*;
    import java.io.*;
    public class BadExecWinDir
    public static void main(String args[])
    try
    Runtime rt = Runtime.getRuntime();
    Process proc = rt.exec("dir");
    InputStream stdin = proc.getInputStream();
    InputStreamReader isr = new InputStreamReader(stdin);
    BufferedReader br = new BufferedReader(isr);
    String line = null;
    System.out.println("<OUTPUT>");
    while ( (line = br.readLine()) != null)
    System.out.println(line);
    System.out.println("</OUTPUT>");
    int exitVal = proc.waitFor();
    System.out.println("Process exitValue: " + exitVal);
    } catch (Throwable t)
    t.printStackTrace();
    A run of BadExecWinDir produces:
    E:\classes\com\javaworld\jpitfalls\article2>java BadExecWinDir
    java.io.IOException: CreateProcess: dir error=2
    at java.lang.Win32Process.create(Native Method)
    at java.lang.Win32Process.<init>(Unknown Source)
    at java.lang.Runtime.execInternal(Native Method)
    at java.lang.Runtime.exec(Unknown Source)
    at java.lang.Runtime.exec(Unknown Source)
    at java.lang.Runtime.exec(Unknown Source)
    at java.lang.Runtime.exec(Unknown Source)
    at BadExecWinDir.main(BadExecWinDir.java:12)
    As stated earlier, the error value of 2 means "file not found," which, in this case, means that the executable named dir.exe could not be found. That's because the directory command is part of the Windows command interpreter and not a separate executable. To run the Windows command interpreter, execute either command.com or cmd.exe, depending on the Windows operating system you use. Listing 4.5 runs a copy of the Windows command interpreter and then executes the user-supplied command (e.g., dir).
    Taken from:
    http://www.javaworld.com/javaworld/jw-12-2000/jw-1229-traps.html

  • Cant Able to Create New partition after uninstall Ubuntu, Please help!

    Hello Everyone,
    i installed Ubuntu before but i don't like it, then what i did is, (i had windows 7 dual boot with ubuntu) while running windows 7, i deleted Swap area partition and home partition of Ubuntu, then i saw that partitions are combined which was fine, but when
    i tried to create it, a error appeared that "there is not enough space available on the disk to complete this operation"
    hence i cant able to create unused partition, how to fix that,
    i even tried to create from windows 7 disk too, but same error,
    Please help me.
    PICTURE :  http://social.technet.microsoft.com/Forums/getfile/455232

    Go to
    http://download.cnet.com/EaseUS-Partition-Master-Free-Edition/3000-2248_4-10863346.html and download the Partition Magic utility.
    This problem is caused by Windows not recognizing the Ubuntu partitions.  Windows is not designed to work with foreign partitions so this problem is caused by Ubuntu.
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread. ”

  • Problem creating ringtones - "song no longer available" - PLEASE HELP!

    I want to create a couple of ringtones from iTunes I downloaded. First I tried making one from a song contained in an album I bought and downloaded about a month or two ago. iTunes wouldn't let me (for whatever reason) so I bought and downloaded a new song. once it was in my "purchased" folder I added it to a songlist and then right-clicked it and selected "Create Ringtone." I was told I needed to go to the "Terms and Conditions" and accept the "ringtones" agreement, which I did. once I clicked "I accept" I was automatically redirected back to the song list that contained the song- there was never any option or utility to continue (after accepting the terms and conditions) on and make a ringtone from the song.
    NOW, when I right-click the song and select "create ringtone" I get a pop-up box that says that "this song can +*no longer*+ be made into a ringtone!" WHAT is the deal? What did I do wrong?
    Can someone tell me, step-by-step how to download a song and create a ringtone from it for my iPhone? Is there a tutorial with screenshots anywhere? Somone PLEASE help me out- I cant afford to keep buying songs just to try and figure this out on my own.
    Thanks.
    Nick
    P.S. On the iTunes webpage it said that songs that can be made into ringtones will have a ringtone icon next to them in my iTunes library; but that's not happening- even with the new song I just downloaded.

    -> Tap '''ALT''' key or press '''F10''' to show the Menu Bar
    -> go to Help Menu -> select '''Restart with Add-ons Disabled'''
    Firefox will close then it will open up with just basic Firefox. Now do this:
    -> Update Firefox to the latest version by going to Help Menu -> About Firefox -> click '''Check for Updates''' -> if an updated version is found then download the latest version and install it. After that follow these steps:
    -> go to View Menu -> Toolbars -> unselect All Unwanted toolbars
    -> click the Favicon on SearchBar -> click '''Manage Search Engines''' -> select all Unwanted Search Engines and click '''Remove''' -> click OK
    -> go to Tools Menu -> Add-ons -> Extensions section -> REMOVE All Unwanted/Suspicious Extensions (Add-ons) -> Restart Firefox
    You can enable your Known & Trustworthy Add-ons later. Check and tell if its working.

  • Query Issue in Creating a View....Please help me with this query..

    I would like to create a view on this table with four columns
    1. PN#_EXP_DATE
    2. PN#
    3. PN#_EFF_DATE
    4. PN#
    P_S_C     A_C     P     EXP_DT
    21698     13921     1     5/29/2009 3:15:41 PM     
    21698     13921     1     5/29/2009 3:54:57 PM     
    21698     1716656     4     5/29/2009 3:15:41 PM     
    21698     3217     3     5/29/2009 3:15:40 PM     
    21698     3217     3     5/29/2009 3:54:57 PM     
    21698     60559     2     5/29/2009 3:15:41 PM     
    21698     60559     2     5/29/2009 3:54:57 PM     
    I have a trigger on A, which inserts the DML records into B. (Table A and B structure is the almost the same,
                                       where table B will have one extra column exp_dt)
    NOw Table B can have records with same P_S_C and A_C columns and exp_dt will capture the history.
    for example: from the above sample data, let us take first two records..
    P_S_C     A_C     P     EXP_DT
    21698     13921     1     5/29/2009 3:15:41 PM     --- Record 1
    21698     13921     1     5/29/2009 3:54:57 PM     --- Record 2
    from this..
    Note: 1. Table A and Table C can be joined using A.P_S_C and C.R_C to get the start_date.
    2. PN# comes from table D. It contains numbers for the resp. weeks.
    3. PN#_EFF_DATE is the previous immediate previous date for that record in history table (Table B).
    I wanted the data like..
    ---- this is for the second record in the above..
    PN#_EXP_DATE PN# PN#_EFF_DATE PN#
    5/29/2009 3:54:57 PM     214 5/29/2009 3:15:41 PM     214
    ---- this is for the first record in the above..
    PN#_EXP_DATE PN# PN#_EFF_DATE PN#
    5/29/2009 3:54:41 PM     214 ( for this we should query the table C to get the
                        start_date, for this combinatation of P_S_C and A_C in table B
                             where B.P_S_C = C.A_C
                             and that value should be the EFF_DT for this record)
    Please help me with this....
    Thanks in advance..

    Hi All,
    select d.P# as "PN#_EXP_DATE", exp_date
    from daily_prd d, cbs1_assoc_hist b
    where to_char(d.day_date,'MM/DD/YYYY') = to_char(b.exp_date,'MM/DD/YYYY')
    and d.period_type = 'TIMEREPORT';
    This above query gives the output as follows:
    pn#_exp_date exp_date
    214     5/29/2009 3:15:40 PM
    214     5/29/2009 3:15:41 PM
    214          5/29/2009 3:15:41 PM
    214          5/29/2009 3:15:41 PM
    214          5/29/2009 3:54:57 PM
    214          5/29/2009 3:54:57 PM
    214          5/29/2009 3:54:57 PM
    This below is the data from history table (Table B).
    P_S_C     A_C PLACE EXP_DATE
    21698          3217          3     5/29/2009 3:15:40 PM     
    21698          13921          1     5/29/2009 3:15:41 PM     
    21698          1716656          4     5/29/2009 3:15:41 PM     
    21698          60559          2     5/29/2009 3:15:41 PM     
    21698          13921          1     5/29/2009 3:54:57 PM     
    21698          3217          3     5/29/2009 3:54:57 PM     
    21698          60559          2     5/29/2009 3:54:57 PM     
    I got the pn#_exp_date from the Table 'D', for the given exp_date from Table B.
    My question is again....
    CASE - 1
    from the given records above, I need to look for exp_date for the given same P_S_C and A_C.
    in this case we can take the example...
    P_S_C     A_C PLACE EXP_DATE
    21698          3217          3     5/29/2009 3:15:40 PM
    21698          3217          3     5/29/2009 3:54:57 PM
    In this case, the
    pn#_exp_date exp_date     pn#_eff_date eff_date
    214     5/29/2009 3:15:57 PM     < PN# corresponding to the     5/29/2009 3:15:40 PM
                        eff_date .>
                        <Basically the eff_date is
                        nothing but the exp_date only.
                        we should take the immediate before one.
    In this case, our eff_date is '5/29/2009 3:15:40 PM'.
    but how to get this.
    CASE - 2
    from the above sample data, consider this
    P_S_C     A_C PLACE EXP_DATE
    21698     1716656     4     5/29/2009 3:15:41 PM
    In this case, there is only one record for the P_S_C and A_C combination.
    The expected result :
    pn#_exp_date exp_date               pn#_eff_date eff_date
    214     5/29/2009 3:15:41 PM     < PN# corresponding to the     5/29/2009 3:15:40 PM
                        eff_date .>
                   <Basically the eff_date is
                   nothing but the exp_date only.
                        we should take the immediate before one.
    In this case to get the eff_date, we should query the Table 'C', to get the eff_date, which is START_DT column in this table.
    for this join B.P_S_C and C.R_C.
    Hope I am clear now..
    Thanks in advance.....

  • URGENT help needed in creating external xml video plalist. Please help!

    I was given an assignment to  create and external video playlist using an xml file.  I have never used  flash before, know nothing about encoding and all that was given to the  class in terms of instuctions was a short tutorial that has no  resources for troubleshooting.  We were given everything; the external  playlist file equipped with the video skin, the video list, actionscript  that loads the xml and the xml file.  We were told that all we need to  do is change the names of the videos in the xml file to match the names  of our videos.  I did that.  We were also told we needed to "name  target", but we were not informed on how to do this.  I have tried  everything, visited every tutorial and I cannot figure out how to get  this damn thing to work.  I cannot even get flash to load the xml file.  PLEASE HELP.
    Here is the xml file:
    <?xml version = "1.0" encoding = "i-8859-1"?>
    <playlist>
    <ADogWithoutABone
    flvurl="ADogWithoutABone.flv"
    desc="Hyper Wall First Video" />
    <Highway
    flvurl="Highway.flv"
    desc="Hyper Wall Second Video" />
    <PsychoBabble
    flvurl="PsychoBabble.flv"
    desc="Hyper Wall Third Video" />
    <SomethingElse
    flvurl="SomethingElse.flv"
    desc="Hyper Wall Fourth Video" />
    </playlist>
    I tried putting in the entire address of the file location, but it did nothing.
    Here is the actionscript in the flash file:
    var xmlLoader:URLLoader = new URLLoader();
    xmlLoader.addEventListener(Event.COMPLETE, xmlLoaded);
    xmlLoader.load(new URLRequest("playlistXML.xml"));
    function xmlLoaded(event:Event):void {
    var playlistXML:XML = new XML(event.target.data);
    var item:XML;
    for each(item in playlistXML.videoname) {
    trace("item: "+item.attribute("flvurl").toXMLString());
    myPlayList.addItem({label:item.attribute("desc").toXMLString(), data:item.attribute("flvurl").toXMLString()});
    //Select the first video
    myPlayList.selectedIndex = 0;
    //And automatically play it
    myPlayScreen.play(myPlayList.selectedItem.data);
    //Add a listener to detect when new video is selected and play it
    function listListener(event:Event) {
    myPlayScreen.play(event.target.selectedItem.data);
    myPlayList.addEventListener(Event.CHANGE, listListener);
    I  tried placing the full address of the xml file in, along with the file  address of the videos, but again it did nothing.  Everything is located  in the same file, and the videos in a sub file in that file. I tried  taking out the sub file and putting all the videos in the same file, but  it did nothing.  I am sure it's something very simple, but like I said I  have NO experience with this whatsoever. I am SO lost and DESPERATELY  need help. PLEASE someone SAVE MEEEE!
    Thanks

    It might be a crossdomain.xml problem.
    Please make sure that the server hosting the xml allows the domain where the swf is hosted.
    You can start with:
    <?xml version="1.0" encoding="utf-8" ?>
    <cross-domain-policy>
        <allow-access-from domain="*"/>
        <site-control permitted-cross-domain-policies="master-only"/>
    </cross-domain-policy>

  • Display test failed in BB virtual expert what to do please help cell is new 2 months old

    Dear All, 
    3 Months back i had purchased BBZ30. and today i had downloaded virtual expert software to run the health test. All features are working fine but display test failed. It is showing cracked. However my cell phone is working fine and even display is also fine. but due to this result i am really tensed. Please help what should i do..
    Sumit-

    Hello,
    Your next step would be warranty support, to have your device properly evaluated by a qualified technician. See your warranty service provider for that.
    Good luck!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Carbon Copy and SuperDuper FAILED during copy for the 8th time! PLEASE HELP

    This is ridiculous! I've spent the past 4 days trying to clone my HD and I'm leaving for about a month in about 3 days and I really need my laptop! Here's the log and I'm hoping you guys can save me!
    SuperDuper:
    | 11:53:41 PM | Info | SuperDuper!, 2.5 (84), path: /Applications/SuperDuper!.app, Mac OS 10.4.11 build 8S2167 (i386)
    | 11:53:41 PM | Info | Started on Wed, May 13, 2009 at 11:53 PM
    | 11:53:41 PM | Info | Source Volume: Macintosh HD, mount: /, device: /dev/disk2s2, media: WD i HTS54 External, interconnect: External USB, file system: "Journaled HFS+", OS: 10.4.11 (8S2167), capacity: 111.47 GB, used: 93.98 GB, directories: 80742, files: 345660, ejectable: NO, ACLs: Disabled
    | 11:53:41 PM | Info | Target Volume: Macintosh HD, mount: /Volumes/Macintosh HD 1, device: /dev/disk0s2, media: WDC WD5000BEVT-22ZAT0, interconnect: Internal SATA, file system: "Journaled HFS+", OS: N/A, capacity: 465.44 GB, used: 0.11 GB, directories: 4, files: 8, ejectable: NO, ACLs: Disabled
    | 11:53:41 PM | Info | Copy Mode : Erase, then copy files
    | 11:53:41 PM | Info | Copy Script : Backup - all files.dset
    | 11:53:41 PM | Info | Transcript : BuildTranscript.plist
    | 11:53:42 PM | Info | PHASE: 1. Prepare to Copy Files
    | 11:53:42 PM | Info | ...ACTION: Preparing Macintosh HD
    | 11:53:42 PM | Info | ......COMMAND => Verifying the integrity of volinfo.database
    | 11:53:42 PM | Info | volinfo.database OK
    | 11:53:42 PM | Info | ......COMMAND => Enabling permissions on Macintosh HD
    | 11:53:42 PM | Info | Refreshing Disk Arbitration ...
    | 11:53:43 PM | Info | ......COMMAND => Verifying that permissions are enabled for Macintosh HD
    | 11:53:43 PM | Info | Permissions on '/' are enabled.
    | 11:53:43 PM | Info | ...ACTION: Repairing permissions on Macintosh HD
    | 11:53:43 PM | Info | ......COMMAND => Repairing permissions on Macintosh HD
    | 11:53:49 PM | Info | parent directory ./Users/Shared/SC Info does not exist
    | 11:54:21 PM | Info | Started verify/repair permissions on disk disk2s2 Macintosh HD
    | 11:54:21 PM | Info | Determining correct file permissions.
    | 11:54:21 PM | Info | User differs on ./Applications/Utilities/Activity Monitor.app/Contents/Resources/English.lproj/ActivityMonitorHelp, should be 0, owner is 99
    | 11:54:21 PM | Info | Group differs on ./Applications/Utilities/Activity Monitor.app/Contents/Resources/English.lproj/ActivityMonitorHelp, should be 80, group is 99
    | 11:54:21 PM | Info | Permissions differ on ./Applications/Utilities/Activity Monitor.app/Contents/Resources/English.lproj/ActivityMonitorHelp, should be drwxrwxr-x , they are drwxr-xr-x
    | 11:54:21 PM | Info | Owner and group corrected on ./Applications/Utilities/Activity Monitor.app/Contents/Resources/English.lproj/ActivityMonitorHelp
    | 11:54:21 PM | Info | Permissions corrected on ./Applications/Utilities/Activity Monitor.app/Contents/Resources/English.lproj/ActivityMonitorHelp
    | 11:54:21 PM | Info | Group differs on ./Applications/Utilities/AirPort Setup Assistant.app/Contents/Resources/English.lproj/InfoPlist.strings, should be 80, group is 224
    | 11:54:21 PM | Info | Owner and group corrected on ./Applications/Utilities/AirPort Setup Assistant.app/Contents/Resources/English.lproj/InfoPlist.strings
    | 11:54:21 PM | Info | Permissions corrected on ./Applications/Utilities/AirPort Setup Assistant.app/Contents/Resources/English.lproj/InfoPlist.strings
    | 11:54:21 PM | Info | User differs on ./Library/Printers/EPSON/CIOSupport, should be 0, owner is 99
    | 11:54:21 PM | Info | Group differs on ./Library/Printers/EPSON/CIOSupport, should be 80, group is 99
    | 11:54:21 PM | Info | Permissions differ on ./Library/Printers/EPSON/CIOSupport, should be drwxrwxr-x , they are drwxr-xr-x
    | 11:54:21 PM | Info | Owner and group corrected on ./Library/Printers/EPSON/CIOSupport
    | 11:54:21 PM | Info | Permissions corrected on ./Library/Printers/EPSON/CIOSupport
    | 11:54:21 PM | Info | User differs on ./Library/Printers/EPSON/FireWire.plugin, should be 0, owner is 99
    | 11:54:21 PM | Info | Group differs on ./Library/Printers/EPSON/FireWire.plugin, should be 80, group is 99
    | 11:54:21 PM | Info | Permissions differ on ./Library/Printers/EPSON/FireWire.plugin, should be drwxrwxr-x , they are drwxr-xr-x
    | 11:54:21 PM | Info | Owner and group corrected on ./Library/Printers/EPSON/FireWire.plugin
    | 11:54:21 PM | Info | Permissions corrected on ./Library/Printers/EPSON/FireWire.plugin
    | 11:54:21 PM | Info | User differs on ./Library/Printers/EPSON/InkjetPrinter/SP830Series.plugin, should be 0, owner is 99
    | 11:54:21 PM | Info | Group differs on ./Library/Printers/EPSON/InkjetPrinter/SP830Series.plugin, should be 80, group is 99
    | 11:54:21 PM | Info | Permissions differ on ./Library/Printers/EPSON/InkjetPrinter/SP830Series.plugin, should be drwxrwxr-x , they are drwxr-xr-x
    | 11:54:21 PM | Info | Owner and group corrected on ./Library/Printers/EPSON/InkjetPrinter/SP830Series.plugin
    | 11:54:21 PM | Info | Permissions corrected on ./Library/Printers/EPSON/InkjetPrinter/SP830Series.plugin
    | 11:54:21 PM | Info | User differs on ./Library/Printers/EPSON/InkjetPrinter, should be 0, owner is 99
    | 11:54:21 PM | Info | Group differs on ./Library/Printers/EPSON/InkjetPrinter, should be 80, group is 99
    | 11:54:21 PM | Info | Permissions differ on ./Library/Printers/EPSON/InkjetPrinter, should be drwxrwxr-x , they are drwxr-xr-x
    | 11:54:21 PM | Info | Owner and group corrected on ./Library/Printers/EPSON/InkjetPrinter
    | 11:54:21 PM | Info | Permissions corrected on ./Library/Printers/EPSON/InkjetPrinter
    | 11:54:21 PM | Info | Symbolic link ./Library/Printers/EPSON/LaserPrinter/Common/PageLibraries/PPBuryInfo.framework /PPBuryInfo->Versions/Current/PPBuryInfo repaired
    | 11:54:21 PM | Info | Symbolic link ./Library/Printers/EPSON/LaserPrinter/Common/PageLibraries/PPBuryInfo.framework /Resources->Versions/Current/Resources repaired
    | 11:54:21 PM | Info | User differs on ./Library/Printers/EPSON/LaserPrinter, should be 0, owner is 99
    | 11:54:21 PM | Info | Group differs on ./Library/Printers/EPSON/LaserPrinter, should be 80, group is 99
    | 11:54:21 PM | Info | Permissions differ on ./Library/Printers/EPSON/LaserPrinter, should be drwxrwxr-x , they are drwxr-xr-x
    | 11:54:21 PM | Info | Owner and group corrected on ./Library/Printers/EPSON/LaserPrinter
    | 11:54:21 PM | Info | Permissions corrected on ./Library/Printers/EPSON/LaserPrinter
    | 11:54:21 PM | Info | User differs on ./Library/Printers/EPSON/Libraries, should be 0, owner is 99
    | 11:54:21 PM | Info | Group differs on ./Library/Printers/EPSON/Libraries, should be 80, group is 99
    | 11:54:21 PM | Info | Permissions differ on ./Library/Printers/EPSON/Libraries, should be drwxrwxr-x , they are drwxr-xr-x
    | 11:54:21 PM | Info | Owner and group corrected on ./Library/Printers/EPSON/Libraries
    | 11:54:21 PM | Info | Permissions corrected on ./Library/Printers/EPSON/Libraries
    | 11:54:21 PM | Info | User differs on ./Library/Printers/EPSON/PAP.plugin, should be 0, owner is 99
    | 11:54:21 PM | Info | Group differs on ./Library/Printers/EPSON/PAP.plugin, should be 80, group is 99
    | 11:54:21 PM | Info | Permissions differ on ./Library/Printers/EPSON/PAP.plugin, should be drwxrwxr-x , they are drwxr-xr-x
    | 11:54:21 PM | Info | Owner and group corrected on ./Library/Printers/EPSON/PAP.plugin
    | 11:54:21 PM | Info | Permissions corrected on ./Library/Printers/EPSON/PAP.plugin
    | 11:54:21 PM | Info | User differs on ./Library/Printers/EPSON/TCPIP.plugin, should be 0, owner is 99
    | 11:54:21 PM | Info | Group differs on ./Library/Printers/EPSON/TCPIP.plugin, should be 80, group is 99
    | 11:54:21 PM | Info | Permissions differ on ./Library/Printers/EPSON/TCPIP.plugin, should be drwxrwxr-x , they are drwxr-xr-x
    | 11:54:21 PM | Info | Owner and group corrected on ./Library/Printers/EPSON/TCPIP.plugin
    | 11:54:21 PM | Info | Permissions corrected on ./Library/Printers/EPSON/TCPIP.plugin
    | 11:54:21 PM | Info | User differs on ./Library/Printers/EPSON/USB.plugin, should be 0, owner is 99
    | 11:54:21 PM | Info | Group differs on ./Library/Printers/EPSON/USB.plugin, should be 80, group is 99
    | 11:54:21 PM | Info | Permissions differ on ./Library/Printers/EPSON/USB.plugin, should be drwxrwxr-x , they are drwxr-xr-x
    | 11:54:21 PM | Info | Owner and group corrected on ./Library/Printers/EPSON/USB.plugin
    | 11:54:21 PM | Info | Permissions corrected on ./Library/Printers/EPSON/USB.plugin
    | 11:54:21 PM | Info | User differs on ./System/Library/CoreServices/SKPlugins, should be 0, owner is 99
    | 11:54:21 PM | Info | Group differs on ./System/Library/CoreServices/SKPlugins, should be 0, group is 99
    | 11:54:21 PM | Info | Owner and group corrected on ./System/Library/CoreServices/SKPlugins
    | 11:54:21 PM | Info | Permissions corrected on ./System/Library/CoreServices/SKPlugins
    | 11:54:21 PM | Info | Permissions differ on ./private/var/log/secure.log, should be -rw------- , they are -rw-r-----
    | 11:54:21 PM | Info | Owner and group corrected on ./private/var/log/secure.log
    | 11:54:21 PM | Info | Permissions corrected on ./private/var/log/secure.log
    | 11:54:21 PM | Info | The privileges have been verified or repaired on the selected volume
    | 11:54:21 PM | Info | Verify/repair finished permissions on disk disk2s2 Macintosh HD
    | 11:54:21 PM | Info | ...ACTION: Erasing Macintosh HD
    | 11:54:21 PM | Info | ......COMMAND => Preserving Macintosh HD UUID
    | 11:54:22 PM | Info | 11FFCEFABA43DE77
    | 11:54:22 PM | Info | ......COMMAND => Preserving spotlight indexing state
    | 11:54:22 PM | Info | ......COMMAND => Erasing Macintosh HD
    | 11:54:29 PM | Info | ......COMMAND => Restoring Macintosh HD UUID (11FFCEFABA43DE77)
    | 11:54:30 PM | Info | 11FFCEFABA43DE77
    | 11:54:30 PM | Info | ......COMMAND => Restoring Spotlight search indexing state on Macintosh HD
    | 11:54:30 PM | Info | /Volumes/Macintosh HD 1:
    | 11:54:30 PM | Info | Indexing enabled for volume.
    | 11:54:30 PM | Info | Indexing enabled on Macintosh HD
    | 11:54:30 PM | Info | ...ACTION: Preparing Macintosh HD
    | 11:54:30 PM | Info | ......COMMAND => Enabling permissions on Macintosh HD
    | 11:54:30 PM | Info | Refreshing Disk Arbitration ...
    | 11:54:30 PM | Info | ......COMMAND => Verifying that permissions are enabled for Macintosh HD
    | 11:54:30 PM | Info | Permissions on '/Volumes/Macintosh HD 1' are enabled.
    | 11:54:30 PM | Info | ......COMMAND => Verifying that Macintosh HD ACL support matches Macintosh HD
    | 11:54:30 PM | Info | ...ACTION: Preserving Spotlight state on Macintosh HD
    | 11:54:30 PM | Info | ......COMMAND => Disabling Spotlight search indexing on Macintosh HD
    | 11:54:30 PM | Info | PHASE: 2. Copy Files
    | 11:54:30 PM | Info | ...ACTION: Copying files from Macintosh HD to Macintosh HD
    | 11:54:30 PM | Info | ......COMMAND => Cloning Macintosh HD to Macintosh HD
    | 11:54:30 PM | Info | Copying copy files using script: /Users/PaulLau/Library/Application Support/SuperDuper!/Copy Scripts/Standard Scripts/Backup - all files.dset
    | 11:54:31 PM | Info | Loading 22 commands from copy script /Applications/SuperDuper!.app/Contents/Resources/Copy Scripts/Exclude system temporary files.dset
    | 11:54:31 PM | Info | Loading 6 commands from copy script /Applications/SuperDuper!.app/Contents/Resources/Copy Scripts/Exclude system cache files.dset
    | 11:54:31 PM | Info | Loading 1 commands from copy script /Applications/SuperDuper!.app/Contents/Resources/Copy Scripts/Exclude Norton FileSaver files.dset
    | 11:54:31 PM | Info | Loading 1 commands from copy script /Applications/SuperDuper!.app/Contents/Resources/Copy Scripts/Exclude Google Desktop Index files.dset
    | 11:54:31 PM | Info | Loading 1 commands from copy script /Applications/SuperDuper!.app/Contents/Resources/Copy Scripts/Exclude iTunes Temporary files.dset
    | 11:54:31 PM | Info | Loading 0 commands from copy script /Users/PaulLau/Library/Application Support/SuperDuper!/Copy Scripts/Standard Scripts/Backup - all files.dset
    | 11:54:31 PM | Info | /
    | 11:54:34 PM | Info | /cores
    | 11:54:34 PM | Info | /.HFS+ Private Directory Data
    | 11:54:34 PM | Info | Ignoring /.hotfiles.btree
    | 11:54:34 PM | Info | /automount
    | 11:54:34 PM | Info | /Users
    | 01:15:50 AM | Info | Ignoring /Users/PaulLau/Music/iTunes/Temp File.tmp
    | 01:29:23 AM | Info | /usr
    | 01:37:30 AM | Error | ***FAILED***: result=256 errno=22 (Unknown error: 0)
    Carbon Copy:
    (CCC.log)
    Operating System: Version 10.4.11 (Build 8S2167)
    Hardware:
    hw.machine: i386
    hw.model: MacBookPro2,2
    hw.logicalcpu: 2
    hw.physmem: 2147483648
    vm.loadavg: 0.23 0.10 0.15
    Task: Disk-to-disk clone
    Source: Macintosh HD (/dev/disk2s2, 54DEB44B-185A-3372-AA7F-5D7B3AC8ED8D)
    Mount point: /
    Filesystem: hfs
    Capacity: 111.47 GB
    Used: 93.99 GB
    Available: 17.48 GB
    Mac OS X version: 10.4.11
    Target: Macintosh HD (/Volumes/Macintosh HD 1/ [/dev/disk0s2, 29D1F59F-2B8F-3AF5-8684-948A10EB6524])
    Mount point: /Volumes/Macintosh HD 1
    Filesystem: hfs
    Capacity: 465.44 GB
    Used: 108.80 MB
    Available: 465.34 GB
    Mac OS X version: Mac OS not installed
    Bootability: This volume will be bootable.
    Cloning method: Backup everything
    Delete items on target that aren't on the source: No
    02:00:11 The target volume has ownership enabled.
    02:00:11 The target volume has Access Control Lists enabled.
    02:00:11 Authenticating...
    02:00:13 Initiating synchronization engine...
    02:00:15 Cloning...
    02:53:46 rsync: readlink_stat("/Library/Printers/Canon/BJPrinter/Frameworks/BJVersionControl.fr amework/Versions/Current") failed: Invalid argument (22) (51)
    02:54:13 rsync: readlink_stat("/Library/Printers/EPSON/InkjetPrinter/Halftone/HalftoneIIMo.fram ework/Versions/Current") failed: Invalid argument (22) (51)
    04:22:37 rsync error: some files/attrs were not transferred (see previous errors) (code 23) at /Volumes/Home/Users/bombich/Development/Bombich_Software/rsync-3.0.5/main.c(104 7) [sender=3.0.5] (51)
    04:22:37 rsync: Some errors were encountered during the backup., Error code: 51
    04:22:38 Sync Engine warnings: (
    "rsync: readlink_stat(\"/Library/Printers/Canon/BJPrinter/Frameworks/BJVersionControl.f ramework/Versions/Current\") failed: Invalid argument (22)",
    "rsync: readlink_stat(\"/Library/Printers/EPSON/InkjetPrinter/Halftone/HalftoneIIMo.fra mework/Versions/Current\") failed: Invalid argument (22)",
    "rsync error: some files/attrs were not transferred (see previous errors) (code 23) at /Volumes/Home/Users/bombich/Development/Bombich_Software/rsync-3.0.5/main.c(104 7) [sender=3.0.5]"
    (console.log)
    Disk Utility started.
    Preparing to erase : “Macintosh HD”
    Creating Partition Map
    Formatting Disk
    Erase complete.
    crontab: no crontab for PaulLau
    2009-05-14 08:03:47.562 SuperDuper![3102] .scriptSuite warning for attribute 'boundsAsQDRect' of class 'NSWindow' in suite 'NSCoreSuite': 'NSData<QDRect>' is not a valid type name.
    2009-05-14 08:03:47.563 SuperDuper![3102] .scriptSuite warning for type 'NSTextStorage' attribute 'name' of class 'NSApplication' in suite 'NSCoreSuite': AppleScript name references may not work for this property because its type is not NSString-derived.
    2009-05-14 08:03:47.563 SuperDuper![3102] .scriptSuite warning for type 'NSTextStorage' attribute 'lastComponentOfFileName' of class 'NSDocument' in suite 'NSCoreSuite': AppleScript name references may not work for this property because its type is not NSString-derived.
    2009-05-14 08:03:47.563 SuperDuper![3102] .scriptSuite warning for type 'NSTextStorage' attribute 'title' of class 'NSWindow' in suite 'NSCoreSuite': AppleScript name references may not work for this property because its type is not NSString-derived.
    2009-05-14 08:03:47.563 SuperDuper![3102] .scriptSuite warning for attribute 'boundsAsQDRect' of class 'NSWindow' in suite 'NSCoreSuite': 'NSData<QDRect>' is not a valid type name.
    2009-05-14 08:03:47.563 SuperDuper![3102] .scriptSuite warning for superclass of class 'NSAttachmentTextStorage' in suite 'NSTextSuite': 'NSString' is not a valid class name.
    firefox-bin(3107,0xa000d000) malloc: * Deallocation of a pointer not malloced: 0x1; This could be a double free(), or free() called with the middle of an allocated block; Try setting environment variable MallocHelp to see tools to help debug
    Message was edited by: beat4dasoul

    Complete what Kurt has told you first. Then - if you use CCC - check the details in
    B4 U post...
    noting especially the two links to details for preparation of a target drive and the "Proof of pudding" test.
    Then make use of this section of CCC Help.
    BTW, having both source and target with the same name is an invitation to a mistake. Rename one or both of them. Use meaningful names to make life easier (and safer) for yourself. Select a volume's icon in the Finder, hit <return>, type the new name, hit <return> again. The OS will notice the new name(s) immediately. Use only simple alphanumeric characters, preferably with no spaces. Even something boring like "myCloneVolume" would be better than what you currently have.
    Andreas

  • Not sure if this means I created a separate iCloud account.  Please help.

    When I first upgraded my iPad to iOS5 I turned on icloud but little else.  I assume this means that the iCloud account was created under the primary Apple ID.  My wife received a new iPad 2 for your b'day and I set her up with my primary Apple ID for purchases but with her own iCloud id.  My research indicates that for our needs - one Apple ID for purchases and separate iCloud IDs would be the way to go.  Yesterday I attempted to turn on syncing for Notes and it was indicated on my iPad that I needed an @me e-mail to do this and so I requested one and got it.  When I did so I was never asked to setup a password nor had I been asked the questions I was asked when setting up my wife's.  So now - did I create a separate iCloud account when obtaining the @me address or do I have to do something else?  I'd like to attach my syncing to a separate iCloud account as well rather than the master Apple account (thinking this is what I should do).
    Thank you.

    anyone?

  • Problem while creating a new internal order. Please help! URGENT!!!

    Hi Experts,
    After creating internal orders the currency and cost center fields under control data tab are getting greyed out when I check it via KO02 transaction. The order status is "REL". This in turn is not allowing me to change currency and cost center via KO02. What could be the problem? Why these control data fields are getting greyed out or disabled? Is there any configuration problem? Kindly help ASAP!
    Actually I am creating the order via XI. The input order data is coming from a .Net application which sends the data to XI via webservice call. The XI then uses RFC BAPI "BAPI_INTERNALORDER_CREATE" to create the internal order in R/3 system.
    kindly help please!
    Thanks
    Gopal
    Edited by: gopalkrishna baliga on May 20, 2008 12:09 PM

    Hi Gopal,
    This is based on your configuration on ERP. You have to talk to your functional consultant to get the right order type and right configuration for same.
    Thanx & Regards
    Vinod

  • Facetime not working for 10.7.5. , it keeps saying connection failed when trying to make a facetime call . please help

    Ever since the middle of April my facetime stoped working for some apparent reason. When i try to make a call it say connecting then connection failed, and when someone calls me , it'll say connecting and then connection failed . Ive tried rebooting the computer and everything. I have Mac OS X 10.7.5 and my facetime is the 1.1.1 version . can someone pease help me. thank you

    Apple issued a knowledge base article April 16, 2014: http://support.apple.com/kb/TS5419 noting the requirements for software update to be compatible with FaceTime.

Maybe you are looking for

  • New to SAP PI, I need more information on SAP PI Topics

    Hi Guys, I'm New to SAP PI, I need more information on SAP PI Topics which are related to Development and configuration. i have gather some information please add more topics and major scenarios if i missed out. SAP PI Topics: 1.     Mapping u2022   

  • How do I recognize and treat seperately entries in a text box?

    I've placed a text box in a report that is populated by data entries that are seperated by a semicolon.  Each entry is unique and distinct.  I want to try to count and group these individually, but since they exist in a text box seperated by a semico

  • Help with Planning Query - 0CALMONTH not showing up

    Hi, I have a simple planning query where I am trying to allow users to input or change an Amount by Material/Month.  The User inputs a Version and a Date Range to maintain.  The selected dates should show up going across the screen even if there is n

  • TS1362 i pay for a song it shows in my library but wont play. help

    I pay for a song it shows in my library on my computer but wont play or download on my ipod nano

  • Only one site won't connect!

    I started a thread here about connection issues I am having to one site in particular: http://discussions.apple.com/thread.jspa?threadID=1426863 I have narrowed the issue down to the router. I can access the site with my cable modem plugged in direct