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)

Tags: Database

Similar Questions

  • Boot failure SQLDeveloper 4.0.0 (fatal error in the IDE boot code)

    I am getting SQL Developer to work with Java 7?  If I update the startup script to use java 6, it starts but gives me a warning (seems to work though).  Does anyone have an idea what is happening here with this ' a fatal error in the boostraping IDE code. Output... "message?  I installed a copy "fresh" Java and sqldeveloper and still getting these messages:

    / Users/user/downloads/sqldeveloper name $ $ uname - a

    Darwin MACMACHINE Darwin Kernel Version 13.0.0 13.0.0: Sun Sep 19 22:22:27 CDT 2013; root:XNU-2422.1.72~6/RELEASE_X86_64 x86_64

    / Users/user/downloads/sqldeveloper name $ bash./sqldeveloper.sh

    Oracle SQL Developer

    Copyright (c) 1997, 2013, Oracle and/or its affiliates. All rights reserved.

    Type the full path of an installation of JDK (or Ctrl-C to exit), the path is stored in /Users/feinstein/.sqldeveloper/4.0.0/product.conf

    /Library/Java/JavaVirtualMachines/JDK1.7.0_51.JDK/contents/home

    A fatal error in the boostraping IDE code. Output of...

    / Users/user/downloads/sqldeveloper name $

    Thank you

    Mitch

    Version 4.0.1 seems to have solved this problem.

  • How to see the generated sql code

    Hello

    With the help of obiee 10g, I would like to see the generated sql code.
    I logged in as administrator
    Following manage-> sessions-> view log

    But when I click on connect gives this error ii do me "no logs found.

    The RPD administrator is a user with the recording as a 2 level.

    Thank you

    BI_ORACLE_HOME/server/log/nqquery.log

    to learn more:

    http://gerardnico.com/wiki/dat/OBIEE/nqquery.log

    Another method

    http://varanasisaichand.blogspot.com/2010/04/how-to-set-logging-level-for-users-in.html

    Thank you

    Deva

    Published by: Devarasu on December 6, 2011 17:26

  • Impact of writing more comments in the pl/sql code

    What is the impact of writing more comments in the pl/sql code. If it has an impact on the compile time, it is fine but it has no effect on the runtime? even in nano seconds?

    Hello

    2981581 wrote:

    What is the impact of writing more comments in the pl/sql code. If it has an impact on the compile time, it is fine but it has no effect on the runtime? even in nano seconds?

    Outside advice, comments have no effect on the runtime.

    They can have a big impact on maintenance time.

  • Wrap the PL/SQL code

    First of all, Hi everyone.

    I need to encrypt my PL/SQL code at run time. I thought using the wrap.exe, but it won't be a good option, once maybe I need to change something in the code and I'll not can send the code wrapped to the final customer. So, I'll use the DBMS_DDL. WRAP, but I have a doubt, I understand that my object will be encrypted in the database, but how can I prevent software this capture SQL (like SQL STATEMENTS TRACE) get the source when creating the object?


    Thank you very much.

    Agree with SomeoneElse, having a license legally correct contract protects your code.

    The package code is not a bad thing if that's what you are providing to the customer and that you have in place adequate source code controls, so you do not lose the source for yourself.  Although there are "unwrappers" out there, it may depend on the version of Oracle as to how well they work, and if they can achieve.  There are tools out there too which can obscure the PL/SQL code by doing things such as the conversion of all the variable names to things without meaning as a0001, a0002, a0003,... and deletes all comments etc before you wrap, so even if someone manages to undo what they are presented with the code that is more difficult to follow.

    Regarding the customer can see SQL running, you won't really be able to do something that, if the customer has access of type DBA to the database; the only thing you can do to avoid this is to provide a managed service where your company has total control of provides a full support for the server, database and applications and the client does not have access to all but the front end of the application.  Of course, if the customer has access to the database and can see running SQL code, then who can actually be beneficial if they have problems, because they can do their own initial analysis to determine the cause and determine if they should send the question to yourselves.

  • The call to the Workflow background process explicit in the pl/sql code

    Hi all

    We have a requirement where we need to call the "Workflow background process" explicitly in the pl/sql code.
    Our wish is that we have an application that runs via a competing program, but before the end of this application we want to put that on the wait and run the 'Workflow background process"explicitly in the code itself (user must not go and run it manually).
    Can someone please advice me how to do this in a PL/SQL code that is called via a concurrent program.

    Kind regards
    Shruti

    PL post Details of the operating system, database and versions EBS.

    One solution is to use the FND_SUBMIT API

    The most common FND API in APPS customizations [ID 221549.1]
    Code example for call Customer Interface RACUST program using the Api FND_SUBMIT 11i and R12 [429278.1 ID]

    https://forums.Oracle.com/forums/search.jspa?threadID=&q=FND_SUBMIT&objid=C3&DateRange=all&userid=&NumResults=15

    HTH
    Srini

  • Subquery 'WITH SAWITH0 AS' OBIEE 11 g factoring clause contained in the generated sql code

    I have observed that OBIEE 11 g generates in physics request log query using the (subquery factoring) WITH clause to the generated sql code elegantly readable. It's great! Thanks for the developers. However I have a few questions about it.

    __Background__
    Oracle database ' default behavior is that if you have only a subquery in the section, it runs as a perspective in line and he not materialized before the main sql is running. If you have more than one default database engine materializes all the in the order of definition. In some cases, it can completely blow up the SGA and make a query without end. To divert this behavior, you can apply two tips that work both in inline views in subqueries as well: / * + MATERIALIZE * / and / * + INLINE * /, however Analytics 11 g does not seem to have capabilities of Board at the table level logical, only at the level of the physical table.

    If we go with the current default settings, the developers do not know this feature can fall on serious performance problems for the sake of a few sweets of syntax to the generated sql level, I'm afraid.

    __Questions__

    * It is possible to turn the Analytics Server to not use WITH but views inline instead?
    * Is it possible to sneak in a few boards that would the / * + INLINE * / allusion to the proper place in the subqueries generated if necessary
    * Is the Oracle database has any initialization parameter that can influence the behavior of this subquery factoring and divert by default?

    The WITH statement is not added to make the query more elegant, it is added for performance reasons. If your queries slow to run, then you can have a design problem. In a typical DWH DB SGA should be increased seriously given that ran queries are much larger and complex than on an OLTP DB. In all cases, you can disable the WITH statement in the administration tool by double clicking on your database on the physical layer from object in the features tab. The function is called WITH_CLAUSE_SUPPORTED.

  • 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

  • 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).

  • Adobe Digital Editions: "error from the Server Activation, Code: E_AUTH_NOT_READY.

    The following error occurred during approval to Adobe Digital Editions: "the Server Activation, Code error: E_AUTH_NOT_READY. What can I do?

    https://forums.Adobe.com/message/5806299?TSTART=0

  • output the generated SQL code

    I know that you can build the sql code generated by a query in Coldfusion 7 using the result attribute but it's nto available with Coldfusion MX and unfortunately I'm stuck with MX.

    so is it possible with MX for the SQL code generated from a CFQUERY?

    In the CF administrator, turn on debugging and enter your IP address in the appropriate box. The executed SQL appears at the bottom of the page.

    Another approach would be to do something like the following:

    SELECT a, b, c #myTable # WHERE d = "#dValue #" e = "#eValue #

    The SELECT statement in this example is identical to that of the

  • How to pass the Record of entry to the dynamic SQL Code

    Hi all

    I am trying to run under Oracle applications API on the remote database using DB Link. I try to run using dynamic SQL. Part of the code is given below.

    DECLARE

    l_batch_info_rec wsh_picking_batches_pub.batch_info_rec;

    l_rule_id NUMBER;

    l_rule_name VARCHAR2 (240);

    l_batch_prefix VARCHAR2 (240);

    BEGIN

    l_batch_info_rec.document_set_id: = v_document_set_id;

    l_batch_info_rec.order_type_id: = v_order_type_id;

    l_batch_info_rec. Default_Stage_Subinventory: = v_default_stage_subinventory;

    l_batch_info_rec.pick_grouping_rule_id: = v_pick_grouping_rule_id;

    l_batch_info_rec.pick_sequence_rule_id: = v_pick_sequence_rule_id;

    l_batch_info_rec.autopack_level: = v_autopack_level;

    l_batch_info_rec.autopack_flag: = v_autopack_flag;

    l_batch_info_rec.ac_delivery_criteria: = v_ac_delivery_criteria;

    l_batch_info_rec.backorders_only_flag: = v_backorders_only_flag;

    l_batch_info_rec.existing_rsvs_only_flag: = v_existing_rsvs_only_flag;

    l_batch_info_rec.customer_id: = v_customer_id;

    l_batch_info_rec.order_header_id: = v_header_id;

    l_batch_info_rec.from_scheduled_ship_date: = NULL;

    l_batch_info_rec.organization_id: = v_organization_id;

    l_batch_info_rec.include_planned_lines: = v_include_planned_lines;

    l_batch_info_rec.autocreate_delivery_flag: = v_autocreate_deliveries_flag;

    l_batch_info_rec.autodetail_pr_flag: = v_autodetail_pr_flag;

    l_batch_info_rec.allocation_method: = 'I ';

    l_batch_info_rec.pick_from_locator_id: = NULL;

    l_batch_info_rec.auto_pick_confirm_flag: = 'n';         -The value manually to run Transact order

    l_batch_info_rec.autopack_flag: = 'n';         -Manually configure to perform the manual packaging

    l_rule_id: = NULL;

    l_rule_name: = NULL;

    l_batch_prefix: = NULL;

    v_sqlstmt1: = ' START

    wsh_picking_batches_pub.create_batch' | g_db_link | "(1.0,

    fnd_api.g_true,

    fnd_api.g_true,

    : l_return_status,.

    : l_msg_count,.

    : l_msg_data,.

    : l_rule_id,.

    : l_rule_name,.

    : l_batch_info_rec,.

    : l_batch_prefix,.

    : p_new_batch_id

    );

    END;';

    --

    EXECUTE IMMEDIATE V_sqlstmt1

    With the HELP OF THE l_return_status,.

    ON l_msg_count,.

    ON l_msg_data,.

    BY l_rule_id,

    BY l_rule_name,

    BY l_batch_info_rec,

    BY l_batch_prefix,

    OUT p_new_batch_id;

    --

    END;

    After you run this script, I get below error "PLS-00457: expressions must be SQL types ' for variable l_batch_info_rec which is of type record. can someone please guide me how can I pass variable type dynamic SQL record.

    Thank you

    Priyanka

    Food for thought:

    On remote db:

    SQL > create or replace
    package 2 pkg
    3 is
    4 type r_type is (record
    Number 5,
    6 name varchar2 (10)
    7                            );
    (p) 8 procedure
    9 p_rec in r_type,
    10 p_out out varchar2
    11                  );
    12 end;
    13.

    Package created.

    SQL > create or replace
    package 2 body pkg
    3 is
    4 procedure p)
    5 p_rec in r_type,
    6 p_out out varchar2
    7                  )
    8 is
    9 start
    10 p_out: = "ID = ' |" p_rec.ID | 'Name =' | p_rec. Name;
    11 end;
    12 end;
    13.

    Package body created.

    SQL >

    On local db:

    SQL > set serveroutput on
    SQL > declare
    v_rec 2 pkg.r_type@pdb1sol12;
    3 v_out varchar2 (50);
    4 start
    v_rec.ID 5: = 1;
    6 v_rec.name: = 'XXX ';
    7 immediate execution"
    8                        begin
    9 pkg.p@pdb1sol12 (: 1,: 2);
    10                        end;'
    11 using v_rec,
    12 v_out;
    13 dbms_output.put_line (v_out);
    14 end;
    15.
    using v_rec;
    *
    ERROR on line 11:
    ORA-06550: line 11, column 20:
    PLS-00457: expressions must be SQL types
    ORA-06550: line 7, column 5:
    PL/SQL: Statement ignored

    SQL > declare
    2 number of v_id: = 1;
    3 v_name varchar2 (10): = 'XXX ';
    4 v_out varchar2 (50);
    5. start
    6 immediate execution"
    7 report
    8 v_rec pkg.r_type@pdb1sol12.
    9                        begin
    10                            v_rec.id  := :1;
    11 v_rec.name: =: 2;
    12 pkg.p@pdb1sol12 (v_rec,: 3);
    13                        end;'
    14 using v_id,
    15 in v_name,
    16 v_out;
    17 dbms_output.put_line (v_out);
    18 end;
    19.
    ID = 1 name = XXX

    PL/SQL procedure successfully completed.

    SQL >

    SY.

  • 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;
    
  • 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.

  • In the PL/SQL Code changes

    Hi all

    I have the code below, and I want to change it according to the questions A and B.

    I'm new to PL/SQL and I do not undestand the terminology correctly. Any sugestion for how to change the code to match question a and b are welcome.



    a. said an INDEX BY type of dept_table_type of table
    departments.department_name. Declare a variable my_dept_table of type
    dept_table_type to temporarily store the name of the departments.

    b. declare two variables: benchmark(loop_count,expression) and type deptno NUMBER. Assign 10 to
    benchmark(loop_count,expression) and 0 to deptno.


    DECLARE
    TYPE departments_table IS TABLE OF departments % ROWTYPE directory INDEX;
    departure of departments_table;
    BEGIN
    SELECT *.
    LOOSE COLLECTION starting
    Ministries;
    BECAUSE me initially. FIRST-... depart. LAST
    LOOP

    DBMS_OUTPUT. Put_line (to_char (departure, (i), .department_id));

    END LOOP;
    END;


    I thank very you much in advance!

    899335 wrote:
    Hi all

    I have the code below, and I want to change it according to the questions A and B.

    I'm new to PL/SQL and I do not undestand the terminology correctly. Any sugestion for how to change the code to match question a and b are welcome.

    a. said an INDEX BY type of dept_table_type of table
    departments.department_name. Declare a variable my_dept_table of type
    dept_table_type to temporarily store the name of the departments.

    The type will be very similar to the INDEX PER table called departments_table. The main difference is that each row of a table departments is a
    % ROWTYPE departments, but each line in a dept_table_type will be a
    Departments.department_name%type.

    The variable my_dept_table will be very similar to the existing variable dept_table.

    Moreover, it would be preferable to use consistent types and variable names.
    Departments_type would be a better name than _table of ministries for the type, because it is a TYPE, not a TABLE.
    If the column in the table is called department_iname, then department_name_type would be a better name than dept_table_type. You're not abbreviate Department in other places, so do not here. Such processes only the deparatment_name, not the whole column.
    My departments_table and my_department_name_table would be better names that leave and my_dept_table.

    b. declare two variables: benchmark(loop_count,expression) and type deptno NUMBER. Assign 10 to
    benchmark(loop_count,expression) and 0 to deptno.

    You can declare a variable anywhen NUMBER in the DECLARE section and assign it a value in the BEGIN section, like this

    DECLARE
        ...
        x   NUMBER;
        ...
    BEGIN
        ...
        x := 10;
        ...
    

    You can also declare a variable and assign a value to it at the same time, in the DRAWING section, like this:

    DECLARE
        ...
        y   NUMBER := 0;
        ...
    

Maybe you are looking for

  • BSOD on Equium M50-244 - error caused by ati2dvag.dll

    Operating system Windows XP SP2, view ATI Radeon xpress 200 m series. Hi have an Equium M50-244 with a problem. Seems to work very well, but suddenly goes to a blue screen with the message:A problem has been detected, has been shut down to prevent da

  • PC HP PAvilion 15-N011TX NB: HP Support Assistant does not

    My Hp Support Assistant and a few other applications stopped working when I upgraded my Windows 8 Windows 8.1 windows form. I don't know why this is happening as I was using windows preinstalled in my notebook. Kindly to provide me a solution for thi

  • HP Pavilion dm4-3002sa replacing the fan

    I disassemble the laptop to expose the fan, but I can't find a way down, it seems possible to stick on the motherboard or something.  What I have to remove the radiator with him or is it possible to remove just the fan, so I can replace it? If you ne

  • audio cd transfer to sansa e280

    How can I transfer audio cd to sansa e280?

  • No printer not appearing in devices and printers in Windows 7

    This is quite disconcerting, and after a thorough search, I can't find an answer to work. Basically, I installed a printer on my machine here Win7Pro.  The printer can be printed from various applications.  However, the printer does NOT appear under