DBMS_SCHEDULER. CREATE_JOB and relaxation

Hi all,
Please inform if there is another way to create jobs in trigger to execute the batch file.



SQL > create table test (name varchar2 (200));

Table created.

SQL > create or replace
TRIGGER 2 AFT_INSERT
3. INSERT AFTER THE Test
4. FOR EACH LINE
5 REPORT
6 bis varchar2 (200);
7. START
8
9 create_job_through_trigger;
10
11 END;
12.

Trigger created.

SQL > insert into test values ('ff');
Insert into test values ('ff')
*
ERROR on line 1:
ORA-04092: cannot in a trigger
ORA-06512: at "SYS." DBMS_ISCHED', line 124
ORA-06512: at "SYS." DBMS_SCHEDULER', line 271
ORA-06512: in the 'END. VSM_SCHEDULER', line 5
ORA-06512: in the 'END. AFT_INSERT', line 5
ORA-04088: error during execution of trigger ' FINAL. AFT_INSERT'

The create_job_through_trigger

CREATE OR REPLACE PROCEDURE create_job_through_trigger
is

BEGIN
DBMS_SCHEDULER. () CREATE_JOB
job_name = > "fit."
job_type = > 'EXECUTABLE. "
job_action = > 'c:\a.bat ',.
activated = > false);
END;
/

Hi Isabelle,.

As we cannot engage in a trigger, which is explained by the fact to maintain a database of ACID properties.

A number of VALIDATION is required when the job is sent to the queue of work that can be done in the triggers.

You can use AUTONOMOUS TRANSACTIONS, which are independent transactions where you cannot perform a
engage in a Trigger.

 DECLARE
  PRAGMA AUTONOMOUS_TRANSACTION;
BEGIN
  /* Your Code Here */
  COMMIT;
END;

I am a friend in Oracle 9i, and we use DBMS_JOB. Submit() to submit a job to the queue and I don't know much about the
the schedular package for jobs.

Hope this might help you, little understanding...

Thank you
Shankar.

Tags: Database

Similar Questions

  • dbms_scheduler.create_job and create_program to run the shell program

    dbms_scheduler.create_job and create_program to run the shell UNIX of PL/SQL program

    I guess that the problem could be a shell program. "send_file_susin.sh", I did run the CFT program which is to transfer files. While I tried to this problem, I heard that I should use dbms_scheduler.create_program and create_job to execute the shell command. Therefore,.

    I've done
    () dbms_scheduler.create_program
    program name = > "SEND_FILE_SUSIN"
    program_type = > "EXECUTABLE."
    program_action = > ' / fsoracle/app/oracle/inst2/if_cft/send_file_susin.sh',
    number_of_arguments = > 0,
    enabled = > TRUE,
    Comments = > 'Test '.
    );
    commit;
    in a package, then I run the package.
    program and job

    DBMS_SCHEDULER exec. () CREATE_JOB
    job_name = > 'run_sh1 ',.
    program name = > "send_file_susin"
    start_date = > sysdate + 1/2880.
    repeat_interval = > null,
    End_date = > null,
    job_class = > 'DEFAULT_JOB_CLASS ',.
    enabled = > true
    )

    When I ran, I would check there program and job send_file_susin in the sched.programs and sched.job classes. The job will run about 30 seconds later.
    After 30 seconds, I saw the work was done, but I couldn't see the log of the CFT program. This means that the file have not been transferred...

    I don't know what is wrong with it... Please, someone that solve?
    Thank you very much in advance.

    Hello

    You don't have to create a program first, put directly in the work should work as well.

    Your pl/sql code is correct, then you should check out a few things with the shell script

    -is set + rx
    -is the first line #! / bin/sh
    -should I use the full path to the executable files for example/usr/bin/ftp
    -It defines the variables

    If that all seems well, consider adding lines of logging to your shell script to debug what goes wrong.

    See this post for more tips

    Guide to the external work on with dbms_scheduler 10g for example scripts, batch files

    Any other questions about the Scheduler, you can use the forum Planner here

    Planner

    Hope this helps,
    Ravi.

  • planning using the tasks dbms_scheduler.create_job

    Hi all experts,

    I am really grateful to now take you for your replies, a look at this, I created a job with 'dbms_scheduler.create_job' and blow is the result of the view 'dba_schduler_jobs' why it shows "0" run_count... I went through everything as many links like:

    Answers to "why my jobs are not running?

    and applied and checked all the settings, I use oracle 10.2.0.1.0 on windows server 2003 32-bit
    SQL> BEGIN
         DBMS_SCHEDULER.CREATE_JOB (
             job_name => 'clouser'
            ,job_type => 'PLSQL_BLOCK'
         ,job_action => 'begin package.procedure("po_closure"); end;'
         ,start_date => to_date('17-04-2009 22:00:00', 'dd-mm-yyyy hh24:mi:ss')
         ,repeat_interval => 'FREQ=DAILY;byminute=10'
         ,enabled => TRUE
         ,comments => 'op closure everyday at 11PM'
    );
    END;
    / 
    PL/SQL procedure successfully completed.
     
    SQL> select owner,job_name name,run_count run,start_date
      2  from dba_scheduler_jobs
      3  where owner='FINANCEDEV';
     
    OWNER                          NAME                                  RUN
    ------------------------------ ------------------------------ ----------
    START_DATE
    ---------------------------------------------------------------------------
    FINANCEDEV                     CLOUSER                                 0
    17-APR-09 02.45.10.000000 PM +05:30
     
    FINANCEDEV                     CLOUSER_MAIN                            0
    18-APR-09 10.25.00.000000 AM +05:30
     
    FINANCEDEV                     CLOUSER_MAIN1                           0
    18-APR-09 10.45.00.000000 AM +05:30
     
     
    OWNER                          NAME                                  RUN
    ------------------------------ ------------------------------ ----------
    START_DATE
    ---------------------------------------------------------------------------
    FINANCEDEV                     CLOUSER_MAIN4                           0
    18-APR-09 10.45.00.000000 AM +05:30
     
    FINANCEDEV                     CLOUSER_MAIN5                           0
    18-APR-09 10.43.00.000000 AM +05:30
    the time I planned has already passed and I check it again and again, but no luck, can you please explain why is it so?

    Thanks in advance

    Thanks and greetings
    VD

    Published by: vikrant dixit on April 17, 2009 22:33

    Vikrant,

    You must set your procedure or package that you call job_action and see why it's a failure. Make sure that you can perform your procedure with no problems

    Using the suite perform your procedure and see if it ends correctly and if not solve the problem and use job I posted in my previous post.

    declare
    begin
       input_value varchar2(...) := 'some value';
       schema_name.package_name.procedure_name(input_value);
    end;
    

    Hope helps thie
    Concerning

  • Put Repeat_interval in place in dbms_scheduler.create_job

    Gurus,
    I need to set up a job to run 4 times per year (1st of JAN, APR, Jul-OCT to 09:00).
    I tried the following code and received the error of invalid values for repeat_interval. Please help me solve this problem.

    dbms_scheduler.create_job (job_name = > "PROCESS_JOB")
    job_type = > 'procedure_stockee ',.
    job_action = > 'SNAP_PROC ',.
    start_date = > trunc (sysdate) + 9/24.
    repeat_interval = > ' FREQ = MONTHLY; INFECTION IS JAN, APRIL, JULY-OCT.; BYDAY = 1; BYHOUR = 9',
    End_date = > null,
    activated = > false,
    auto_drop = > false,
    Comments = > ' snapshot process);
    --
    Anan

    If you want the 1st day of the month, use BYMONTHDAY = 1 instead of BYDAY = 1

    Kind regards
    Bob

    Take a look at the response of Centinul to {message: id = 9352583} for an example of the use of the DBMS_SCHEDULE. Procedure EVALUATE_CALENDAR_STRING.

    Published by: BobLilly on May 22, 2012 17:08

  • dbms_scheduler.create_job

    Hello
    I have a stored procedure in the scheme of mauser.
    and grant execute this DS to ERPUSER,
    When connect you to oracle in sqlplus with ERPUSER (no mauser) a runtime error see the
    Help, please.


    Start
    dbms_scheduler.create_job
    (
    job_name = > 'Send_Data_To_HR_Tables ',.
    schedule_name = > "EVERY_4_MINS"
    job_type = > 'procedure_stockee ',.
    job_action = > ' MAUSER. SENDDATATOHRTABLES',.
    enabled = > true,
    Comments = > 'send my tabales data to HR tables. "
    );
    end;

    "ORA-27481: ' ERPUSER. SEND_DATA_TO_HR_TABLES' has an invalid schedule
    "ORA-27476: ' ERPUSER. EVERY_4_MINS' does not exist
    ORA-06512: at "SYS." DBMS_ISCHED", line 99
    ORA-06512: at "SYS." DBMS_SCHEDULER', line 348
    ORA-06512: at line 3 level



    Thank you and best regards
    allahmorad

    Try using schedule_name or repeat_interval settings but not both:

    SQL> select * from v$version;
    
    BANNER
    --------------------------------------------------------------------------------
    Oracle Database 11g Release 11.2.0.1.0 - Production
    PL/SQL Release 11.2.0.1.0 - Production
    CORE    11.2.0.1.0      Production
    TNS for Linux: Version 11.2.0.1.0 - Production
    NLSRTL Version 11.2.0.1.0 - Production
    
    SQL>
    SQL> show user;
    USER is "SCOTT"
    SQL>
    SQL> create procedure p
      2  as
      3  begin
      4  insert into times values(sysdate);
      5  end;
      6  /
    
    Procedure created.
    
    SQL> show errors
    No errors.
    SQL>
    SQL> begin
      2  dbms_scheduler.create_schedule(
      3  schedule_name => 'every_4_mn',
      4  start_date => systimestamp,
      5  repeat_interval => 'freq=minutely;interval=4');
      6  --
      7  dbms_scheduler.create_job(
      8  job_name => 'savedate',
      9  schedule_name => 'every_4_mn',
     10  job_type => 'stored_procedure',
     11  job_action => 'scott.p',
     12  enabled=>true,
     13  auto_drop=>false);
     14  end;
     15  /
    
    PL/SQL procedure successfully completed.
    

    Wait a while and check:

    SQL> select sysdate from dual;
    
    SYSDATE
    ---------------
    05-JUL 19:18:34
    
    SQL> /
    
    SYSDATE
    ---------------
    05-JUL 19:18:57
    
    SQL> select * from times;
    
    C1
    ---------------
    05-JUL 19:19:00
    05-JUL 19:15:00
    

    Edited by: P. Forstmann on 5 Jul. 2010 19:19

  • a problem using dbms_scheduler.create_job. I can't do the work

    I do work to run sh program with 5 arguments, even if I put the time, work does not work...
    Please tell me, why it does not work...-. -;

    I write the source for jobs below...

    exec (dbms_scheduler.create_job)
    job_name = > 'run_sh ',.
    job_type = > 'EXECUTABLE. "
    job_action = > ' /fsoracle/app/oracle/inst2/if_cft/test.sh ZADA/fsoracle/app/oracle/product/rdbms/log/KFG. DD SHRCOM. HR DIRECTOR. A03 KFG. DD SHRCOM. HR DIRECTOR. A03 25 25',
    start_date = > sysdate + 1/1440
    );

    Hello

    You don't have to create a program first, put directly in the work should work as well.

    Your pl/sql code is correct, then you should check out a few things with the shell script

    -is set + rx
    -is the first line #! / bin/sh
    -should I use the full path to the executable files for example/usr/bin/ftp
    -It defines the variables

    If that all seems well, consider adding lines of logging to your shell script to debug what goes wrong.

    See this post for more tips

    Guide to the external work on with dbms_scheduler 10g for example scripts, batch files

    Any other questions about the Scheduler, you can use the forum Planner here

    Planner

    Hope this helps,
    Ravi.

  • Error with dbms_scheduler.create_job

    Hi all

    I am trying to run CREATE_JOB, get the error below.
    I gess I have specified the valid month, but could not solve the problem. What could be the error?
       SQL> BEGIN
      2      dbms_scheduler.create_job(
      3              job_name => 'DEMO_STUDENT_TOT',
      4              job_type => 'PLSQL_BLOCK',
      5              job_action => 'begin student_sum; end; ',
      6              start_date => '7/14/2009 7:40 AM',
      7              repeat_interval => 'FREQ=DAILY',
      8              enabled => TRUE,
      9              comments => 'Demo for job schedule.');
     10  END;
     11  /
    BEGIN
    *
    ERROR at line 1:
    ORA-01843: not a valid month
    ORA-06512: at line 2
       
    Thank you

    Refer to the documentation: http://download.oracle.com/docs/cd/B19306_01/appdev.102/b14258/d_sched.htm#i1000363

    You have:

    start_date => '7/14/2009 7:40 AM',
    

    but the documentation says start_date is a timestamp.

    You must use to_timestamp()...

  • How to synchronize the start of IT and relaxation the Scan list (DAQmx Switch)

    Hello

    I want to measure samples of N to the AI0 of Council NI PXI 4461. The measurement starts on a rising edge of a digital triggering provided to the PFI0 of the same Board. The measure is configured with samples of N/2 pretrigged. So far, everything is under control...

    Using an NI PXI 2567 Board, the signal applied at the entrance the 4461 (AI0) switches between a V2 and V1 signal. I would like to synchronize the switch between the two signals with the trigger signal applied to the input of the PFI0 Governing Council 4461. In order to obtain samples of N/2 of V1 and V2 samples N/2. Synchronization of 1 to 5 ms would suffice!

    My question is how to synchronize the start of acquisition of AI pretrigged of 4461 with the switch control given by the Council of 2567?

    Thank you in advance for your help...

    PS: the configuration of the system is:

    -LabView 8.5

    -Chassis PXI-1044

    PXI-4461 on slot 2

    Module 4-slot PXI-2567

    Hi Frederic,.

    I came back to this recently and used the following examples to run the desired synchronization.

    PXI-4461: Acq & graph tension-Int Clk - dig Start & Ref .vi

    Samples per channel = 1000

    Rate (Hz) = 10000.00

    Start the trigger Source = / [name of the instrument DAQmx] / PXI_Trig0

    Onboard start = fall

    Reference Source Trigger = DAQmx Device Name] / PXI_Trig0

    Reference edge = fall

    Trigger samples = Variable (100, 500, 900)

    PXI-2567: Switch Scaning-SW Trigger.vi

    Advance the output terminal full = / [name of the instrument DAQmx] / PXI_Trig0

    Scan list = / [name of the instrument DAQmx] / ch0-> com0.

    Scan list = / [name of the instrument DAQmx] / ch1-> com1;

    Hardware configuration:

    The PXI-2567 module controls an external relay that switches between the voltage of 5 V on ch0 and ch1 0 V.

    The PXI-4461 connects to the COM of the external relay and therefore reads 5V when ch0 is connected; 0 v when ch1 is connected.

    Procedure: The above examples are used in the following procedure.

    1. run the PXI-4461 VI.  A start trigger (falling edge) is necessary to start collecting samples before firing.

    2. launch the module, PXI - 2567 VI.  When ch0 is initially (and immediately) on com0, a trigger is sent to PXI_Trig0.  The PXI-4461 will begin to acquire samples before firing.

    3. - click on the "Connect to the next" button on the front of the PXI - 2567 VI module.  This sends a trigger to entry software for the PXI-2567 module and the transitions of the scan for ch1-> com1 list.  Once the PXI-2567 module remains (debounced), advanced complete relaxation is sent on PXI_Trig0 for the PXI-4461.  The PXI-4461 will begin to acquire samples after outbreak.

    Note: Instead of the trigger of the software entry, an external input trigger can be used (e.g. PXI_Trig1).

    Results:

    > Before instant release of samples = 100

    Delay is caused by the time of actuation of external relay.

    > Before instant release of samples = 500

    Delay is caused by the time of actuation of external relay.

    > Before instant release of samples = 900

    Delay is caused by the time of actuation of external relay.

    I hope that the attached screws and the explanation above helps you and/or other customers who have this problem.

    Best regards

    Chad Erickson

    Switch Product Support Engineer

    NOR - USA

  • signal average and relaxation

    I know how to program to acquire the signal. But I donot know average and raise my signal as a work of the oscilloscope? What do I have to use "average dc - rms VI" to calculate the rms dc values and/or a waveform of input on average?  In oscilliscope, I can choose average 16,32, 64... 512. how to achieve here? There is also a filter of bandwidth in the scope.

    The trigger is nothing but looking for a crossing of a certain level.  You can use a simple top or a less than to find that.  On average, as a scope, you must acquire the signal several times.  You can then perform the average for each data point in a loop FOR.

  • How data for chart FPGA of DMA Fifo and relaxation

    Have a design Question here:

    IM using a FIFO DMA here at the flow of data from the target to the host.  Side host, I was using the FIFO read Functinon, converting to Dynamic Data and display in a chart in 'real time '. Pretty easy.

    However, I would like to make it more functional.  The incoming signal is essentially a square wave.  I want to trigger on a rising edge, and then graphic permanently the result in the table.  I tried to add that 'trigger and Gate' express Vi, but its uneven (see attached photo).

    I am on the right track, or should it be done differently?  I was not able to find specific examples for this.  I think Im getting messed up because my data are read from the FIFO as a table 1 d, 5,000 items at a time.  All of the other examples I've found just show the signals that are generated on the host computer already at a fixed frequency.

    Thank you!!!

    Bones349,

    Hello! Some ideas/questions

    1.), you could make a detection of edges in your FPGA, saving you a lot of treatment because no no need to spend no relevant data until the host code.

    (2.) what you're doing in splitting the numbers before their conversion to the type of dynamic data? I'm not surw what happens there. You can use a data type of waveform instead, because she would have an element of time to your data.

    3.) 5000 incidentally both through your FIFO would be fine.

  • Stored access package and relax

    First of all, I connect to Oracle using my username (for example the TESTER). Once I'm connected, I create a package named pkg_test. I understand that Oracle will be stored in the DBA_SOURCE table, not in my diagram. Now, I have a few questions regarding the privilege to access the package.

    (1) when I want to access the package after I connect to Oracle, I'll use it directly without a prefix, i.e., pkg_test.sp_get_text ()... But when other users want access, they need to use the prefix TESTER, IE . TESTER pkg_test.sp_get_text ()?

    (2) after that I connect to Oracle, I create a table named test_tab. This table will be accessible by other users. Then I create a trigger on the table.

    create or replace trigger trig_test
    to insert on . TESTER test_tab

    Do I need to use the prefix TESTER of the trigger so that it is accessible to other users?

    Thank you

    Scott

    scottjhn wrote:
    I understand that Oracle will be stored in the DBA_SOURCE table, not in my diagram. Now, I have a few questions regarding the privilege to access the package.

    The source will be stored in the data dictionary, Yes (it will be also visible in ALL_SOURCE and USER_SOURCE). But the object itself is stored in the schema of the CONTROL device.

    (1) when I want to access the package after I connect to Oracle, I'll use it directly without a prefix, i.e., pkg_test.sp_get_text ()... But when other users want access, they need to use the prefix TESTER, IE . TESTER pkg_test.sp_get_text ()?

    By default, Yes. Oracle will try to resolve objects without schema qualifiers using the objects in the current schema.

    You can change this default value by creating a public synonym for PKG_TEST or by creating a synonym private in the scheme of each user for PKG_TEST or by running

    ALTER SESSION SET current_schema = 'TESTER' 
    

    When logged in as a different user

    (2) after that I connect to Oracle, I create a table named test_tab. This table will be accessible by other users. Then I create a trigger on the table.

    create or replace trigger trig_test
    to insert on . TESTER test_tab

    Do I need to use the prefix TESTER of the trigger so that it is accessible to other users?

    No, you don't need to use the schema qualifier if TESTER will be the owner of the trigger.

    Justin

  • last execution of procedure and relaxing time-out

    Hello

    How will I know when the procedure was executed the last time? I would like to know if some old procedures and triggers are used by any application or not.


    Thank you
    Sandy

    Oracle does not follow when a PL/SQL block was performed last time by default. The code itself would either need to write in a journal or your DBA would need enable auditing for you to follow this kind of thing.

    Justin

  • With regard to the creation of sequence and relaxation

    Hello!!
    I use oracle 10g and I have tried to create a sequence of a table called 'emp' I need to autoincrement column 'emp_id' which has a varchar2 data type. How do I?
    Help, please!

    1 sequence cannot be linked to any specific table. They generate only sequential numbers and like [url http://asktom.oracle.com/pls/asktom/f?p=100:11:0:NO:P11_QUESTION_ID:2985886242221] Tom says: there is a 100% guarantee that the values generated by the sequence will have some gaps.
    2 sequence cannot be auto incremented. You must use Sequence.Nextval (). Either use directly in your insert statement or write a trigger for this.
    3. If the emp_id column is supposed to contain sequence values (which are numbers), why are you define as VARCHAR2? Keep in a number only.

    Vivek L

  • repeat_interval in DBMS_SCHEDULER.create_job - for the 2nd day of each month

    Hi all

    I want to clarify in the repeat_interval the Scheduler for this task must be run on the second of each month at 20:00.
    I've been racking my brains out but nothings coming out.

    Any suggestions?

    You probably want a range like this:

    FREQ=MONTHLY;BYMONTHDAY=2;BYHOUR=20;BYMINUTE=0;BYSECOND=0;
    

    You can use the DBMS_SCHEDULER. EVALUATE_CALENDAR_STRING function to test, as follows:

    SQL > DECLARE
      2  start_date        TIMESTAMP;
      3  return_date_after TIMESTAMP;
      4  next_run_date     TIMESTAMP;
      5  BEGIN
      6  start_date :=
      7    to_timestamp_tz('01-JAN-2003 10:00:00','DD-MON-YYYY HH24:MI:SS');
      8  return_date_after := start_date;
      9  FOR i IN 1..5 LOOP
     10    DBMS_SCHEDULER.EVALUATE_CALENDAR_STRING(
     11      'FREQ=MONTHLY;BYMONTHDAY=2;BYHOUR=20;BYMINUTE=0;BYSECOND=0;',
     12      start_date, return_date_after, next_run_date);
     13  DBMS_OUTPUT.PUT_LINE('next_run_date: ' || next_run_date);
     14  return_date_after := next_run_date;
     15  END LOOP;
     16  END;
     17  /
    next_run_date: 01/02/2003 08:00:00.000000 PM
    next_run_date: 02/02/2003 08:00:00.000000 PM
    next_run_date: 03/02/2003 08:00:00.000000 PM
    next_run_date: 04/02/2003 08:00:00.000000 PM
    next_run_date: 05/02/2003 08:00:00.000000 PM
    
  • Validation test for the relationship between network_name, services and relaxation

    11g R2 running on RHEL 5 U4
    Primary (NO CARS) with a physical Standby (NO CARS)
    I'm trying to set up a basic configuration so that the client can ONLY connect to the primary database.

    Here's what I think it should all look like

    -entry on the primary and Standby physical tnsnames
    DMS =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP) (HOST = PRIMAIRE1)(PORT = 1521))
    (ADDRESS = (PROTOCOL = TCP) (HOST = STBY_DR01)(PORT = 1521))
    )
    (CONNECT_DATA =
    (SERVICE_NAME = DG_DMS)
    )
    )

    -the service created on the primary
    exec DBMS_SERVICE. () CREATE_SERVICE
    network_name = > "DMS",.
    service_name = > 'DG_DMS '.
    );

    -the service created on the primary
    CREATE OR REPLACE TRIGGER manage_service after starting on the database
    DECLARE
    role varchar (30);
    BEGIN
    SELECT DATABASE_ROLE IN the role OF V$ DATABASE;
    IF role = "PRIMARY" THEN
    DBMS_SERVICE. START_SERVICE ('DG_DMS');
    END IF;
    END;


    Sounds good?
    If this is not the case, can you please explain how to set up.

    Yes, if you plan to have a service being started on your physical waiting while it is in standby mode, you don't need to create the service with DBMS_SERVICE previously. CREATE_SERVICE. When the waiting becomes the main, Oracle Restart starts the appropriate services as defined by you using the command "srvctl add service d DMSPRMY s DG_DMS-l primary SCHOOL.

    If you need a container of service started on a standby physical while it is in standby mode, then you would have still to do the creation on the primary service so that the service is available on the day before.

    But in both cases you don't have to create the trigger.

    Larry

Maybe you are looking for

  • Satellite U305-SP2808 - I am using full 4 GB of RAM

    I have a Satellite U305 - sp2808 the processor is an Intel core (TM) 2 duo CPU T5450 I was reading syntactic processor and 64-bit, the BIOS version is 3.80 02/01/2008. My system is configured is posible to upgrade to WIndows 7 64-bit,I'm trying to us

  • purchase can not be completed contact support itune?

    why I can not buy any games it keep saying your purchase cannot be filled itune contact support? How to make that straight and I bought a gift card on apple store and put 15 dollars in it still cant buy everything?

  • F4140 HP all-in-one will save not scanned

    I wonder if someone can help me with my scanner.  My OS is Windows 7.  It's an HP f4140 all-in-one, connected to my laptop Aspire 5251.  The last time I used the scaqnner somewhat successfully, it wouldn't let me save a document of any kind except as

  • Receive the error code 646

    impenetrable fails to install the updates - I get the error code 646.

  • Problem with TextArea in ListView

    When I use TextArea in a ListView, the program cannot complete successfully. Is this a bug of Simulator? (waiting for my edition of dev z10 for weeks...) listwithtextarea [BlackBerry C/C++ Application] /Users/thierry/ndk-10.1.0-workspace/listwithtext