How to  role back when one command in failed in batch

Hi,
first my doubt is
if one command is failed in batch statement entire batch will fail or only that is failed
if only corresponding is failed then how to role back entire batch
String sql = "DELETE FROM table1 where row1=1";
String sql1= "DELETE FROM table2 where row2=2";
st=con.createStatement();
st.addBatch(sql);
st.addBatch(sql1);
st.executeBatch();
con.commit();
with regards

Hi,
Where are you executing the SQL staements.
If you are writing a Oracle procedure then after each DELETE you can have a SQL%ROWCOUNT , if it is not > 0 then you can rollback THE TRANSACTION.
thanks
Message was edited by:
hkandpal

Similar Messages

  • How to suppress row when one column has zero  using condition

    Hi Experts,
    How do I suppress row when one column has zero.
    I read it is possible using conditions.
    How ?
    Thankyou.

    Check this
    1. for Query Properties, go to the Display tab and Supress Zeros is "Active"
    2. select the Structure, right-click, select Properties, then click "on" Also Use Zero Suppression for Structure Elements
    http://help.sap.com/saphelp_nw04/helpdata/en/a4/dd3841d132d92be10000000a1550b0/frameset.htm
    Hope it Helps
    Chetan
    @CP..

  • How to send more than one command at the same time to write buffer in VISA READ?

    Hi,
    I'm using the LABVIEW->serial.VI with a small modification for my serial communication with a shutter control unit.At present,I can send one command CTSO1 to the write buffer.My instrument can read upto 5 commands.I want to send CTSO1 and CTSO2 simulatenouly so that i could open two shutters simulatenously.Note that commands have carraige return constants as terminatting characters.I'm enclsoing the VI which works for one command.
    Any help in this regard is greatly appreciated!
    Regards,
    Rajesh
    Attachments:
    VI_SHUTTER_JUNE30.vi ‏50 KB

    You cannot do two different simultaneous VISA writes over a serial bus. There is a single rx line on the pc's com port and a single rx line on the instrument. You only hope is if the instrument allows you to chain commands and the reception of the carriage return triggers the instrument to implement both at the same time. Maybe you can send CTS01 and CTS02 separated by a space or comma. The manual should tell you if that's possible or maybe you need to ask the manufacturer.

  • How to roll back when procedure fails

    Hi All,
    In my process using procedures i am droping the temp tables and creating temp tables ,if any procedures fails how should roll back all the process
    Procedure1(droping tables)----->procedure2(creating table1)--------->procedure3(creating table2)------->procedure4(Validaating accounts in table2 and creating seperate table)
    Any suggestion please
    Thanks in Advance

    Let's say in your package you have your 4 procedures (Proc1, Proc2, Proc3, Proc4).
    Also create 3 additional procedures:
    RollBack1 -> Does the opposite to Proc1 (i.e. if Proc1 drops a table, then Rollback1 will create it)
    RollBack2 -> Does the opposite to Proc2
    RollBack3 -> Does the opposite to Proc3
    Your logic will be:
    If Proc1 is successful, then execute Proc2.
    If Proc1 is unsuccessful, then end.
    If Proc2 is successful, then execute Proc3.
    If Proc2 is unsuccessful, then use an on failure path (red line) to execute RollBack1.
    If Proc3 is successful, then execute Proc4.
    If Proc3 is unsuccessful, then use an on failure path (red line) to execute RollBack2, followed by RollBack1.
    If Proc4 is successful, then end.
    If Proc4 is unsuccessful, then use an on failure path (red line) to execute RollBack3, followed by RollBack2, followed by RollBack1.
    It mightn't be necessary to undo everything - but you'll know your own business needs to make a decision on that.

  • How to send alert when receiver JMS adapter fails? Please help!

    Hi experts,
       I have the following Asynchronous scenario:
       SAP R/3 -
    >IDOC----->XI>JMS--->BizTalk.
       I am sending IDOC from a given SAP R/3 system to XI. XI then sends the same to BizTalk via JMS adapter. In SXMB_MONI the message is successfully processed as it shows checked flag. But if I see the JMS communication channel status in runtime workbench then there it shows error saying JMS queue user id or password not found.
    How to send this JMS adapter error as alert?
    I also tried configuring alert rule in runtime workbench but still it does not trigger any error.
    I have also verified the alert category and everything is fine with that.
    What could be the problem? How can I send an alert when an Async adapter fails?
    Thanks & Regards,
    Gopal

    Hi! GOPAL,
    Once make sure whther all the below mentioned steps are configured correctly or not ok
    1: First make sure whether you are working on SAP XI or PI 7.1
               a) If XI you need to create Alerts (ALert Category) in CCMS ABAP stack in the
                        Tcode. ALRTCATDEF
               b) Open the alert category/classification definition environment (transaction ALRTCATDEF).
         ensure you are in change mode.
               c) In the group box with the alert classifications, right-click All classifications to open the   
                    context menu, and choose Create.
               d) Under Classification, enter a name for the classification.
               e) Under Description, enter a description of the classification.
               f)  Save your entries.
               g) Then go to RWB-->Go to ALERT Configuation and ADD the RULES to your alert category gor 
         which created there in the abap stack.
    Note Suppose if you want those ALERTS to come to your MAIL then again go to ABAP STACK and go to Tcode.  ALRTCATDEF and select your alert category press FIxed Recepients and there give your SAP XI ID's then  u can see those alerts in RWB-->ALERT INBOX
    Suppoe if you want those to mail then ask the basis team to link your company mail or personal mail ID to your SAP ID.
    2. Supppose if you are working on PI 7.1 Server.
         Only difference is creating Alert Category...Here you can create your ALERT Classification I mean   
         alert caltegory in the ESR (Enterprise Service Repository )
         Software Component >S CVersion>NameSpace-->Alert Category.
         You can configure how u configure there in abap stack such as long and short text every thing 
          except Fixed Receipients you need to give that recepients there only in ABAP STACK.
          what ever ALERT CATEGORY you are creating will reflect there in the ABAP STACK
         even you can Use these alerts Category in BPM --> CONTROL STEP -->Configure here in this step
    You can also reach alerts like this.
    NOTE  Most Important point is You can also view your mails or Alerts in the T Code:: SOST.
    Regards:
    Amar Srinivas ELi

  • How to execute more than one command in a Process

    Hello all,
    I would like to change the user in my application by
    using the unix command su user and then execute some commands as this user.My code is the following, my problem is to execute other commands after execute the su command.
    public static void main(String [] args)
    try
    Runtime r = Runtime.getRuntime();
    String msg = "";
    String emsg = "";
    int len = 0;
    byte buffer [] = new byte[100];
    Process p1 = r.exec(new String [] "su","user"});
    InputStream input = p1.getErrorStream();
    len = input.read(buffer);
    System.out.println(new String(buffer,0,len));
    OutputStream out = p1.getOutputStream(); String password = "password";     
    out.write(password.getBytes());
    out.flush();
    out.close();
    System.out.println(password);
    p1.destroy();
    catch(Exception e)
    System.out.println(e.toString());

    For those of you who are "shell challenged", here's a Java program that will tell you how the shell interprets the command and argument you give it:
    public class RuntimeHelper {
        public static void main(String[] args) {
            for (int i = 0; i < args.length; i++)
                System.out.println(args);
    When you run the program with
    java RuntimeHelper su username -c "cmd arg1 arg2"
    the output is:
    su
    username
    -c
    cmd arg1 arg2
    Each line shows one argument that the shell passed to the java command.

  • How do I back up one External Hard Drive to another?

    I have two identical partitioned WD External Drives.  Drive 1, Partition 1 is a Macbook Pro Time Machine backup. Drive 1, Partition 2 is for photo & video storage uploaded directly from the camera or disk (so I don't overload my internal storage).  How do I backup Drive 1, Partition 1 & Partition 2 onto the partitioned External Drive 2? 

    I should back up my Internal Hard Drive directly to each of the 2 external Hard Drives, right?
    Yes.
    Since the External HD's are typically not plugged into the computer, should I not use Time Machine?
    When the drives are connected, the backups will take place. If you rarely connect the drives, then you should also back up over the network to a Time Capsule, a hard drive connected to a current-model AirPort base station, or another Mac via File Sharing.
    See also:
    Mac Basics: Time Machine backs up your Mac
    iPhoto: How to move the Library folder to a new location
    iTunes for Mac: Moving your iTunes Media folder

  • How do I back up one hard drive onto another hard drive regularly

    I have two Western Digital passport harddrives.  I am using a MacBook Pro. One with about 400 GB's of media on it and the other of which I want an exact copy.  For the first run, I am just drag/dropping the files but dont want to do this everytime I need updated backup.  Is there a solution for harddrive 2 to copy exactly what has changed on harddrive 1 without deleting 2, and dragging all the files from 1 back over? I am looking for a solution without the obvious "just drag files you chaged over"
    Thanks in advance

    use cloning software, .....see here for ALL options:
    however  "dragging over changed files" is what I do, and I have an ENORMOUS file collection.
    The easy way is to make fresh rotating HD CLONES  (see below)
    Methodology to protect your data. Backups vs. Archives. Long-term data protection
    Data Storage Platforms; their Drawbacks & Advantages
    #1. Time Machine / Time Capsule
    Drawbacks:
    1. Time Machine is not bootable, if your internal drive fails, you cannot access files or boot from TM directly from the dead computer.
    OS X Lion, Mountain Lion, and Mavericks include OS X Recovery. This feature includes all of the tools you need to reinstall OS X, repair your disk, and even restore from a Time Machine
    "you can't boot directly from your Time Machine backups"
    2. Time machine is controlled by complex software, and while you can delve into the TM backup database for specific file(s) extraction, this is not ideal or desirable.
    3. Time machine can and does have the potential for many error codes in which data corruption can occur and your important backup files may not be saved correctly, at all, or even damaged. This extra link of failure in placing software between your data and its recovery is a point of risk and failure. A HD clone is not subject to these errors.
    4. Time machine mirrors your internal HD, in which cases of data corruption, this corruption can immediately spread to the backup as the two are linked. TM is perpetually connected (or often) to your computer, and corruption spread to corruption, without isolation, which TM lacks (usually), migrating errors or corruption is either automatic or extremely easy to unwittingly do.
    5. Time Machine does not keep endless copies of changed or deleted data, and you are often not notified when it deletes them; likewise you may accidently delete files off your computer and this accident is mirrored on TM.
    6. Restoring from TM is quite time intensive.
    7. TM is a backup and not a data archive, and therefore by definition a low-level security of vital/important data.
    8. TM working premise is a “black box” backup of OS, APPS, settings, and vital data that nearly 100% of users never verify until an emergency hits or their computers internal SSD or HD that is corrupt or dead and this is an extremely bad working premise on vital data.
    9. Given that data created and stored is growing exponentially, the fact that TM operates as a “store-it-all” backup nexus makes TM inherently incapable to easily backup massive amounts of data, nor is doing so a good idea.
    10. TM working premise is a backup of a users system and active working data, and NOT massive amounts of static data, yet most users never take this into consideration, making TM a high-risk locus of data “bloat”.
    11. In the case of Time Capsule, wifi data storage is a less than ideal premise given possible wireless data corruption.
    12. TM like all HD-based data is subject to ferromagnetic and mechanical failure.
    13. *Level-1 security of your vital data.
    Advantages:
    1. TM is very easy to use either in automatic mode or in 1-click backups.
    2. TM is a perfect novice level simplex backup single-layer security save against internal HD failure or corruption.
    3. TM can easily provide a seamless no-gap policy of active data that is often not easily capable in HD clones or HD archives (only if the user is lazy is making data saves).
    #2. HD archives
    Drawbacks:
    1. Like all HD-based data is subject to ferromagnetic and mechanical failure.
    2. Unless the user ritually copies working active data to HD external archives, then there is a time-gap of potential missing data; as such users must be proactive in archiving data that is being worked on or recently saved or created.
    Advantages:
    1. Fills the gap left in a week or 2-week-old HD clone, as an example.
    2. Simplex no-software data storage that is isolated and autonomous from the computer (in most cases).
    3. HD archives are the best idealized storage source for storing huge and multi-terabytes of data.
    4. Best-idealized 1st platform redundancy for data protection.
    5. *Perfect primary tier and level-2 security of your vital data.
    #3. HD clones (see below for full advantages / drawbacks)
    Drawbacks:
    1. HD clones can be incrementally updated to hourly or daily, however this is time consuming and HD clones are, often, a week or more old, in which case data between today and the most fresh HD clone can and would be lost (however this gap is filled by use of HD archives listed above or by a TM backup).
    2. Like all HD-based data is subject to ferromagnetic and mechanical failure.
    Advantages:
    1. HD clones are the best, quickest way to get back to 100% full operation in mere seconds.
    2. Once a HD clone is created, the creation software (Carbon Copy Cloner or SuperDuper) is no longer needed whatsoever, and unlike TM, which requires complex software for its operational transference of data, a HD clone is its own bootable entity.
    3. HD clones are unconnected and isolated from recent corruption.
    4. HD clones allow a “portable copy” of your computer that you can likewise connect to another same Mac and have all your APPS and data at hand, which is extremely useful.
    5. Rather than, as many users do, thinking of a HD clone as a “complimentary backup” to the use of TM, a HD clone is superior to TM both in ease of returning to 100% quickly, and its autonomous nature; while each has its place, TM can and does fill the gap in, say, a 2 week old clone. As an analogy, the HD clone itself is the brick wall of protection, whereas TM can be thought of as the mortar, which will fill any cracks in data on a week, 2-week, or 1-month old HD clone.
    6. Best-idealized 2nd platform redundancy for data protection, and 1st level for system restore of your computers internal HD. (Time machine being 2nd level for system restore of the computer’s internal HD).
    7. *Level-2 security of your vital data.
    HD cloning software options:
    1. SuperDuper HD cloning software APP (free)
    2. Carbon Copy Cloner APP (will copy the recovery partition as well)
    3. Disk utility HD bootable clone.
    #4. Online archives
    Drawbacks:
    1. Subject to server failure or due to non-payment of your hosting account, it can be suspended.
    2. Subject, due to lack of security on your part, to being attacked and hacked/erased.
    Advantages:
    1. In case of house fire, etc. your data is safe.
    2. In travels, and propagating files to friends and likewise, a mere link by email is all that is needed and no large media needs to be sent across the net.
    3. Online archives are the perfect and best-idealized 3rd platform redundancy for data protection.
    4. Supremely useful in data isolation from backups and local archives in being online and offsite for long-distance security in isolation.
    5. *Level-1.5 security of your vital data.
    #5. DVD professional archival media
    Drawbacks:
    1. DVD single-layer disks are limited to 4.7Gigabytes of data.
    2. DVD media are, given rough handling, prone to scratches and light-degradation if not stored correctly.
    Advantages:
    1. Archival DVD professional blank media is rated for in excess of 100+ years.
    2. DVD is not subject to mechanical breakdown.
    3. DVD archival media is not subject to ferromagnetic degradation.
    4. DVD archival media correctly sleeved and stored is currently a supreme storage method of archiving vital data.
    5. DVD media is once written and therefore free of data corruption if the write is correct.
    6. DVD media is the perfect ideal for “freezing” and isolating old copies of data for reference in case newer generations of data become corrupted and an older copy is needed to revert to.
    7. Best-idealized 4th platform redundancy for data protection.
    8. *Level-3 (highest) security of your vital data. 
    [*Level-4 data security under development as once-written metallic plates and synthetic sapphire and likewise ultra-long-term data storage]
    #6. Cloud based storage
    Drawbacks:
    1. Cloud storage can only be quasi-possessed.
    2. No genuine true security and privacy of data.
    3. Should never be considered for vital data storage or especially long-term.
    4. *Level-0 security of your vital data. 
    Advantages:
    1. Quick, easy and cheap storage location for simplex files for transfer to keep on hand and yet off the computer.
    2. Easy source for small-file data sharing.
    #7. Network attached storage (NAS) and JBOD storage
    Drawbacks:
    1. Subject to RAID failure and mass data corruption.
    2. Expensive to set up initially.
    3. Can be slower than USB, especially over WiFi.
    4. Mechanically identical to USB HD backup in failure potential, higher failure however due to RAID and proprietary NAS enclosure failure.
    Advantages:
    1. Multiple computer access.
    2. Always on and available.
    3. Often has extensive media and application server functionality.
    4. Massive capacity (also its drawback) with multi-bay NAS, perfect for full system backups on a larger scale.
    5. *Level-2 security of your vital data.
    JBOD (just a bunch of disks / drives) storage
    Identical to NAS in form factor except drives are not networked or in any RAID array, rather best thought of as a single USB feed to multiple independent drives in a single powered large enclosure. Generally meaning a non-RAID architecture.
    Drawbacks:
    1. Subject to HD failure but not RAID failure and mass data corruption.
    Advantages:
    1. Simplex multi-drive independent setup for mass data storage.
    2. Very inexpensive dual purpose HD storage / access point.
    3. *Level-2 security of your vital data.

  • How to get back the previous command?

    Can I re-enter the previous commands using things like up arrow? Is the command history kept in SQL*Plus?
    Jirong

    Please review the documentation.
    http://download-west.oracle.com/docs/cd/B14117_01/server.101/b12170/toc.htm

  • How to roll back if one of my sql transaction fails?

    I want to insert record into 2 tables at the same time and they must be added both or neither, how to do this in Java? I'm using SQL Server.
    Thanks!

    You can actually handle this directly IN SQL Server.
    For example, this is SQL for SQL Server 7.
    BEGIN TRANSACTION
    Update ....
    COMMIT
    SQL Server will automatically update the table if it reaches the Commit keyword.

  • How to backup data when hard drive is failing.

    I think my hard drive is failing..
    I booted using Install DVD, and got message in Disc Utility that "this drive has a hardware problem that can't be repaired." It mentioned I should backup data and consult apple representative..
    I clicked on Macintosh HD under the red physical drive (500.11 GB Hitachi HTS) and did disc repair.
    Strangely, the message went away on the physical drive when I finished.  It turned back to black wording and gave green "verified/repaired" messages in the log.
    I am still able to boot my macbook, although everything is running slowly... Desktop excel files take 15 mins to open.
    Does this still sound like a failing hard drive?
    I am trying to act fast and borrowed my sister's external harddrive/ "passport for mac", and it slowly prompted a time machine backup. It is slowly working through "8.34GB of 200.33GB"
    I do not really understand what I am doing, but hoping this is the right move. Could someone explain what time machine will do or how it will help?
    Is there any chance I will harm her external hd?
    I am mostly worried about iPhoto and itunes library, iMovie projects,and important excel spreadsheets on my desktop. Is time machine looking after these concerns?
    Any help greatly appreciated.

    Where is you TM backup?
    Where are your external data redundancies?
    Now you will need to use very expensive data recovery experts to recover data when you could have had it safely on a $100 worth of 2 external HD.  
    Mechanical HD failure circumvents using recovery software.......so,  now you backed yourself into a corner and needed expensive data expert recovery.
    You took a wrong turn a long while back before reaching this cliff edge.
    that wrong term was not having (preferably 2) external HD as a redundant data archive.

  • How to  make rman to execute remaining cmds in file when one cmd failed

    Hi All,
    I have couple of commands to execute in a file, meanwhile if one command fails with error then rman terminates and did not executing remaining commands in file. How can I make rman to execute remaining commands even when one command failed with errors.
    Thanks and Regards,
    Sandeep.

    Write a shell script for Linux or batch for Windows. For example;
    ORACLE_HOME=/oracle/ora11g
    ORACLE_SID=TEST
    TMPDIR=/tmp
    TMPLOG=${TMPDIR}/RMANtmplog.$$
    $ORACLE_HOME/bin/rman log=$TMPLOG << EOF1
    connect target /
    run
    crosscheck backup of database ;
    exit
         EOF1
    RESULT=$?
    if [ $RESULT -ne "0" ]; then
    echo "FAILED RMAN crosschek command"
    else
    $ORACLE_HOME/bin/rman log=$TMPLOG << EOF2
    connect target /
    run
    delete noprompt expired backup of database ;
    exit
         EOF2
    fi
    Talip Hakan Ozturk
    http://taliphakanozturken.wordpress.com/

  • How to back up one mac to an external using another mac

    I want to back up my old MacBook Pro onto an external hard drive. The old MacBook Pro is bad shape, hard to use in normal mode. The apple store genius told me I could use my new MacBook Air as a conduit for this back up. I purchased a FireWire cable with a Thunderbolt adapter for this purpose. I was attempting to use Migration Assistant to accomplish this back up, putting the old MacBook Pro in Target Disk mode, but from what I've read on these forums, mainly this article: Mac OS X v10.6: How to use Migration Assistant to transfer files from another Mac, it doesn't seem possible to back up onto an external given the options I am given in the process. So my question is (A) how do I back up one macbook in target disk mode onto an external using a second macbook as a conduit, and (B) is it possible to simply back up the old MacBook Pro while in Target Disk or Safe modes? Thanks so much for any help.

    I've not tried using Migration Assistant before so i'm not sure on that. But if you put the old Mac in Target Disk mode and connect the working Mac to that it should show as an external drive, then connect your external HDD to the working Mac, open both drives and simply copy the data over or use your favourite backup software to do it.

  • Oracle RAC with QFS shared storage going down when one disk fails

    Hello,
    I have an oracle RAC on my testing environment. The configuration follows
    nodes: V210
    Shared Storage: A5200
    #clrg status
    Group Name Node Name Suspended Status
    rac-framework-rg host1 No Online
    host2 No Online
    scal-racdg-rg host1 No Online
    host2 No Online
    scal-racfs-rg host1 No Online
    host2 No Online
    qfs-meta-rg host1 No Online
    host2 No Offline
    rac_server_proxy-rg host1 No Online
    host2 No Online
    #metastat -s racdg
    racdg/d200: Concat/Stripe
    Size: 143237376 blocks (68 GB)
    Stripe 0:
    Device Start Block Dbase Reloc
    d3s0 0 No No
    racdg/d100: Concat/Stripe
    Size: 143237376 blocks (68 GB)
    Stripe 0:
    Device Start Block Dbase Reloc
    d2s0 0 No No
    #more /etc/opt/SUNWsamfs/mcf
    racfs 10 ma racfs - shared
    /dev/md/racdg/dsk/d100 11 mm racfs -
    /dev/md/racdg/dsk/d200 12 mr racfs -
    When the disk /dev/did/dsk/d2 failed (I have failed it by removing from the array), the oracle RAC went offline on both nodes, and then both nodes paniced and rebooted. Now the #clrg status shows below output.
    Group Name Node Name Suspended Status
    rac-framework-rg host1 No Pending online blocked
    host2 No Pending online blocked
    scal-racdg-rg host1 No Online
    host2 No Online
    scal-racfs-rg host1 No Online
    host2 No Pending online blocked
    qfs-meta-rg host1 No Offline
    host2 No Offline
    rac_server_proxy-rg host1 No Pending online blocked
    host2 No Pending online blocked
    crs is not started in any of the nodes. I would like to know if anybody faced this kind of a problem when using QFS on diskgroup. When one disk is failed, the oracle is not supposed to go offline as the other disk is working, and also my qfs configuration is to mirror these two disks !!!!!!!!!!!!!!
    Many thanks in advance
    Ushas Symon

    I'm not sure why you say QFS is mirroring these disks!?!? Shared QFS has no inherent mirroring capability. It relies on the underlying volume manager (VM) or array to do that for it. If you need to mirror you storage, you do it at the VM level by creating a mirrored metadevice.
    Tim
    ---

  • How to set role which can issue only one command

    I am thinking about setting role, which will be allowed to issue olny one command. I have created role test. Which has the following entries in the following files:
    /etc/user_attr
    test::::profiles=OneCommand;type=role
    /etc/security/exec_attr
    OneCommand:solaris:cmd:::/tmp/data.sh:euid=0
    After this I sill could issue all comands, not only test command /tmp/data.sh.
    When I issued comand profiles on test role I received the following:
    bash-3.00$ profiles test
    OneCommand
    Basic Solaris User
    All
    So I commented line in the /etc/policy.conf to read:
    #PROFS_GRANTED=Basic Solaris User
    After that, when I try to issue /tmp/data.sh command as a test role I receive the following error:
    $ /tmp/data.sh
    pfexec: Exec format error
    Does anybody know how to set up the role which can issue only one command ? Maybe there is a way to do this in the way which wil not affect another roles (ie, not to touch /etc/policy.conf).
    Best regards

    RadekW wrote:
    I am thinking about setting role, which will be allowed to issue olny one command. I have created role test. Which has the following entries in the following files:They will need the ability to run at least a profile shell otherwise all bets are off. So now you're down to two commands. :-)
    bash-3.00$ profiles test
    OneCommand
    Basic Solaris User
    AllFirst you need to define what already exists by default. (policy.conf)
    Then you get to change those defaults or create a new default list just for test.
    Then you get to add a role or profile for test that allows the execution of a profile shell and one command.
    Then you should test all of the user accounts to ensure that something didn't break. This step might be a little overkill.
    alan

Maybe you are looking for

  • What is OJVM and why do I need it?

    When I reinstalled JDeveloper it asked if I wanted to use OJVM. Thinking it to be improtant I hit ok. Cna anyone explain what it is?

  • Error while creating Infoset Creation

    Hi All, I've created an infoset using a program and data structure. But while generating the infoset this below mesg was getting as error: Generation Error--> Data Retrival Program--> Commentary <Query_head> or <Query_body> is missing. Please guide m

  • How can I revert to 10.4.9 from 10.4.10

    I use Dolbe Ditigal Edition for work and ever since I updated from 10.4.9 to 10.4.10 it crashes every time I try to open a file. When I look at the system requierments on the adobe page, http://www.adobe.com/products/digitaleditions/systemreqs/ it sa

  • SPNego - LOGIN.FAILED error

    Hello, Hello gurus, we have installed BI 7.0 SP15 with Portal as the java side of the BI (double stack). We have CI + 3 dia instances. We get the following error only on the CI server: LOGIN.FAILED User: N/A Authentication Stack: com.sun.security.jgs

  • Making the Basic Start Date in PM order Mandatory

    Team, we created a new PM order type per user requirements. One problem we have is to make the Basic start date field mandatory.Can any one propose how we can make make the basic start date mandatory ?