Error in the pl/sql process

Hi guru

I get the error message like: -.

"1 error has occurred."
ORA-06550: line 6, column 32: PLS-00103: encountered the symbol "&" when expecting one of the following values :), * & - + / in rem rest mod and/or as | multiset.


BEGIN

IF (: P3_ID! = null & &: P3_ID! = ") THEN
INSERT
ON THE OTHER
INSERT
END IF;

END;


I get the error under the present: - < b > (: P3_ID! = null & &: P3_ID! = ") < /b >, I am writing to you as: - < b > (: P3_ID! = null) < /b > the pl/sql process works very well, so how can specify two different conditions with & & operators in the middle.


Thanks for your help


Kind regards
Kumar

In my opinion, as AND would be the correct logical operator.
Why not just use a declarative validation? Also, I don't think you can compare to NULL - you can say whether a value IS NULL or IS NOT NULL.

Georger

gkkumar wrote:
Hi guru

I get the error message like: -.

"1 error has occurred."
ORA-06550: line 6, column 32: PLS-00103: encountered the symbol "&" when expecting one of the following values :), * & - + / in rem rest mod and/or as | multiset.

BEGIN

IF (: P3_ID! = null &: P3_ID! = ") THEN
INSERT
ON THE OTHER
INSERT
END IF;

END;

I get the error under the present:- (: P3_ID! = null &: P3_ID! = "), if I write like:- (: P3_ID! = null) pl/sql process works very well, so how can specify two different conditions with & operators in the middle.

Thanks for your help

Kind regards
Kumar

Tags: Database

Similar Questions

  • Errors in the schema SQL TestStand 4.1.1

    I am trying to create a new MSDE 2005 SQL Server database using the new schema of TestStand 4.1.1. I've used the SQL Server stored procedure to generate a .sql file, and then run this SQL file. I get several errors similar to the following:

    > CREATE TABLE STEP_RESULT (ID uniqueidentifier PRIMARY KEY, UUT_RESULT uniqueidentifier, STEP_PARENT uniqueidentifier, int ORDER_NUMBER, STEP_NAME varchar (255), STEP_TYPE varchar (255), STEP_GROUP varchar (32), STEP_INDEX int, STEP_ID varchar (32), STATUS varchar (255), REPORT_TEXT varchar (255), int, varchar ERROR_MESSAGE ERROR_CODE (255), CAUSED_SEQFAIL bit, MODULE_TIME float, float TOTAL_TIME) Int NUM_PASSED int NUM_LOOPS, int NUM_FAILED, int ENDING_LOOP_INDEX, int LOOP_INDEX, int INTERACTIVE_EXENUM, CONSTRAINT STEP_RESULT_FK FOREIGN KEY (UUT_RESULT) REFERENCES (ID))
    Command failed with the following error...:
    Line 1: Syntax incorrect close '('.) (- 2147217900)

    I tried to run this statement in both MSDE and through the viewer of TestStand database with similar results. Everyone knows this problem or have any ideas?

    Function to generate the SQL files from a schema does not always perfect SQL statements, but closer you get to where you need to be to try to create it from scratch. Have you thought to look at the default SQL files included with the product, specifically the file "SQL Server Create Stored Proc result Tables.sql" located in the directory "\Components\Models\TestStandModels\Database?" It is a file that should work out of the box for the default schemas for SQL server and MSDE. Other SQL files for other schemas by default, and there are older SQL files for previous versions in the subdirectory 'previous patterns (2.x - 4.0).

  • Analyze the error in the application of process

    Hi all

    I use APEX 4.2.5 and I have a request of processes that extract the data from table.

    I use the solution of Jitendra from this link

    Error in ajax on request process?

    Everything goes perfect until recently, I got strange error that occurred occasionally as below.

    APEX-ParseError.jpg

    I tried to investigate and find the data I got contains the 'character as the sample data below.

    AU - 1, 9 "CAB, #95

    I tried to remove the 'character, the error does not appear.

    My question is how to escape the "character without changing the data.

    Thanks and regards,

    Troy.

    Lagi Troy wrote:

    I use APEX 4.2.5 and I have a request of processes that extract the data from table.

    I use the solution of Jitendra from this link

    Error in ajax on request process?

    Everything goes perfect until recently, I got strange error that occurred occasionally as below.

    I tried to investigate and find the data I got contains the 'character as the sample data below.

    AU - 1, 9 "CAB, #95

    I tried to remove the 'character, the error does not appear.

    My question is how to escape the "character without changing the data.

    Run the data retrieved using apex_javascript.escape before transmission in JSON format.

  • Declarations of error in the PL/SQL Code

    Hi all:

    I have a routine of PL/SQL that I need to add "Error Statements" in case something thing errors when it is run, the user will know and be able to solve the problem. Here's a copy of what I need to run. Is a unique it will only be run once and when it is finished without error, it will not be used again, but when it ran inside TOAD / TORA / SQLPlus, how to display an error to the user in case something goes wrong? I know it's probably a very simple thing to do, but I come from SQL Server and only learn PL/SQL - Oracle and I do not know how to do this. Any help would be greatly appreciated.

    DECLARE
    -----------------------------------------------------------------------------------------------
    -Local Variables
    -----------------------------------------------------------------------------------------------
    l_gm_master_label VARCHAR2 (20);
    l_active_flag VARCHAR2 (1);
    l_currdate DATE;
    l_comp_id VARCHAR2 (10);
    l_site_id VARCHAR2 (12);
    l_gm_master_id NUMBER;
    BEGIN
    -----------------------------------------------------------------------------------------------
    -Set default values
    -----------------------------------------------------------------------------------------------
    l_gm_master_label: = 'DMLogic001 ';
    l_active_flag: = 'n';
    l_currdate: = SYSDATE;
    l_comp_id: = 'XE ';
    l_site_id: = "OHIO."
    l_gm_master_id: = 0;
    -----------------------------------------------------------------------------------------------
    -Get the next value
    -----------------------------------------------------------------------------------------------
    SELECT
    trn_gm_master_seq. NEXTVAL
    IN
    l_gm_master_id
    Of
    Double;
    -----------------------------------------------------------------------------------------------
    -Insert generic Gray number master record who will join all the serial numbers DMLogic
    -----------------------------------------------------------------------------------------------
    INSERT INTO ebiznet.trn_gm_master
    (gm_master_id,
    gm_master_label,
    active_flag,
    CURRDATE,
    identifiant_composant,
    Site_ID)
    VALUES
    (l_gm_master_id,
    l_gm_master_label,
    l_active_flag,
    l_currdate,
    l_comp_id,
    l_site_id);
    -----------------------------------------------------------------------------------------------
    -Insert the records
    -----------------------------------------------------------------------------------------------
    INSERT INTO ebiznet.trn_gm_serial_number
    (gm_serial_number_id,
    gm_master_id,
    gm_serial_number,
    received_by,
    received_date,
    picked_by,
    picked_date,
    ebiz_sku_no,
    identifiant_composant,
    Site_ID,
    ebiz_ord_no,
    interface_date)
    SELECT
    trn_gm_serial_number_seq. NEXTVAL,
    l_gm_master_id,
    S.Serial_number,
    1,
    S.CREATION_DATE,
    1,
    S.CREATION_DATE,
    S.ebiz_sku_no,
    l_comp_id,
    l_site_id,
    O.ebiz_ord_no,
    S.interface_date
    Of
    dmlogic.trn_rm_serial_number S
    INNER JOIN ebiznet.trn_ordhead O ON S.ord_no is O.ord_no;.
    ----------------------------------------------------------------------------------------------
    -Commit the changes
    ----------------------------------------------------------------------------------------------
    COMMIT;
    -----------------------------------------------------------------------------------------------
    -Rollback If an error occurred
    -----------------------------------------------------------------------------------------------
    EXCEPTION
    WHILE OTHERS THEN
    ROLLBACK;
    END;

    Remove WHEN OTHERS will allow exceptions to access the user and halt execution. You get a descriptive message and the line in PL/SQL, where it has occurred.

    In very rare occasions when OTHERS WHEN is inevitable, RAISE re-lift the exception and stop running.

    You can increase your own exceptions to conditions specific to your application with RAISE_APPLICATION_ERROR(). (Syntax and parameters can be found in the documentation)

  • Runtime error in the model of process and sequence still happening

    I do initialization custom in the process template (in the recall of ProcessSetup). I call a .NET module which can throw an exception in certain error conditions. This causes him the process model to access the cleaning section of the process model (not the client sequence files cleaning) and that's okay. The problem I have is that I'm in my UI of the event AxAppMgr_ExecutionEnded and e. ResultStatus property argument exec indicates "success." I want that it says 'Error' or 'Incomplete' or something other than the past. The sequence of client never ran at all. While she had no failures, he could spend.

    How can I force the State to 'Error' or something other than "success"?

    Before check Execution.ResultStatus, you can check Execution.ErrorObject to see if an error has occurred and to obtain if necessary error information.

    Do something like:

    ErrorObject PropertyObjectPtr = run-> GetErrorObject();

    If (errorObject-> Exists ("occurred", 0) & errorObject-> GetValBoolean ("occurred", 0))

    {

    _bstr_t msg = errorObject-> GetValString ("Msg", 0);

    Add some other code you want here.

    }

    Hope this helps,

    -Doug

  • Error in the PL/SQL procedure

    Kindly suggest how to correct the error in below given procedure
    
    DECLARE
       l_error   VARCHAR2 (4000);
    BEGIN
       FOR i IN 1 .. apex_application.g_f02.COUNT
       LOOP
          IF   (apex_application.g_f18(i)) IS NOT NULL
           AND (apex_application.g_f19(i)) IS NULL
           AND (apex_application.g_f20(i)) IS NULL
           AND (apex_application.g_f21(i)) IS NULL
          THEN
             l_error :=' Enter values for column  19,20,21 ';
          END IF;
       END LOOP;
     
       RETURN (l_error);
    END;
     
    I get the error - In a procedure, RETURN statement cannot contain an expression

    user12957777 wrote:

    Kindly suggest how to correct the error in below given procedure
    
    DECLARE
    l_error   VARCHAR2 (4000);
    BEGIN
    FOR i IN 1 .. apex_application.g_f02.COUNT
    LOOP
    IF   (apex_application.g_f18(i)) IS NOT NULL
    AND (apex_application.g_f19(i)) IS NULL
    AND (apex_application.g_f20(i)) IS NULL
    AND (apex_application.g_f21(i)) IS NULL
    THEN
    l_error :=' Enter values for column  19,20,21 ';
    END IF;
    END LOOP;
    
    RETURN (l_error);
    END;
    
    I get the error - In a procedure, RETURN statement cannot contain an expression
    

    You are in an anonymous PL/SQL block. By definition, they cannot return no matter what... you create a function if you want to use a RETURN order you are trying.

  • Error in the pl/sql block using associative arrays

    Hello
    I tried the following block of code using associative arrays.
    DECLARE
       TYPE NumTab IS TABLE OF NUMBER INDEX BY BINARY_INTEGER;
       CURSOR c1 IS SELECT empno FROM emp;
       empnos NumTab;
       rows   NATURAL := 10;
    BEGIN
       OPEN c1;
       FOR i in empnos.first..empnos.last LOOP
          /* The following statement fetches 10 rows (or less). */
          FETCH c1 BULK COLLECT INTO empnos LIMIT rows;
          EXIT WHEN c1%NOTFOUND;
          DBMS_OUTPUT.PUT_LINE ( empnos.next(i)); 
       END LOOP;
       CLOSE c1;
    END;
    and the error is
    DECLARE
    *
    ERROR at line 1:
    ORA-06502: PL/SQL: numeric or value error
    ORA-06512: at line 8
    could you please let me know where I am going wrong
    and please guide me where we use these associative arrays.

    Thank you

    Try this

    DECLARE
       TYPE NumTab IS TABLE OF emp%rowtype INDEX BY PLS_INTEGER;
       CURSOR c1 IS SELECT * FROM emp;
       empnos NumTab;
       rows   INTEGER := 10;
    BEGIN
      OPEN C1;
      LOOP
        FETCH c1 BULK COLLECT INTO empnos LIMIT rows;
        EXIT WHEN c1%NOTFOUND;
    
        FOR i IN 1..empnos.count
        LOOP
          DBMS_OUTPUT.PUT_LINE(empnos(i).empno || '/' || empnos(i).ename);
        END LOOP;
      END LOOP;
    END;
    
  • I received an error message: "the Interactive logon process initialization has failed." The screen is blank and I have to shut the computer to get something to happen.

    Same as above

    Yes and Yes.
    After a thorough search, I found that the problem was the result of its firewall software.  It was disabled, but not uninstalled, and he blocked the completion of installation.  After uninstalling the firewall software, upgrade installed successfully.

  • ORA-06502: PL/SQL: digital error: error in the conversion of char to number

    Hello world.

    I have a strange problem here. I'll try to explain better. I work with APEX 4.2 and of Oracle Database 11 g Enterprise Edition Release 11.2.0.3.0 - 64 bit Production.

    Here are my parameters NLS_SESSION_PARAMETER and NLS_DATABASE_PARAMETER: NLS_NUMERIC_CHARACTERS,.


    I have a table with a lot of body numbers, and when I imported a MS Access application data, all fields were imported with the comma as decimal separator.


    Now, I have a form with several fields of number and when I leave a numeric field, a body of numbers of amount total is calculated and automatically filled with a bit of javascript.


    Now the problem: calculating fields (sum) succeeds only when I use the decimal as the delimiter. If I use the comma, I get a NaN value in the total amount field. I managed to convert all commas in points with javascript, so the total amount is calculated.

    When I try to save the record, I get the error: ORA-06502: PL/SQL: digital error: error in the conversion of char to number because I'm trying to save the separator point in my number fields.


    I tried to use REPLACE function to replace the. by one, before winning but does not solve the problem.


    This sounds familiar to anyone?


    Thanks in advance.



    OK, the problem is solved people.

    Somehow, the registration procedure had an influence on another calculation of my form and the error came from this process. So I put a to_number and replace stated in the calculation and all records very well and it shows my total.

  • Problem of setting a value for the hidden item click on the button with processes action or pl/sql dynamic

    Apex 4.1

    Oracle 11g

    I have a page which consists of a main and several sub-regions area.  I have a pl/sql process in after the header SET_DISPLAY(:P400_DISPLAY:='MAIN';))

    Three subregions have a contional show where P400_DISPLAY = STORE.  It works in the hiding of the sub regions.

    Now, I want to change the value P400_DISPLAY to the STORE to show the subregions when I hit a button.

    I tried to create a dynamic action for the click on the Add button, but get the following error:

    The selected button uses a model of 'button' that does not contain the #BUTTON_ID substitution string #.

    I went to the models and found:

    Substitution strings

    Top

    Substitution strings are used in sub models to reference the value of the components. This report details use of string substitution for this model.
    Substitution string Referenced De Description
    #LINK #.YesModelTo be used in an attribute "href".
    #JAVASCRIPT #.NO.To be used in an "onclick" attribute
    #LABEL #.YesModelButton label
    #BUTTON_ATTRIBUTES #.NO.The attributes button
    #BUTTON_ID #.NO.ID generated button will be ID either the static button if defined, or if not will be a generated ID internally in the format 'B ' | [Internal ID of the button.

    I then tried to create a page process, pl/sql,: P400_DISPLAY: = 'STORE '; If the button is pressed.  The action of the button is submit page. However, it does not change the value of P400_DISPLAY and the subregions are hidden.

    Suggestions please on how to fix the template or change the value of P400_DISPLAY?

    The question of the root, it's that, even if you change the value of the element of your page, it is not visible to other areas of the page until it is in the session. Thus, any other action based on the value of the element of your page. the visibility of a control, a report based on the value of the item, etc. will be affected by changing the value of the item page until it has been changed in the session. Even after that, items are stored in the session, then you must do something to influence the revalued value. To see the effect of this, observe that your page will load and assesses the value of the element of your page, it sees which is the "MAIN" and mask areas. However, he didn't reassess after that.

    Then; your choices for this value set at the session are send the page, or use JavaScript to set the value in the session. If you use the latter, you will have to do extra work to make visibility tests be re - run, so, let's stick with the submit method.

    What you did above sounds correct to do this but, there are a lot of decisions, that you might have done that may have caused things to do not occur in the correct order.

    First of all, we will confirm that what I describe above is your problem. From the development environment, load the page, click on the button to change the value and submit. Now, click on the link marked the Session. He is always at HAND? If the answer is "Yes"; That's your problem.

    Let's start with your calculation after the header. You set it to * only * run if the current value of the element of your page is null? If this isn't the case, it's your problem.

    Load the Page-> Item set to 'Hand' by calculation-> click on the button--> Item set to STORE-> Submit-> Page Load-> point by calculating the value 'hand '.

    See the problem?

    Assuming that's not the question, you have created a branch to the same page, right? What is your process for the branch point? Is it * after * Validation, computation etc.? Because if not, you are not changing the value before that didn't get to submit.

    I bet that's the first question, but take a look at these.

    See you soon,.

    -Joe

  • Deploy the error because the sql server database adapter

    I'm new to BEPL, I tried to transfer data from the Oracle SQL Server. To establish a connection with sql server, I used database adapter and driver is MS JDBC 2.0 that works very well in Jdeveloper and compiled with success but everything by deploying a Jar file to the output folder in SOA server I am getting an error, below is this error message

    Deploy the new BPEL process
    • bpel_WhiToEbiz_v2009_10_27__45671.jar failed to deploy.
    Could not initialize the agent of activation. An error occurred during initialization of an activation of process agent "WhiToEbiz", "v2009_10_27__45671" for review. Please ensure that the agents of activation are configured correctly in the bpel (bpel.xml) deployment descriptor. oracle.tip.adapter.fw.agent.jca.JCAActivationAgent: java.lang.reflect.InvocationTargetException

    kindly help me someone

    As stated on the http://download.oracle.com/docs/cd/B31017_01/integrate.1013/b28994/adptr_db.htm#CHDCAEGH, section "4.6.7 location files JAR JDBC Driver and setting the path of the class ' drop the JAR files in the following directories:

    For the Oracle BPEL Process Manager, go to Oracle_Home/bpel/system/appserver/oc4j/j2ee/home/applib

    For the Oracle BPEL Process Manager to install the OracleAS middle tier, go to Oracle_Home/j2ee/OC4J_BPEL/applib

    As a practice you need to create the factory of conn, conn on server and source database...

  • I keep having a problem with this error message. Firefox is already running but is not responding. To open a new window, you must first close the existing Firefox process, or restart your system. I've tried everything.

    I keep having a problem with this error message. Firefox is already running but is not responding. To open a new window, you must first close the existing Firefox process, or restart your system. I tried everything the internet suggested but it continues to wreak havoc... Help, please... John.I cannot give other details that it has become very annoying

    See "hang out":

  • Installation of the Microsoft SQL Server 2005 Express Edition (KB955706) code error 0x2B2F

    I am trying to install an update on a desktop HP for Microsoft SQL Server 2005 Express Edition (KB955706).  It has downloaded everything and still not settle.  It gives the error code is 0x2B2F.  I searched this error on the microsoft website and nothing came.  Any help would be appreciated.

    Hello nesbitzero,

    Thank you for using Microsoft Windows forum.

    You receive the 0x2b2f error code when you use the web sites, Windows Update or Microsoft Update to install SQL Server 2005 Service Pack 3 on a computer with MSXML6 Service Pack 2 is already installed.
     
    Follow this link for the reasons: http://support.microsoft.com/kb/970674

    You must first try and reset Windows Update components to eliminate the
    KB955706 update for SQL server.

    Follow the link for what has a fixit: http://support.microsoft.com/kb/971058

    After reset, try to install it once more to check if the problem persists.

    If this is the case, install the update mode safe

    Follow the steps below to start in safe mode with networking:

    1. reboot your computer and start pressing F8 on your keyboard. On a computer that is configured to start to multiple operating systems, you can press the F8 key when the Boot Menu appears.
    2. Select networking in Mode safe mode when the Windows Advanced Options menu is displayed and press ENTER

    In Safe Mode, download and install the stand-alone package for the Microsoft SQL Server 2005 Service Pack 3 on the site: https://www.microsoft.com/downloads/details.aspx?FamilyID=ae7387c3-348c-4faa-8ae5-949fdfbe59c4&displaylang=e

    Note: It is recommended that you temporarily disable the antivirus before installing the update.
     
    Follow the steps in the link below for "SQL Server 2005 Setup fails when MSXML Core Services 6.0 Service Pack 2 has been installed"
    http://support.Microsoft.com/kb/968749

    See: http://social.answers.microsoft.com/Forums/en-US/vistawu/thread/e78198b7-324f-4775-85bd-83ce5af4affc for the exact number.

    For more information, see: http://social.msdn.microsoft.com/Forums/en-US/category/sqlserver/

    Kind regards
    Aziz Nadeem - Microsoft Support

  • Apache Tomcat Service Error 1067: the process terminated unexpectedly

    When I try to start my apache Tomcat service in services.msc, I get an error saying that "failed to start Apache Tomcat Service on Local computer. Error 1067: the process is completed in an unexpected way. »

    Hi RameshKrishnanS,

    You will need to contact the Apache to support with their web server.

    http://httpd.Apache.org/support.html

  • STOP: c0000221 {Bad Image Checksum}. The image rpcrt.dll is possibly corrupt and recovery XP says error during the extraction process. Details of error: path not found___

    My friend turned on their laptop packard Bell recently and had the following problem. Windows XP screen loads but is then followed by a blue screen that says STOP: c0000221 {Bad Image Checksum}. The image rpcrt.dll is possibly corrupt. The header checksum does not match the checksum calculated.

    I can't the laptop to go further. I have accessed the Microsoft recovery Panel and try a non-destructive recovery as there are some precious photos that need backup. However, when you select 'no profile' to begin the recovery, I get the message:

    Error during the extraction process. Details of error: path not found

    I'm a bit of a novice when it comes to this sort of thing, but if someone can provide step by step help giving rise to lose photos, I'd be willing to give it a try. I also have XP Home Edition disk that came with the laptop but has never been opened. Any help would be appreciated. Thank you

    You hear your message said something about rpcrt4.dll?  It is important to relay the exact message you see.

    Please provide additional information on your system:

    What is your system brand and model?

    What is your Version of XP and the Service Pack?

    Describe your current antivirus and software anti malware situation: McAfee, Norton, Spybot, AVG, Avira!, Defender, ZoneAlarm, PC Tools, MSE, Comodo, etc..

    The question was preceded by a loss of power, aborted reboot or abnormal termination?  (this includes the plug pulling, buttons power, remove the battery, etc.)

    The afflicted system has a CD/DVD drive work?

    You have a true bootable XP installation CD (it is not the same as any recovery CD provided with your system)?

    You use some CD to access this Panel of Microsoft recovery where this "no profile" option is?  I don't know what all this means if it isn't some CD shipped with your system, in which case, I would use it for a coaster instead of something to fix your system.

    If the c:\windows\system32\rpcrt4.dll file is missing or afflicted, you do not start in the last good known Configuration.

    You also will not start in any kind of Mode safe no more.

    Even if you could boot mode safe, you would find that sfc/scannow does not work in Mode without failure in all cases (never).  If you try it, you'll see a message like this:

    Windows file protection could not initiate a scan of protected system files.

    The specific error code is 0x000006ba [the RPC server is unavailable.].

    Failed to start the RPC mode server safe either.

    I can't recreate your error exactly, but it is easy to replace the rpcrt4.dll file.  Looks like you have a working CD drive, so put yourself a Hiren boot CD and when you started on this, you can copy your precious files to a USB device for safety.

    There should be a backup copy of rpcrt4.dll already on your system, here or here:

    c:\Windows\System32\dllcache

    c:\windows\ServicePackFiles\i386

    You need to rename or replace the rpcrt4.dll file which is in c:\windows\system32 and replace it with one you will find the backup copies.

    There should be a backup copy of rpcrt4.dll already on your system, here or here:

    c:\Windows\System32\dllcache

    c:\windows\ServicePackFiles\i386

    When you get the Hiren's CD's, you can use to replace the missing or suspicious file.  If you need help with that, first get the Hiren's boot CD made and start over, then we can continue.

    Do you have a Hiren BootCD you can download here:

    http://www.hirensbootcd.NET/

    On the left, click on download, scroll down, choose the latest version, the download link is a little hard to see.  It is at the bottom of the page, above the drop for older versions and looks like this (click this component to download the ZIP file):

    Direct HTTP mirror + Torrent, Torrent Magnet

    Click the "Live HTTP Mirror" link to start the download and save the ZIP file on your desktop of somewhere that you can remember.

    The ZIP file is large, so the download will take probably some time to complete.  Then unzip the download to extract the Hirens.BootCD.ISO file that will be used to create your new bootable CD.

    Create a bootable CD. ISO file is not the same as simply copying the. File ISO onto a blank CD.  You must use software that includes how to burn a. ISO to a CD to create a bootable CD.

    File ZIP the Hiren is the file BurnToCD.cmd that you can double-click to launch it.  The BurnToCD.cmd will use the file BurnCDCC.exe to burn the. ISO file onto a blank CD using your existing CD burner.  You can also use your own burning software as long as your software is able to create a bootable CD. ISO file.  More modern burning programs can create a bootable CD. ISO image.  Create a CD from an ISO image bootable is not the same as just the file on a CD burning.

    If you need a simple and CD burning, this is a free software popular software:

    http://www.ImgBurn.com/

    Here are some instructions for ImgBurn:

    http://Forum.ImgBurn.com/index.php?showtopic=61

    It would be a good idea to test your new bootable CD on a computer running.

    You may need to adjust the computer BIOS settings to use the CD-ROM drive as the first device to boot instead of the hard drive.

    These adjustments are made before Windows tries to load.  If you miss it, you will need to restart the system again.

    When starting on the Hiren's CD, you will see a menu of options.  Choose Mini XP.  It will appear while Windows is loading and you will be presented with a desktop computer that has the look and feel of the interface of Windows Explorer, you are already accustomed to using.

    Using the Mini XP, you can access Internet, maneuvering around your system, search for files, copy files, replace the files and run the scans for malware, edit the text files (like the c:\boot.ini) etc.

    There are dozens of free and useful tools included in the CD that can be used to repair your system or copy your important personal files on another device (like a USB device or an external drive) in the case where you just give up and decide to reinstall your XP (I hope that you will not make this decision)

    Do, or do not. There is no test.

    I need YOUR voice and the points for helpful answers and propose responses. I'm saving for a pony!

Maybe you are looking for

  • I forgot my security questions in icloud account.

    Hi, my iPhone 5 has been recently locked in the activation page! I know that my apple ID and password and it can check from apple.com and access my email.but I do not know my email to icloud! and I don't remember my security questions (answers)! so,

  • Tecra M7 - beginning of fingerprints HDD link

    So, I removed the HDD to test Win 8.After that the replacement of the HARD disk starts the fingerprint.The hard drive like a password. I think this is more! The possibility that the footprint of the binding to the output of the drive continues.Who ca

  • Service Pack 3 (KB955706) settles - error 36B 7

    I am running Vista Business - 32 bits - on a Dell Vostro 400 E4500 2.20 GHz - 3 Gig memory and lots of storage. Windows update says I need KB955706 but it will not install .  Error B 36, 7. Any suggestions? It's my first time, ask a question in this

  • HP Deskjet 3054: Printer works but not the Scanner (device not found)

    Configuration: Windows 8 Lap Top with a HP Deskjet 3054 directly connected via USB Printer - it works Scanner - when you run the Application "Hp Scan and capture ' it comes back and says"device not found ". I tried - I ran 'HP print and scan doctor '

  • Update graphics card in Dell Dimension 5150

    Hi all, I have a dell dimension 5150 with a graphic card intel r I would improve my chart to something better, it will be mainly used for live streaming TV & other thingscan someone please advise me a graphics card more powerful I checked graphics ca