Things to consider while copying a seeded package.procedure?

Hi,
I was trying to do some customization as part of my project in PO_APPROVALLIST_S1.rebuild_approval_list. I copied the procedure and put it in my package after renaming it and done some code changes. The syntax errors were corrected and the package got compiled successfully.
But when I did testing in Requisition Approval -Forward Action where I customized, the workflow is erroring out in Exception. Retry also not working.It is again going to exception
Failed Activity: Update Approval List Response
Activity Type: Function
Error Name: -6512
Error Message: ORA-06512: at line
Error Stack : Wf_Engine_Util.Function_Call(PO_APPROVAL_LIST_WF1S.UPDATE_APP_LIST_RESP_SUCCESS, REQAPPRV, 23371461-562932, 968804, RUN)
How can i identify at which point it errs out? Is there any problem if we are using seeded procedures in custom packages?
Please help me to proceed further..
thanks,
Nish

Hi, since you've modified a package that is tied to the workflow, it would be a good idea to stop/restart workflows because original code is probably in memory and your modification are not considered but the state has changed.

Similar Messages

  • Error While Creating Block on Package Procedure

    Hi
    When I try to create a block on a package Procedure I get the following error
    ifbld60.exe has generated errors and will be closed by Windows.
    You will need to restart the program.
    An Error log is being created,
    and forms closes.
    Is it something to do with Forms problem or with Windows? Is there a patch available for this problem or its a OS bug. The client I am testing this form from is Windows 2000 Professional.
    Thanks for your help
    Diogo

    Hi
    You cannot directly insert object in Stored Procedure universe,Whatever object you are using to define your derived table,you have to include all those objects into the universe first.
    From the below image you can see that i have 3 derived tables ,but whatever objects i am trying to use all those i have inserted into the universe.
    Try to build like this save and export.
    Let me know if you face nay error

  • Things to consider while Creating Indexes in the tables

    Hi All,
    We have some application slow issues becasue of the tables which it is calling are Heap. There are Primary keys created on few tables though. I have to think and design the indexing on those tables. What are different things need to check to design the Indexes?
    Thanks
    Swapna

    Hi All,
    We have some application slow issues becasue of the tables which it is calling are Heap. There are Primary keys created on few tables though. I have to think and design the indexing on those tables. What are different things need to check to design the Indexes?
    Thanks
    Swapna
    Adding to what others have said create an index and check execution plan whether it is being used by optimizer or not if it is used and query runs fast that index can be kept
    You should also take help of DMV
    sys.dm_index_usage_stats to see whether index is being utilized or not. refer to user seek user update and user scan col. If Update is very much greater that seek/scan index is probably not utilized , you can consider removing it
    Please mark this reply as answer if it solved your issue or vote as helpful if it helped so that other forum members can benefit from it.
    My TechNet Wiki Articles

  • Things to consider while uploading the photo to show up in ESS

    Hello All,
    We are planning to have Employee Photo in ESS, We just want to know what all things need to be considered, like
    1) Database size
    2) constraint on size.(how to restrict the size of the image)
    3) We will be doing the configuration required for that.
    other than these what things have to be considered.
    Please help me out in this.
    Points will be awarded for the appropriate answers.
    Pramod

    Solved

  • Things to consider while designing an interface

    Hi friends,
    I've got an opportunity to design (functional design) the first outbound interface of my career. I'm little confused with the data mapping part of it with the legacy team. I want to follow a structured method to avoid missing out things and bother the legacy team again and again with silly question. Can anyone provide me a structured method and the important things that I should know and discuss with the legacy team?
    I'm new to SDN and I'm not aware of all the protocols of the forum. Please excuse me if I've put accross a wrong question.
    Thanks,
    Rohit

    Hi,
    When you working on design what kind of design??
    Like have you got functional requirements from functional Team?? or you involving in gathering functional Requirement??
    Functional Design:
    Nothing to do with your Interface design, try to understand the business requirement, and identify the source data and target data, and what system is going to be source and target.
    then identify the is there any business data validations and data mapping between source and data, for this you have maintain one excel sheet for data mapping, define source and target structures and business logic involved in mapping.
    in this phase you have to develop functional document, which gives the high-level business requirement and graphical representation of data flow between source and target system(MSVisio diagram).
    Technical Design:
    Technical design will talk about how youu2019re going to achieve your functional requirement using PI.
    First analyze the requirement, like source and target systems and which adapters will full fill your requirement to retrieve/send data to source/target systems.
    Then identify which type of interface it is Synchronous or asynchronous.
    Then you have to identify mapping logic, refer functional data mapping document and identify which mapping will be required(Message ,JAVA,XSLT and ABAP ),if your requirement can be achieved using message mapping then well and good.
    Identify the best approach to implement your business requirement using SAP PI, prepare design document, if you donu2019t have much experience in SAP PI, then refer senior recourse about design, he will help you if anything needed to be changed in your design approach.
    Now you are clear with requirement, mapping logic and ready with design.
    Start development refer naming convention document before starting your requirement and follow the valid naming standards and complete your development and mean time complete technical specification document for your interface.
    Regards,
    Raj

  • Things to consider while making a class singleton?

    sometimes i need to share the state of object across application.I get confused should i declare it singleton or declare state vaiables as static.
    As per mythoughts, if intention is just to share the state of object across application i should go for static variables. Is this right?
    My understanding about when we should go about singleton is below
    We should declare the class as singleton when we need only one instance across jvm. But i am not unable to find any practical scenario
    when we where we may need singleton . Any help here will be appreciated. Everywhere on different sites i get to see the example of logger
    class where the reason is generally given as so that single log file is created not multiple log files.
    But again this could have been achieved with declaring the file variable as static in logger file?
    So actual reason is for declaring the logger as singleton is becuase we need the single log file with issues avoiding concurrent writing
    which wont be possible if we make the separate instance of logger for each write..
    Is the above reasoning correct so that i can proceed in right direction?

    How will declaring its state as static accomplish that objective?With declaring variables as class variable instead of instance variables, there will be a single copy of each variable. In each instance (in this case logger if we dont declare it singleton) we can check if file is already created or not. I mean it will be visible across all instances.
    No, because the file name isn't the only state. There is also the output stream/writer, its current position, its charset, the log level, the logger name, its filters, its formatters, ...Agreed. I just wanted to convey the point. As you said there will be other parameters,in that case we can declare all of them as static.
    A configuration file holder is a good example: there is only one configuration file so there should only be one holder instance.Thanks for pointing it out. Configuration file is used mainly to read the properties. we usually dont update the values there.So even if we dont make it singleton it may be correct. The advantage i can think of making it singleton is that if configuration file is used frequently then we dont have create the object again and again.
    So actual reason is for declaring the logger as singleton is becuase we need the single log file with issues avoiding concurrent writing
    No it isn't, and that doesn't follow from anything you said previously so the 'so' part is meaningless.I want to say here is that t to have single log file should not be the only reason behind making the logger file as singleton, other reasons can be handling of concurrent writing too.
    Have a look at the Wikipedia article on the Singleton pattern, or buy the booki have gone through the singleton pattern in headfirst book and some of the articles on net. But they mainly describe how the make the class as singleton and the reason that We should declare the class as singleton when we need only one instance. But looking for actual scenarios where we need singleton. So i took the examplle of logger file which is used in many project and trying to understand it is constructed as singleton so that i can use in my project if required.
    Edited by: JavaFunda on Aug 28, 2011 3:51 AM
    Edited by: JavaFunda on Aug 28, 2011 3:56 AM

  • Things to consider while merging two DBs?

    Dear gurus,
    We have 2 instances, 1 is prod and other is replica of prod, just 4-5 hours behind prod,
    used for queries just to reduce overhead on PROD,(the second instance is not a DSS/warehosuese/OLAP env it is just replica on instance 1) with some additional indexes,
    now the management has decided to remove the second instance,
    my question is : how do i proceed that the queries running on instance 2 should not create any problem when shifted to instance 1
    thanks

    user548749 wrote:
    my question is : how do i proceed that the queries running on instance 2 should not create any problem when shifted to instance 1If an existing query on instance 2 uses an index which is not available on instance 1, there can be a hefty performance impact. Or instance 1 can already be quite busy and unable to handle the additional volume of queries from instance 2. Or the buffer cache on instance 1 may not allow the same level of caching enjoyed by queries on instance 2 (due to production processes that are absent from instance 2).
    So there is no simple way to identify problematic queries that worked fine on instance 2 and would be a problem on instance 1. For starters, you will need to parse every single query on both and compare the resulting execution plans simply to determine if there will be a difference.
    Also, as instance 1 contains more data than instance 2 (which lags some hours behind), execution plans can quite likely be different in some cases due to the volume of data.
    This is not a simple exercise to undertake. There will be execution plan differences - and the difference may not be a bad thing due to the differences of instance 1 compared with instance 2.
    What you can do is implement resource profiles on instance 1 for instance 2 queries - and that way attempt to control those queries resource utilisation and thus minimise their impact on instance 1.
    Bottom line though - I see this as a lot of manual and hard work to make the replacement of instance 2 with instance 1 a transparent one to the end users that are using instance 2 for queries.
    Billy

  • Error while packaging or copying from a package

    Hi,
    I am getting the below error while I try to package ( entire project or individual objects) as well as when I try to copy objects from a package file.
    Client version: 9.0.3 (537)
    15-Oct-2013 07:33:40
    java.lang.NullPointerException
    at com.datanomic.director.transfer.server.TempFileManager.delete(TempFileManager.java:58)
    at com.datanomic.director.transfer.server.Transferer.export(Transferer.java:238)
    at com.datanomic.director.transfer.server.Transferer.export(Transferer.java:130)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:601)
    at com.datanomic.utils.transport.server.ServerTransport.invoke(ServerTransport.java:119)
    at com.datanomic.utils.transport.server.ServerTransport.invoke(ServerTransport.java:59)
    at com.datanomic.utils.transport.http.server.TransportServlet.doPost(TransportServlet.java:72)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:727)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
    at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
    at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:301)
    at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at com.datanomic.userauth.server.http.AuthFilter.doFilter(AuthFilter.java:129)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3730)
    This started on Oct 1st 2013. It was working before without any issue. The problem is faced by all users including the admin user.
    The log has following entries -
    server side logs
    INFO: 02-Oct-2013 12:05:00: [dn:director version 9.0.3(537)]
    SEVERE: 02-Oct-2013 12:04:59: Can't create cache file!
    javax.imageio.IIOException: Can't create cache file!
    at javax.imageio.ImageIO.createImageInputStream(ImageIO.java:361)
    at javax.imageio.ImageIO.read(ImageIO.java:1351)
    at com.datanomic.director.missionlieutenant.triggers.AbstractMissionTrigger.getTriggerNames(AbstractMissionTrigger.java:108)
    at com.datanomic.director.triggers.manager.Trigger.getMatchingNames(Trigger.java:197)
    at com.datanomic.director.triggers.manager.TriggerManager.getLocalizedTriggerNames(TriggerManager.java:397)
    at sun.reflect.GeneratedMethodAccessor271.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:601)
    at com.datanomic.utils.transport.server.ServerTransport.invoke(ServerTransport.java:119)
    at com.datanomic.utils.transport.server.ServerTransport.invoke(ServerTransport.java:59)
    at com.datanomic.utils.transport.http.server.TransportServlet.doPost(TransportServlet.java:72)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:727)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
    at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
    at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
    at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:301)
    at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at com.datanomic.userauth.server.http.AuthFilter.doFilter(AuthFilter.java:129)
    at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
    at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3730)
    Caused by: java.nio.file.FileSystemException: /tmp/imageio8224618281568165079.tmp: Read-only file system
    at sun.nio.fs.UnixException.translateToIOException(UnixException.java:91)
    SEVERE: 02-Oct-2013 12:05:00: Can't create cache file!
    javax.imageio.IIOException: Can't create cache file!
    at javax.imageio.ImageIO.createImageInputStream(ImageIO.java:361)
    SEVERE: 02-Oct-2013 12:05:00: Can't create cache file!
    javax.imageio.IIOException: Can't create cache file!
    at javax.imageio.ImageIO.createImageInputStream(ImageIO.java:361)
    at javax.imageio.ImageIO.read(ImageIO.java:1351)
    at com.datanomic.director.missionlieutenant.triggers.AbstractMissionTrigger.getTriggerNames(AbstractMissionTrigger.java:108)
    at com.datanomic.director.triggers.manager.Trigger.getMatchingNames(Trigger.java:197)
    at com.datanomic.director.triggers.manager.TriggerManager.getLocalizedTriggerNames(TriggerManager.java:397)
    at sun.reflect.GeneratedMethodAccessor271.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    Caused by: java.nio.file.FileSystemException: /tmp/imageio2555104156799296129.tmp: Read-only file system
    We use weblogic as user tstedq2 in Linux.
    > -bash-4.1$ cd /tmp/
    -bash-4.1$ ls -lrt
    total 1276
    drwxr-x--x 3 tstedq2 oinstall    4096 Aug 16 16:29 wlstTemptstedq2
    -rw-r----- 1 tstedq2 oinstall 1298202 Sep 13 13:10 dndirector8572326682424543213.tmp
    drwxr-x--x 2 tstedq2 oinstall    4096 Sep 16 05:59 hsperfdata_tstedq2
    > -bash-4.1$ env
    HOSTNAME=tstedq01
    SHELL=/bin/bash
    TERM=xterm
    HISTSIZE=1000
    QTDIR=/usr/lib64/qt-3.3
    QTINC=/usr/lib64/qt-3.3/include
    USER=tstedq2
    LS_COLORS=rs=0:di=01;34:ln=01;36:mh=00:pi=40;33:so=01;35:do=01;35:bd=40;33;01:cd=40;33;01:or=40;31;01:mi=01;05;37;41:su=37;41:sg=30;43:ca=30;41:tw=30;42:ow=34;42:st=37;44:ex=01;32:*.tar=01;31:*.tgz=01;31:*.arj=01;31:*.taz=01;31:*.lzh=01;31:*.lzma=01;31:*.tlz=01;31:*.txz=01;31:*.zip=01;31:*.z=01;31:*.Z=01;31:*.dz=01;31:*.gz=01;31:*.lz=01;31:*.xz=01;31:*.bz2=01;31:*.tbz=01;31:*.tbz2=01;31:*.bz=01;31:*.tz=01;31:*.deb=01;31:*.rpm=01;31:*.jar=01;31:*.rar=01;31:*.ace=01;31:*.zoo=01;31:*.cpio=01;31:*.7z=01;31:*.rz=01;31:*.jpg=01;35:*.jpeg=01;35:*.gif=01;35:*.bmp=01;35:*.pbm=01;35:*.pgm=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.tiff=01;35:*.png=01;35:*.svg=01;35:*.svgz=01;35:*.mng=01;35:*.pcx=01;35:*.mov=01;35:*.mpg=01;35:*.mpeg=01;35:*.m2v=01;35:*.mkv=01;35:*.ogm=01;35:*.mp4=01;35:*.m4v=01;35:*.mp4v=01;35:*.vob=01;35:*.qt=01;35:*.nuv=01;35:*.wmv=01;35:*.asf=01;35:*.rm=01;35:*.rmvb=01;35:*.flc=01;35:*.avi=01;35:*.fli=01;35:*.flv=01;35:*.gl=01;35:*.dl=01;35:*.xcf=01;35:*.xwd=01;35:*.yuv=01;35:*.cgm=01;35:*.emf=01;35:*.axv=01;35:*.anx=01;35:*.ogv=01;35:*.ogx=01;35:*.aac=01;36:*.au=01;36:*.flac=01;36:*.mid=01;36:*.midi=01;36:*.mka=01;36:*.mp3=01;36:*.mpc=01;36:*.ogg=01;36:*.ra=01;36:*.wav=01;36:*.axa=01;36:*.oga=01;36:*.spx=01;36:*.xspf=01;36:
    MAIL=/var/spool/mail/tstedq2
    PATH=/usr/lib64/qt-3.3/bin:/usr/local/bin:/bin:/usr/bin:/usr/local/sbin:/usr/sbin:/sbin
    PWD=/tmp
    LANG=en_US.UTF-8
    HISTCONTROL=ignoredups
    SHLVL=1
    HOME=/home/tstedq2
    LOGNAME=tstedq2
    QTLIB=/usr/lib64/qt-3.3/lib
    CVS_RSH=ssh
    LESSOPEN=|/usr/bin/lesspipe.sh %s
    G_BROKEN_FILENAMES=1
    OLDPWD=/home/tstedq2
    _=/bin/env
    /tmp permissions are as below
    > -bash-4.1$ ls -ltr
    drwxrwxrwt.   6 root       root    4096 Sep 17 03:15 tmp
    I am saving the package to my local machine for which I've read and write. I am able to save packages from other EDQ applications to the same place.
    This is an UAT environment and I need to package my SIT code and copy it to this. 
    Please let me know what is going wrong here.
    Thanks and Regards,
    Ravi

    It looks like a file permission problem on the server - specifically, looks like the app server user does not have permission to write to the temp directory /tmp and so cannot write the temporary data needed to package up the configuration.

  • Invalid file name error while copying some packages to USB disk.

    Hi
    I am trying to create my custom local repository by copying all the packages from /var/cache/pacman/pkg to /run/media/anand/SJCE_EEE/custompkgs on my USB storage device. But I get the following errors for some packages:
    cp: cannot create regular file ‘/run/media/anand/SJCE_EEE/custompkgs/graphite-1:1.0.3-1-i686.pkg.tar.xz’: Invalid argument
    cp: cannot create regular file ‘/run/media/anand/SJCE_EEE/custompkgs/hsqldb-java-1:1.8.0.10-2-any.pkg.tar.xz’: Invalid argument
    cp: cannot create regular file ‘/run/media/anand/SJCE_EEE/custompkgs/libmythes-1:1.2.3-1-i686.pkg.tar.xz’: Invalid argument
    cp: cannot create regular file ‘/run/media/anand/SJCE_EEE/custompkgs/libshout-1:2.3.0-1-i686.pkg.tar.xz’: Invalid argument
    cp: cannot create regular file ‘/run/media/anand/SJCE_EEE/custompkgs/phonon-1:4.6.0-2-i686.pkg.tar.xz’: Invalid argument
    cp: cannot create regular file ‘/run/media/anand/SJCE_EEE/custompkgs/rasqal-1:0.9.29-1-i686.pkg.tar.xz’: Invalid argument
    cp: cannot create regular file ‘/run/media/anand/SJCE_EEE/custompkgs/redland-1:1.0.15-3-i686.pkg.tar.xz’: Invalid argument
    cp: cannot create regular file ‘/run/media/anand/SJCE_EEE/custompkgs/redland-storage-virtuoso-1:1.0.15-3-i686.pkg.tar.xz’: Invalid argument
    cp: cannot create regular file ‘/run/media/anand/SJCE_EEE/custompkgs/vi-1:050325-2-i686.pkg.tar.xz’: Invalid argument
    cp: cannot create regular file ‘/run/media/anand/SJCE_EEE/custompkgs/xf86-video-ati-1:6.14.6-1-i686.pkg.tar.xz’: Invalid argument
    But other packages copy properly to the USB storage device. If I remove : from the file names of packages mentioned above they copy properly. Is this because of the FAT32 file system on my USB disk?
    The above mentioned packages copy properly to my home directory which is ext4 file system.
    Any suggestions to correct this?
    Thanks in advance.
    Anand

    rsamurti, you asked the moderators to do this:
    Please remove : from package file names due to the problems reported in this post. Such packages cannot be copied to FAT32 file systems.
    This is up to you. Just "Edit" the post by yourself and mark this section deleted. (See the BBCode help for this.)
    And please leave an according comment stating something like the quote above there. It would be valuable information.

  • Unable to complete backup. An error occurred while copying files to the...

    Add me to the list of those with TIme Machine backup failures.
    I am repeatedly getting the following error message:
    "Unable to complete backup. An error occurred while copying files to the backup volume."
    I do have work-around.
    1. Open Time Machine Preferences... (from the Time Machine menu in the menu bar)
    2. Change Disk...
    3. Re-select the disk you are already using and select "Use for Backup"
    4. Back Up Now (from the Time Machine menu in the menu bar)
    The error eventually comes back, but following the above procedure keeps it at bay for a few days.
    I have only had these errors since 10.5.3.

    Mle,
    Take a look at the following...
    *_“Unable to Complete Backup. An Error Occurred While Copying Files to the Backup Volume.” (Console: “Error: (-43) copying”, “Copy stage failed with error:11”)_*
    There are several reasons why this error message can appear. Consider each topic individually. If one does not resolve the issue, move on to the next one. The following topics have resolved this issue for others.
    *If A Backup Is Interrupted* #
    “If an interruption occurs, Time Machine will wait for a period of time to see if the Time Capsule becomes available again. After this time expires you will see a alert message stating "Time Machine Error. Unable to complete backup. An error occurred while copying files to the backup volume." In Time Machine preferences, the "Latest Backup:" field will state "Failed".” [http://support.apple.com/kb/HT1176]
    You will need to reestablish communication with the Time Machine backup disk.
    *Anti-Virus Software* #
    Have you been running anti-virus software? xClav, Norton, Sophos, Macaffe etc... According to many posters in the forums this software can play havoc with Time Machines attempt to function properly.
    *Firewire Devise Interferes with Time Machine Backups* #
    If you are backing up to an external hard disk by means of firewire, do you happen to have another firewire device attached as well? An iSight camera or video recorder maybe? Sometimes additional firewire devises can interfere with the signal/power to the backup drive. Unplug it and attempt a backing up again.
    *Corrupt File / Incorrect Permissions* #
    One poster observed: “I searched my system logs and found a file that caused my connection to the TC to fail. I erased that file (after checking what it was - a temporary file connected to my Epson scanner) and tried again to back up for the first time. This time it worked, and in under 10 hours (I had been expecting about 20-24 hours, based on the data transfer speed).”
    Initially this might be resolved without deleting the offending file. Simply use Disk Utility to “Repair Disk Permissions”. Or failing that, booting from the Mac OS X Installation DVD and running “Repair Disk” on the Mac’s internal hard disk. Now try backing up
    Otherwise, you may need to track down the specific file causing Time Machine to choke.
    Before attempting another backup, go into Applications --> Utilities --> and launch Console.
    Under “LOG FILES” on the left select "system.log".
    In the search field in the upper right, type in backupd. This is the process Time Machine uses to perform backups. By searching just for this process we'll isolate only Time Machine activities.
    With the Console open, attempt another backup and note the time it starts and the time it stops. Often, the activities reported will identify the very file or event that caused the attempt to choke. (You can copy and paste the events for this backup attempt from the log into a post here and we may be able to tell you exactly what is happening.)
    Once you determine which file or event it is, you can decide whether to move, delete, or modify certain things and then attempt another backup. For Instance, if the logs report something like this:
    +Error: (-43) copying /Users/Home/Library/Application Support/Quicksilver/Actions.plist to+
    +/Volumes/Backup HD/Backups.backupdb/My Mac Pro//Users/Home/Library/Application+
    Support/Quicksilver
    Then it’s telling you Time Machine is choking on the file labeled Actions.plist and it’s having trouble copying to the backup disk.
    On your computer, Navigate to that file ( Actions.plist ) and move it to the Trash, but DON’T empty it yet. Now try backing up again. If it succeeds, you can launch Time Machine and go back 24-48 hours and restore a copy of Actions.plist and replace it. Then empty trash.
    *Partition Scheme/Formatting Issue*
    This KB article explains one reason you may be seeing that error message [http://support.apple.com/kb/TS1550]. It's a partition scheme issue. Time Machine is incompatible with disks partitioned as Master Boot Record (MBR). Unfortunately, this describes nearly every hard drive you can buy because MBR is a Windows partition scheme. You will likely need to repartition the drive and start again. (Naturally, this DOES NOT apply to Apples’ Time Capsule.)
    One article on Time Machine made this observation: “Virtually everybody will have to open Disk Utility and repartition the disk as APM or GUID. It doesn't really matter which one because the Time Machine disk will not be bootable anyway. APM allows a disk to boot a PowerPC, GUID allows the disk to boot an Intel processor but both are easily digestible by Time Machine on either kind of processor.” (http://www.girr.org/mac_stuff/backups.html)
    Once the external hard disk is repartitioned, select it again in Time Machine preferences and use it for your backups.
    Let us know if any of the suggestions above resolved your issue.
    Cheers!

  • New-AzureDeployment - Error while copying content to a stream

    Hi All,
    I am trying to deploy a packages using the Azure Powershell Cmdlets.
    Each time I try to deploy a particular package, I get the following error message..
    New-AzureDeployment : Error while copying content to a stream.
    At line:1 char:1
    + New-AzureDeployment -DoNotStart -ServiceName $strStagingCCPDeploymentServiceName ...
    + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
        + CategoryInfo          : NotSpecified: (:) [New-AzureDeployment], HttpRequestException
        + FullyQualifiedErrorId : System.Net.Http.HttpRequestException,Microsoft.WindowsAzure.Commands.ServiceManagement.HostedServices.NewAzureDeploymentCommand
    Looking at the inner exception I am getting
    Unable to read data from the transport connection: The connection was closed.
    The package itself is only 80mb and uploads to my blob storage successfully however when it tries to deploy using my config file the error occurs.  The same config file works fine if I use the Azure Website to deploy the package, rather than the cmdlets
    and I can deploy other packages successfully using PowerShell and using Visual Studio.
    Thank you for any help you can provide.

    Hi,
    This seems to be a network issue, but it's quite strange as you can deploy the package from Visual Studio. Could you please try it on another machine (in another network environment if possible)? Also, can you try
    to write a program and call the management API (http://msdn.microsoft.com/en-us/library/windowsazure/ee460813.aspx) to deploy it?
    Best Regards,
    Ming Xu
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Error while accessing oracle packaged procedure in crystal report./ How to

    Hi,
    When i tried to call a packaged procedure in crystal reports for .net, i am unable to access it.
    i am getting error as 'unknown query engine'
    In that packaged procedure i have a two IN parameters and one OUT TABLE parameter ( which is declared in package specification )
    And when selecting the packaged procedure in crystal report,the wizard shows all the parameters like the IN parameters, and when i just leave it blank. i unable to set into report.
    ie., the OUT table type is shown as IN paramters (Actually it is an output and has field fields in it.)
    And No fields are coming in the Fields Explorer of crystal reports in .net.
    can you provide any help.
    thanks and regards
    Mohan Raj K.
    Actually using vs.net 2005 prof.
    Message was edited by:
    mohanraj_k

    Actually the OUT Parameter type in the stored
    procedure is showing as IN Parameters and asking
    for input values in the crystal report creation
    wizard(while selecting the
    database,connection,storedprocedures/qualifiers).That sounds like a problem on the .net / crystal report creation wizard side of things. Oracle no doubt recognises them as OUT parameters, so it's not Oracle at fault. I would guess the .net stuff is just querying the data dictionary to see what parameters there are rather than differentiating between the INs and OUTs.

  • Error while copying profile...

    Error while copying profile from the default profile...
    runtime error- DBIF_RSQL_INVALID_REQUEST
    pls help..

    Irfan,
                You check weather new role name is in Z,Y name space or not?, check the same thing in other clients as well. If you are in windows , then your server mey need reboot because i faced similar problem but sorted after reboot.
    Regards,
    Hari.
    PS: Points are welcome.

  • The backup was not performed because an error occurred while copying files

    One Time Capsule, Two MacBook's, OS10.6.6
    One MacBook can backup no problem, The other cannot backup says: the backup was not performed because an error occurred while copying files to the backup disk.
    Using a Time Machine Buddy widget gives:
    Starting standard backup
    Attempting to mount network destination using URL: afp://Rachel%[email protected]/Data
    Mounted network destination using URL: afp://Rachel%[email protected]/Data
    QUICKCHECK ONLY; FILESYSTEM CLEAN
    Disk image /Volumes/Data/Rachel Feuchtwang’s MacBook.sparsebundle mounted at: /Volumes/Time Machine Backups
    Backing up to: /Volumes/Time Machine Backups/Backups.backupdb
    No pre-backup thinning needed: 4.70 GB requested (including padding), 721.52 GB available
    Indexing a file failed. Returned 200 for: /Applications/Dashboard.app, /Volumes/Time Machine Backups/Backups.backupdb/Rachel Feuchtwang’s MacBook/2011-01-12-115852.inProgress/F82EB140-616F-4213-9B4A-072C2C98B556/MAC/A pplications/Dashboard.app
    Aborting backup because indexing a file failed.
    Stopping backup.
    Copied 5 files (84 bytes) from volume MAC.
    Copy stage failed with error:11
    Backup failed with error: 11
    Ejected Time Machine disk image.
    Ejected Time Machine network volume.
    Who would be so kind to point me in the direction to make thsi work again?
    Thanks! Hugo

    This could very well have to do with ACLs.
    I bumped into the same problem:
    5/8/11 10:43:22 PM          com.apple.backupd[7126]          Error: (-41) SrcErr:NO Copying /Users/SA/Public/Drop Box/HandBrake.app/Contents/Frameworks/Sparkle.framework/Versions/A/ Resources/de.lproj/SUAutomaticUpdateAlert.nib/classes.nib to /Volumes/Local Backup/Backups.backupdb/Server/2011-05-08-221524.inProgress/88ACE716-0660-44C8- A128-CF01046FC2F8/Macintosh HD/Users/SA/Public/Drop Box/HandBrake.app/Contents/Frameworks/Sparkle.framework/Versions/A/ Resources/de.lproj/SUAutomaticUpdateAlert.nib
    Using DD or CCC is no option for me, I don't want downtime and I want incremental backups. So I started to investigate.
    I repartitioned my external Time Machine drive, did the backup again. It didn't work. Then I blocked the culprit file mentioned in the logs from being backed up with TM. That helped, only to find that a bit later it found another file with issues.
    So i looked at the files an found they had ACLs on them that somehow prevented them from being copied.
    SOLUTION:
    remove the ACL from the file.
    If you want to remove all ACLs in a directory, use Terminal and navigate to that directory. Then issue this command:
    sudo echo | sudo chmod -R -E ./*
    If you would like to remove ACLs from a single file or package (e.g. an application), issue this:
    sudo echo | sudo chmod -R -E <nameoffile>
    You might have to this several times since there might be multiple files affected. Unlike previous solutions, this one does not require you to delete the file.
    I got the command to remove ACLs from http://osxadmin.blogspot.com/2008/01/chmod-acl-removal.html

  • Backup failed - error occurred while copying..  Mac Pro after restore

    Hi gang.
    After the most recent EFI Mac Pro firmware update, along with a software update... I could not reboot - got the prohibitary sign. After some time on the phone with Applecare senior tech, i did an erase install from disk with a restore from TM. Seemed to fix my issue, and could reboot as per usual, but I then began getting TM failures with...
    "The backup was not performed because an error occurred while copying files to the backup disk."
    It also said to try again later, restart, and use Disk Utility to repair the TM volume. I did all of these (no probs in Disk Utils) and got the same issue... I decided to give up my month of backups, and finally erased the disk, and time machine got through 2/3 of the 1.37tb of data on the 2tb disk before I got the same message. Tried again and got more data between more failure messages. It's now down to what it thinks is 3.07gb of data as it begins to copy, and copies to 4.36 gb of data, then says it is cleaning up, then fails with the same message... again and again. The drives being backed up and the TM hard drive are all internal disks. Any hints on how to get this working properly?
    Thanks
    Dave
    Message was edited by: daveseeley

    I migrated to my Mac Pro from a G5 several months ago... my boot drive is a 2x100gb solid state drive array. Everything was working flawlessly until I installed an EFI firmware update, and some software updates a few days ago, and my machine would not reboot. I had to erase and install from install disks, and restore from a TM backup from that morning. The catch is that the disk I installed to had some recovered files (data rescue) from trying to save my sister's Powerbook G4 hard drive... and it's possible that invisible files were picked up when I Carbon Copy Cloned that install disk back to my Raid Array boot drive. ???
    I tried excluding the usr/bin folder, and got the same error... with other usr folders showing in console error -34... so I excluded the usr folder, and so far I am 160gb through a 1.2tb backup with no issues. I'll let you know.
    I also did a disk util repair permissions on my boot raid, and got a host of issue including some unrepairable things.... I will reboot on a different disk and do a repair disk... but here's what it said-
    Repairing permissions for “SSDraid”
    Warning: SUID file "usr/bin/at" has been modified and will not be repaired.
    Warning: SUID file "usr/bin/atq" has been modified and will not be repaired.
    Warning: SUID file "usr/bin/atrm" has been modified and will not be repaired.
    Warning: SUID file "usr/bin/batch" has been modified and will not be repaired.
    Warning: SUID file "usr/bin/chfn" has been modified and will not be repaired.
    Warning: SUID file "usr/bin/chpass" has been modified and will not be repaired.
    Warning: SUID file "usr/bin/chsh" has been modified and will not be repaired.
    Permissions differ on "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/dt.jar", should be lrwxr-xr-x , they are lrw-r--r-- .
    Repaired "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/dt.jar".
    Permissions differ on "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/jce.jar", should be lrwxr-xr-x , they are lrw-r--r-- .
    Repaired "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/jce.jar".
    Permissions differ on "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/jconsole.ja r", should be lrwxr-xr-x , they are lrw-r--r-- .
    Repaired "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/jconsole.ja r".
    Permissions differ on "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/management- agent.jar", should be lrwxr-xr-x , they are lrw-r--r-- .
    Repaired "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Classes/management- agent.jar".
    User differs on "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/lib", should be 0, user is 95.
    Repaired "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/lib".
    Permissions differ on "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/lib/dt.jar", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/lib/dt.jar".
    Permissions differ on "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/lib/jce.jar", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/lib/jce.jar".
    Permissions differ on "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/lib/management -agent.jar", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/lib/management -agent.jar".
    Permissions differ on "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/lib/security/b lacklist", should be lrwxr-xr-x , they are lrw-r--r-- .
    Repaired "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/lib/security/b lacklist".
    User differs on "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Libraries", should be 0, user is 95.
    Repaired "System/Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Libraries".
    Permissions differ on "System/Library/Java/Support/Deploy.bundle/Contents/Resources/JavaPluginCocoa.b undle/Contents/Resources/Java/deploy.jar", should be lrwxr-xr-x , they are lrw-r--r-- .
    Repaired "System/Library/Java/Support/Deploy.bundle/Contents/Resources/JavaPluginCocoa.b undle/Contents/Resources/Java/deploy.jar".
    Permissions differ on "System/Library/Java/Support/VisualVM.bundle/Contents/Home/profiler3/lib/deploy ed/jdk15/hpux-pa_risc2.0/libprofilerinterface.sl", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Java/Support/VisualVM.bundle/Contents/Home/profiler3/lib/deploy ed/jdk15/hpux-pa_risc2.0/libprofilerinterface.sl".
    Permissions differ on "System/Library/Java/Support/VisualVM.bundle/Contents/Home/profiler3/lib/deploy ed/jdk15/hpux-pa_risc2.0w/libprofilerinterface.sl", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Java/Support/VisualVM.bundle/Contents/Home/profiler3/lib/deploy ed/jdk15/hpux-pa_risc2.0w/libprofilerinterface.sl".
    Permissions differ on "System/Library/Java/Support/VisualVM.bundle/Contents/Home/profiler3/lib/deploy ed/jdk16/hpux-pa_risc2.0/libprofilerinterface.sl", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Java/Support/VisualVM.bundle/Contents/Home/profiler3/lib/deploy ed/jdk16/hpux-pa_risc2.0/libprofilerinterface.sl".
    Permissions differ on "System/Library/Java/Support/VisualVM.bundle/Contents/Home/profiler3/lib/deploy ed/jdk16/hpux-pa_risc2.0w/libprofilerinterface.sl", should be -rw-r--r-- , they are -rwxr-xr-x .
    Repaired "System/Library/Java/Support/VisualVM.bundle/Contents/Home/profiler3/lib/deploy ed/jdk16/hpux-pa_risc2.0w/libprofilerinterface.sl".
    Permissions differ on "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Classes/dt.jar", should be -rw-r--r-- , they are lrwxr-xr-x .
    Repaired "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Classes/dt.jar".
    Permissions differ on "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Classes/jce.jar", should be -rw-r--r-- , they are lrwxr-xr-x .
    Repaired "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Classes/jce.jar".
    Permissions differ on "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Classes/jconsole.jar ", should be -rw-r--r-- , they are lrwxr-xr-x .
    Repaired "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Classes/jconsole.jar ".
    Permissions differ on "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Classes/management-a gent.jar", should be -rw-r--r-- , they are lrwxr-xr-x .
    Repaired "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Classes/management-a gent.jar".
    User differs on "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Home/lib", should be 95, user is 0.
    Repaired "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Home/lib".
    Permissions differ on "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Home/lib/dt.jar", should be lrwxr-xr-x , they are -rw-r--r-- .
    Repaired "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Home/lib/dt.jar".
    Permissions differ on "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Home/lib/jce.jar", should be lrwxr-xr-x , they are -rw-r--r-- .
    Repaired "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Home/lib/jce.jar".
    Permissions differ on "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Home/lib/management- agent.jar", should be lrwxr-xr-x , they are -rw-r--r-- .
    Repaired "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Home/lib/management- agent.jar".
    Permissions differ on "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Home/lib/security/bl acklist", should be -rw-r--r-- , they are lrwxr-xr-x .
    Repaired "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Home/lib/security/bl acklist".
    User differs on "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Libraries", should be 95, user is 0.
    Repaired "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Libraries".
    Permissions differ on "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Resources/JavaPlugin Cocoa.bundle", should be drwxr-xr-x , they are lrwxr-xr-x .
    Repaired "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Resources/JavaPlugin Cocoa.bundle".
    Permissions differ on "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Resources/JavaPlugin Cocoa.bundle/Contents/Resources/Java/deploy.jar", should be -rw-r--r-- , they are lrwxr-xr-x .
    Repaired "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Resources/JavaPlugin Cocoa.bundle/Contents/Resources/Java/deploy.jar".
    Permissions differ on "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Resources/JavaPlugin Cocoa.bundle/Contents/Resources/Java/libdeploy.jnilib", should be -rwxr-xr-x , they are lrwxr-xr-x .
    Repaired "System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Resources/JavaPlugin Cocoa.bundle/Contents/Resources/Java/libdeploy.jnilib".
    ACL found but not expected on "private/etc/apache2/users".
    Repaired "private/etc/apache2/users".
    ACL found but not expected on "private/etc/postfix/main.cf".
    Repaired "private/etc/postfix/main.cf".
    ACL found but not expected on "private/etc/postfix/main.cf.default".
    Repaired "private/etc/postfix/main.cf.default".
    ACL found but not expected on "Library/Preferences/Audio".
    Repaired "Library/Preferences/Audio".
    ACL found but not expected on "Library/Preferences/com.apple.alf.plist".
    Repaired "Library/Preferences/com.apple.alf.plist".
    Permissions differ on "System/Library/Frameworks/JavaVM.framework/Versions/A/Resources/VisualVM.bundl e/Contents/Home/profiler3/lib/deployed/jdk15/hpux-pa_risc2.0/libprofilerinterfac e.sl", should be -rwxr-xr-x , they are -rw-r--r-- .
    Repaired "System/Library/Frameworks/JavaVM.framework/Versions/A/Resources/VisualVM.bundl e/Contents/Home/profiler3/lib/deployed/jdk15/hpux-pa_risc2.0/libprofilerinterfac e.sl".
    Permissions differ on "System/Library/Frameworks/JavaVM.framework/Versions/A/Resources/VisualVM.bundl e/Contents/Home/profiler3/lib/deployed/jdk15/hpux-pa_risc2.0w/libprofilerinterfa ce.sl", should be -rwxr-xr-x , they are -rw-r--r-- .
    Repaired "System/Library/Frameworks/JavaVM.framework/Versions/A/Resources/VisualVM.bundl e/Contents/Home/profiler3/lib/deployed/jdk15/hpux-pa_risc2.0w/libprofilerinterfa ce.sl".
    Permissions differ on "System/Library/Frameworks/JavaVM.framework/Versions/A/Resources/VisualVM.bundl e/Contents/Home/profiler3/lib/deployed/jdk16/hpux-pa_risc2.0/libprofilerinterfac e.sl", should be -rwxr-xr-x , they are -rw-r--r-- .
    Repaired "System/Library/Frameworks/JavaVM.framework/Versions/A/Resources/VisualVM.bundl e/Contents/Home/profiler3/lib/deployed/jdk16/hpux-pa_risc2.0/libprofilerinterfac e.sl".
    Permissions differ on "System/Library/Frameworks/JavaVM.framework/Versions/A/Resources/VisualVM.bundl e/Contents/Home/profiler3/lib/deployed/jdk16/hpux-pa_risc2.0w/libprofilerinterfa ce.sl", should be -rwxr-xr-x , they are -rw-r--r-- .
    Repaired "System/Library/Frameworks/JavaVM.framework/Versions/A/Resources/VisualVM.bundl e/Contents/Home/profiler3/lib/deployed/jdk16/hpux-pa_risc2.0w/libprofilerinterfa ce.sl".
    ACL found but not expected on "System/Library/Keychains/X509Anchors".
    Repaired "System/Library/Keychains/X509Anchors".
    ACL found but not expected on "private/etc/hostconfig".
    Repaired "private/etc/hostconfig".
    ACL found but not expected on "private/var/db/launchd.db/com.apple.launchd".
    Repaired "private/var/db/launchd.db/com.apple.launchd".
    ACL found but not expected on "private/var/yp/binding".
    Repaired "private/var/yp/binding".
    Permissions repair complete

Maybe you are looking for

  • How to set thumbnailUrl and/or thumbnailLocation?

    Hi... I have now been struggling how to set the URL or location for the thumbnail, when packaging a book... PS. The thumbnail is already uploaded to a location I know the path to: This is my XML request (bolded text are examples): [thumbnailLocation

  • How do you update the ios 4.3?

    i am trying to get my ipod touch 2nd gen to download something and it says ''update required ios 4.3'' what do i do?

  • Update a block without navigating to it.

    I have a table with several integers in it and a Form that reads the table. The Form has to translate the integers into things the user wants to see, so I hide the actual database field, do a translation into the user friendly string and display it i

  • 2015 mazda cx-5 bluetooth issues

    I just purchased a 2015 Mazda CX-5.  I have an iPhone 6 and every time I get into the car, the bluetooth downloads my phone contacts.  Shouldn't it remember my contacts?  Why is it having to download every time?  It's annoying to have to wait for thi

  • Volume set to zero but music still plays

    Just as described in the subject, I set the volume to zero but I can still hear the music. Happens with each and every song. Problem is - this lowest volume setting is a bit too high for me. So this is pretty annoying. My common sense says that ZERO