Hang in the procedure of

Windows XP 2000
1G RAM
20G Hardisk
AMD processor
when installing creator 2, it's hung when deploying web service; meanwhile, another dos console with title "Pointbase" is being opened.
Anyone can help? thanks!

HI -,
Looks like Installer is past installing the bundled appserver and extracting the bits. It seems to be failing or taking a long time as part of the Post-Install setup on the PE (it is deploying a couple webservices on the PE for use with Sample Apps).
This FAQ might apply to your case:
http://developers.sun.com/prodtech/javatools/jscreator/reference/faqs/installation/long_install.html
You can safely, restart your machine (to stop the installer, if it is taking for ever) and start your IDE. Then try to start the bundled appserver and database to see if they are working fine.
If the appserver is installed right and you want to re-deploy the sample webservices and re-init the sample database, you could use:
$creator_install_dir/bin> pe-start.sh -reset.
Let us know, how this goes.
Regards,
Sakthi

Similar Messages

  • Database is Hanging after executing the Procedure ...

    Dear All i am using 10G.
    I Have a procedure . After executing the Procedure when i try to call that procedure it is hanging ...
    it is creating Locks .. As our DBA told..And told to check the code ...
    Can any one tell me how can i put mu codes with formatting ? When i copy paste my code it is showing properly but after POST MESSAGE it is showing like i have written history ...--*
    I am Executing the procedure like this ...
    EXEC simulator_validation ('0|BP-V1|20101004|01|1|2430962.89|27|2430962.89|MUR|20100928120106','04-SEP-2010',27,2430962.89,'MUR','000111111111');
    And my code is :-
    {Create Or Replace Procedure simulator_validation (lstring varchar2,ldate date,lno_item number,ltotal number,lcur varchar2,lac_no Varchar2)
    IS
      l_swift_code_acno number;
      l_ACno_Valid number;
      l_swift_code_others Number;
      lpcode varchar2(5);
      lCcode Varchar2(4);
      lval number;
      lacno varchar2(16);
      v_file varchar2(20);
      v_path varchar2(50);
      LToken   VARCHAR2(100) ;
      i        PLS_INTEGER := 2 ;
      lfirst_char  number;
      lvalue  Varchar2(100) ; 
      lcol number:= 1;
    Begin
      lfirst_char := Substr(lstring,0,1);
      Dbms_output.put_line(lfirst_char);
          IF lfirst_char  = '0' Then ------------------- For the 1st Line - Should be start from 0
                Loop
                  LToken := mcb_simulator_pkg.Split( lstring, i , '|') ;  
                  lvalue := LToken;
                      IF lcol=1 then
                             If lvalue='BP-V1' THEN
                                   Dbms_output.put_line('1');
                             Else
                                 Insert into MU_SIMULATOR_output_ERR (load_no,ERR_CODE,ERR_DESC) values (1111,'0003','Invalid file type and version number');
                                Dbms_output.put_line('2');
                            End if;
                      Elsif lcol=2 then
                              If lvalue=To_Char(ldate,'YYYYMMDD') THEN
                                 Dbms_output.put_line('3');                                                                                                                                                                                                                                       
                            Else
                                 Insert into MU_SIMULATOR_output_ERR (load_no,ERR_CODE,ERR_DESC) values (1111,'0004','Due date differs from the value inputted in the loading screen');
                                 Dbms_output.put_line('4');
                            End if;
                      Elsif lcol=3 then
                                   Begin
                                         Select PAYMENT_PURPOSE_CODE into lpcode
                                         From MU_PURPOSE_CODE
                                         Where PAYMENT_PURPOSE_CODE = lvalue;
                                     IF lpcode = lvalue Then
                                           Dbms_output.put_line('5');
                                     Else
                                          Insert into MU_SIMULATOR_output_ERR (load_no,ERR_CODE,ERR_DESC) values (1111,'0006','Invalid payment purpose code');
                                          Dbms_output.put_line('6');
                                     End If;
                                Exception
                                    When No_data_found Then
                                    Insert into MU_SIMULATOR_output_ERR (load_no,ERR_CODE,ERR_DESC) values (1111,'0006','Invalid payment purpose code');
                                End;
                      Elsif lcol=4 then
                                    If lvalue='1' THEN
                                         Dbms_output.put_line('7');
                                    Else
                                       Insert into MU_SIMULATOR_output_ERR (load_no,ERR_CODE,ERR_DESC) values (1111,'0008','Total number of debit records in header does not tally with number                   debit records in the file.');
                                      Dbms_output.put_line('8');
                                   End if;
                      Elsif lcol=5 then
                                    If lvalue=ltotal THEN
                                          Dbms_output.put_line('9');
                                    Else
                                        Insert into MU_SIMULATOR_output_ERR (load_no,ERR_CODE,ERR_DESC) values (1111,'0010','Total debit transaction amount in header does not tally with the sum of debit transaction amount in the file');
                                       Dbms_output.put_line('10');
                                  End if;
                     Elsif lcol=6 then
                                    If lvalue=lno_item THEN
                                         Dbms_output.put_line('11');
                                    Else
                                        Insert into MU_SIMULATOR_output_ERR (load_no,ERR_CODE,ERR_DESC) values (1111,'0025','Number of credit records does not tally with credit records in the file.');
                                    End if;
                     Elsif lcol=7 then
                                    If lvalue=ltotal THEN
                                         Dbms_output.put_line('12');
                                    Else
                                         Insert into MU_SIMULATOR_output_ERR (load_no,ERR_CODE,ERR_DESC) values (1111,'0026','Sum of credit records does not tally with total transaction amount as inputted in the loading screen');
                                    End if;
                    Elsif lcol=8 then                
                                    If lvalue=lcur  THEN
                                          Begin
                                                    Select Cur_CODE into lCcode
                                                      From Mu_currency_Code
                                                    Where Cur_CODE = lvalue;
                                                    Dbms_output.put_line('13');
                                          Exception
                                              When No_data_found Then--------------------
                                                 Insert into MU_SIMULATOR_output_ERR (load_no,ERR_CODE,ERR_DESC) values (1111,'0014','Invalid Currency');
                                          End;
                                    Else
                                          Insert into MU_SIMULATOR_output_ERR (load_no,ERR_CODE,ERR_DESC) values (1111,'0013','Currency differs from the value inputted in the loading screen');
                                   End if;
                     Elsif lcol=9 then
                                    If lvalue=Null  THEN
                                          Insert into MU_SIMULATOR_output_ERR (load_no,ERR_CODE,ERR_DESC) values (1111,'0015','Timestamp should not be null');
                                    Elsif lvalue <> lvalue Then
                                         Insert into MU_SIMULATOR_output_ERR (load_no,ERR_CODE,ERR_DESC) values (1111,'0046','Timestamp in header should be in the format YYYYMMDDHHMMSS');
                                    End if;
                       End IF;
                      EXIT WHEN LToken IS NULL ;
                         i := i + 1 ;
                         lcol:=lcol+1;
                       End LOOP;
              Else
                                      Insert into MU_SIMULATOR_output_ERR (load_no,ERR_CODE,ERR_DESC) values (9999,'0002','First line should always start with 0');
              End if ;}
    -------------------- For the 2nd Line , should be start from 9 .-----------------------------
    {  lfirst_char := Substr(lstring,0,1);
    IF lfirst_char = '9' Then
    LOOP
    LToken := mcb_simulator_pkg.Split( lstring, i , '|') ;
    lvalue := LToken;
    IF lcol=1 then
    If lvalue < 0 THEN
    Insert into MU_SIMULATOR_output_ERR (load_no,ERR_CODE,ERR_DESC) values (1111,'0017','Amount should be greater than zero');
    Elsif lvalue = ltotal THEN
    Dbms_output.put_line('20');
    Else
    Insert into MU_SIMULATOR_output_ERR (load_no,ERR_CODE,ERR_DESC) values (1111,'0018','Transaction amount differs from the value inputted in the loading screen');
    End if;
    ELSIF lcol = 2 THEN
    If lvalue = Substr(lac_no,4,9) THEN
    mcb_simulator_pkg.Acct_no_Validator(lvalue,1111,l_ACno_Valid);
    mcb_simulator_pkg.Swift_code_validator_for_ac_no(lvalue,1111,l_swift_code_acno);
    Else
    Insert into MU_SIMULATOR_output_ERR (load_no,ERR_CODE,ERR_DESC) values (1111,'0020','Account number differs from the account number inputted in the loading screen');
    End if;
    ELSIF lcol = 3 THEN
    If lvalue is not null THEN
    mcb_simulator_pkg.Swift_code_validator_for_other(lvalue,1111,l_swift_code_others);
    Else
    Dbms_output.put_line('21');
    End if;
    END IF;
    EXIT WHEN LToken IS NULL ;
    i := i + 1 ;
    lcol:=lcol+1;
    End Loop;
    Else
    Insert into MU_SIMULATOR_output_ERR (load_no,ERR_CODE,ERR_DESC) values (8888,'0016','Second line should start with 9');
    End IF; }
    -------------------- For the 3rd Line Should be start from 1.--------------------------
    { LOOP
    lfirst_char := Substr(lstring,0,1);
    IF lfirst_char = '1' Then
    Loop
    LToken := mcb_simulator_pkg.Split( lstring, i , '|') ;
    lvalue := LToken;
    IF lcol=1 then
    If lvalue > 0 THEN
    Dbms_output.put_line('24');
    Else
    Insert into MU_SIMULATOR_output_ERR (load_no,ERR_CODE,ERR_DESC) values (1111,'0017','Amount should be greater than zero'); End if;
    ELSIF lcol=2 then
    Mcb_simulator_pkg.Acct_no_Validator(lvalue,1111,l_ACno_Valid);
    Mcb_simulator_pkg.Swift_code_validator_for_ac_no(lvalue,1111,l_swift_code_acno);
    ELSIF lcol = 3 THEN
    If lvalue is not null THEN
    mcb_simulator_pkg.Swift_code_validator_for_other(lvalue,1111,l_swift_code_others);
    Else
    Dbms_output.put_line('26');
    End
    END IF;
    EXIT WHEN LToken IS NULL ;
    i := i + 1 ;
    lcol:=lcol+1;
    End Loop;
    Else
    Insert into MU_SIMULATOR_output_ERR (load_no,ERR_CODE,ERR_DESC) values (7777,'0022','The third line onward should start with 1');
    End if;
    END LOOP;
    Commit;
    End;}
    Edited by: LuKKa on Oct 4, 2010 9:20 PM
    Edited by: LuKKa on Oct 4, 2010 9:25 PM

    Yes i gave {} but it is also coming like this ...Yes, since you should use {noformat}{noformat} before and after your example, and not putting your example between a '{' and a '}'.
    So, when you post/type/copypaste:
    {noformat}select *
    from emp;{noformat}
    on this forum, it will appear as:select *
    from emp;See the FAQ for more tags/tips:
    http://forums.oracle.com/forums/help.jspa                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Procedure Hanging in the DB

    Hi,
    I have a procedure executed from a Java server. The procedure hangs, and the server keeps waiting. When I query V$SESSION, V$PROCESS and the V$SQLAREA all I can see is the procedure name with bind variables. I need to find where exactly in the procedure it is hanging or the query or point where the failure occurs.
    This is happenning only for a given set of data.
    Thanks in advance,
    Rajesh.

    Thanks.
    I'd like to have a query to get the exact sql that is hanging. Please let me know if you have the same.
    thanks,
    Rajesh.

  • SAP IQ 16 Hang in the last phase of insert from ASE 15.7 using RLV

    Problem description:
    When I try to load 73K rows from ASE 15.7 to IQ 16.0 SP3 the IQ server ‘hang’ at the last phase of the insert (merge RLV store to main IQ dbspace).
    Hang: The server stops responding; stop writing to iqmsg; and, I’m unable to stop the server using stop_iq; the only way to stop the server is to kill the process (on Unix).
    Any suggestion on how to solve this issue will be appreciated.
    My configuration
    Adaptive Server Enterprise/15.7/EBF 21339 SMP SP101 /P/X64/Windows Server/ase157sp101/3439/64-bit/OPT/Thu Jun 06 12:11:05 2013
    Sybase IQ/16.0.0.653/131122/P/sp03/Sun_Sparc/OS 5.10/64bit/2013-11-22 01:16:26  (8 cores)
    How to reproduce the problem:
    In ASE 15.7
    Create and populate the following table:
    CREATE TABLE dbo.MyTable  (
            Program                 varchar(3) NULL,
            EncNum                  varchar(12) NULL,
    MRN                     varchar(8) NULL,
    IntervalStartDtm varchar(19) NULL,
            IntervalEndDtm          varchar(19) NULL,
            IntervalType            varchar(50) NULL,
            IntervalDuration        numeric(19,4) NULL,
            PhysFirstName           varchar(50) NULL,
            PhysLastName            varchar(50) NULL,
            PhysNum                 varchar(6) NULL,
            Location                varchar(3) NULL,
            DiseaseSite             varchar(20) NULL,
            Priority                int NULL,
            DelayReason             int NULL,
            ExcludeFlag             varchar(1) NULL
    LOCK ALLPAGES
    GO
    I’d around 73,000 rows, you can populate the table with random data.
    EndNum are of format ‘999999999999’
    MRN number are of format ‘99999999’
    On SAP IQ 16.0 SP3
    Create the new RVL STORE
    create dbspace IQ_RLVStore
       using file IQ_RLVFile1 '/dev/vx/rdsk/datadg/pdevtemp1' size 15360
    IQ RLV STORE
    Start Up Parameters
    -n devDwIqSrvr
    -x tcpip{port=4101}
    -c  512m
    -gc 20
    -gd all
    -gl all
    -gm 100
    -gn 150
    -gp 4096
    -ti 4400
    -iqlm 4096
    -iqmc 4096
    -iqtc 4096
    -iqgovern 100
    -iqrlvmem 2048
    -iqmsgsz 2047
    -iqmsgnum 2
    -xs http{port=8082}
    Create the table
    CREATE TABLE DBA. MyTable  (
            Program                 varchar(3) NULL,
            EncNum                  varchar(12) NULL,
    MRN                     varchar(8) NULL,
    IntervalStartDtm varchar(19) NULL,
            IntervalEndDtm          varchar(19) NULL,
            IntervalType            varchar(50) NULL,
            IntervalDuration        numeric(19,4) NULL,
            PhysFirstName           varchar(50) NULL,
            PhysLastName            varchar(50) NULL,
            PhysNum                 varchar(6) NULL,
            Location                varchar(3) NULL,
            DiseaseSite             varchar(20) NULL,
            Priority                integer NULL,
            DelayReason             integer NULL,
            ExcludeFlag             varchar(1) NULL IQ UNIQUE (255) 
    GO
    set option public.SNAPSHOT_VERSIONING = 'Row-level'
    set option public.RV_RESERVED_DBSPACE_MB = 500
    alter table DBA. MyTable
      enable RLV STORE
    On ASE 15.7
    Create a new session (disconnect and reconnect)
    Create the new server
    sp_addserver 'devDwIqSrvr', ASIQ, 'ohdwdbdev01:4101'
    Add and external login
    sp_addexternlogin devDwIqSrvr, sa, DBA, myPassword
    Create proxy a table
    `
    create proxy_table MyTable _proxy
    at 'devDwIqSrvr.devDwIqDb.DBA. MyTable '
    Execute
    insert into dbo. MyTable _proxy
      select * from dbo. MyTable
    In the 2 servers where I tested, the IQ server ‘hang’ after around 1 hrs.

    Hi Chris,
    Thanks a lot for your help.
    As per your suggestion, I increased the –iqrlvmem to 4096
    And also,  set option public.RV_Auto_Merge_Eval_Interval = 1
    But, still have the same behavior.
    Here you can see the state of the IQ server just a few seconds before it hang.
    select SpCount/2 from
    sp_iqtransaction()
    where TxnID = 119410926
    SELECT TOTAL FROM sp_iqrlvmemory('myTable', 'DBA')
    exec sp_iqstatus
    sp_iqtransaction.SpCount/2   
    72607.5   (approximate number of tables already loaded on the RLV part of the table)                     
    1 record(s) selected [Fetch MetaData: 0ms] [Fetch Data: 0ms]
    TOTAL
    252
    1 record(s) selected [Fetch MetaData: 0ms] [Fetch Data: 0ms]
    1 record(s) affected
    Name Value
    Sybase IQ (TM)                                Copyright (c) 1992-2013 by SAP AG or an SAP affiliate company. All rights reserved.
      Version: 16.0.0.653/131122/P/sp03/Sun_Sparc/OS 5.10/64bit/2013-11-22 01:16:26               
      Time Now:                                    2014-04-01 15:10:00.672                                                            
      Build Time:                                  2013-11-22 01:16:26
      File Format:                                 23 on 03/18/1999                                                                   
      Server mode:                                 IQ Server
      Catalog Format:                              2                                                                                  
      Stored Procedure Revision:                   1
      Page Size:                                   131072/8192blksz/16bpp
      Number of Main DB Files:                     4
      Main Store Out Of Space:                     N
      Number of Cache Dbspace Files:               0
      Number of Shared Temp DB Files:              0
      Shared Temp Store Out Of Space:              N
      Number of Local Temp DB Files:               1
      Local Temp Store Out Of Space:               N
      DB Blocks: 1-8716280 IQ_SYSTEM_MAIN_16384
      DB Blocks: 9408960-18125239                  IQ_SYSTEM_MAIN_2_16387
      DB Blocks: 19863360-22484791                 SF1
      DB Blocks: 22999680-24965759                 IQ_RLVFile1
      Local Temp Blocks: 1-1966072                 IQ_SYSTEM_TEMP_16388
      Create Time:                                 2011-08-07 09:24:11.169
      Update Time:                                 2014-04-01 14:52:51.422
      Main IQ Buffers:                             32652, 4096Mb                                                                      
      Temporary IQ Buffers:                        32652, 4096Mb
      Main IQ Blocks Used:                         3144428 of 21993858, 14%=23Gb, Max Block#: 23117643                                
      Cache Dbspace IQ Blocks Used:                0 of 0, 0%=0Mb, Max Block#: 0
      Shared Temporary IQ Blocks Used:             0 of 0, 0%=0Mb, Max Block#: 0
      Local Temporary IQ Blocks Used:              113 of 1940472, 0%=0Mb, Max Block#: 241                                            
      Main Reserved Blocks Available:              26214 of 26214, 100%=204Mb
      Shared Temporary Reserved Blocks Available:  0 of 0, 0%=0Mb
      Local Temporary Reserved Blocks Available:   25600 of 25600, 100%=200Mb
      IQ Dynamic Memory:                           Current: 9502mb, Max: 9526mb                                                       
      Main IQ Buffers:                             Used: 2251, Locked: 0
      Temporary IQ Buffers:                        Used: 7, Locked: 0                                                                 
      Main IQ I/O:                                 I: L18549/P79 O: C2336/D2740/P2581 D:519 C:39.7                                    
      Temporary IQ I/O:                            I: L110366/P0 O: C2568/D2592/P32 D:2561 C:97.1                                     
      Other Versions:                              1 = 69Mb
      Active Txn Versions:                         0 = C:0Mb/D:0Mb                                                                    
      Last Full Backup ID:                         119254657
      Last Full Backup Time:                       2014-03-30 19:00:00                                                                
      Last Backup ID:                              119415062
      Last Backup Type:                            INCR                                                                               
      Last Backup Time:                            2014-04-01 15:00:00
      DB Updated:                                  1                                                                                  
      Blocks in next ISF Backup:                   8928 Blocks: =69Mb
      Blocks in next ISI Backup:                   0 Blocks: =0Mb
      IQ large memory space:                       4096Mb
      IQ large memory flexible percentage:         50
      IQ large memory flexible used:               0Mb
      IQ large memory inflexible percentage:       90
      IQ large memory inflexible used:             0Mb
      IQ large memory anti-starvation percentage:  50
      DB File Encryption Status:                   OFF
      RLV memory limit:                            4096Mb
      RLV memory used:                             348Mb
    56 record(s) selected [Fetch MetaData: 1ms] [Fetch Data: 2ms]
    [Executed: 01/04/2014 3:10:01 PM] [Execution: 140ms]
    Follow the last records on the iqmsg file (Note the frequency in with the last records are written):
    I. 04/01 15:10:00. 0000000027 Dictionary: 17247
    I. 04/01 15:10:00. 0000000027                                        nullBitMap:                      132232
    I. 04/01 15:10:00. 0000000027                                        SubFragArray*s:                      64
    I. 04/01 15:10:00. 0000000027 nullWriter*: 24
    I. 04/01 15:10:00. 0000000027 ridMap:                            24688
    I. 04/01 15:10:00. 0000000027 allocatedMemory: 16777216
    I. 04/01 15:10:00. 0000000027 inserter*: 1072
    I. 04/01 15:10:00. 0000000027         Size of Tkn-ColFrag for Priority: 88
    I. 04/01 15:10:00. 0000000027 Dictionary: 9471
    I. 04/01 15:10:00. 0000000027                                        nullBitMap:                      132232
    I. 04/01 15:10:00. 0000000027                                        SubFragArray*s:                      64
    I. 04/01 15:10:00. 0000000027 nullWriter*: 24
    I. 04/01 15:10:00. 0000000027 ridMap: 24688
    I. 04/01 15:10:00. 0000000027 allocatedMemory: 16777216
    I. 04/01 15:10:00. 0000000027 inserter*: 1072
    I. 04/01 15:10:00. 0000000027         Size of Tkn-ColFrag for DelayReason:                   88
    I. 04/01 15:10:00. 0000000027 Dictionary: 9471
    I. 04/01 15:10:00. 0000000027 ColFrag for ExcludeFlag:                                64
    I. 04/01 15:10:00. 0000000027                                        nullBitMap:                         992
    I. 04/01 15:10:00. 0000000027                                        SubFragArray*s:                      64
    I. 04/01 15:10:00. 0000000027 nullWriter*: 24
    I. 04/01 15:10:00. 0000000027 ridMap: 24688
    I. 04/01 15:10:00. 0000000027 allocatedMemory: 262144
    I. 04/01 15:10:00. 0000000027 inserter*: 1072
    I. 04/01 15:10:00. 0000000027 PseudoCol frag:                                64
    I. 04/01 15:10:00. 0000000027                                        nullBitMap:                      132232
    I. 04/01 15:10:00. 0000000027                                        SubFragArray*s:                      64
    I. 04/01 15:10:00. 0000000027             SubFragmentFixColumn:                      96
    I. 04/01 15:10:00. 0000000027                 nullWriter*:                           24
    I. 04/01 15:10:00. 0000000027 ridMap: 24688
    I. 04/01 15:10:00. 0000000027 allocatedMemory: 16777216
    I. 04/01 15:10:00. 0000000027 inserter*: 1072
    I. 04/01 15:10:00. 0000000027     ColStore array sizeof: 840
    I. 04/01 15:10:00. 0000000027     Pseudo ColStore sizeof: 48
    I. 04/01 15:10:00. 0000000027 Total: 263865842
    I. 04/01 15:10:00. 0000000027 ExistanceBM:                                            0
    I. 04/01 15:10:00. 0000000027 ------------------------------------------------
    I. 04/01 15:10:00. 0000000027 Cmt 119415977
    I. 04/01 15:10:00. 0000000027 PostCmt 0
    I. 04/01 15:10:00. 0000000027 Txn 119415978 0 119415978
    I. 04/01 15:10:00. 0000000027 Cmt 119415979
    I. 04/01 15:10:00. 0000000027 PostCmt 0
    I. 04/01 15:10:02. 0000001885 Txn 119415980 0 119415980
    I. 04/01 15:10:02. 0000001885 Cmt 119415981
    I. 04/01 15:10:02. 0000001885 PostCmt 0
    I. 04/01 15:10:04. 0000001886 Txn 119415982 0 119415982
    I. 04/01 15:10:04. 0000001886 Cmt 119415983
    I. 04/01 15:10:04. 0000001886 PostCmt 0
    I. 04/01 15:10:06. 0000001887 TabFrag sizeof: 96
    I. 04/01 15:10:06. 0000001887 ColFrag*s sizeof: 120
    I. 04/01 15:10:06. 0000001887                                        nullBitMap:                         992
    I. 04/01 15:10:06. 0000001887                                        SubFragArray*s:                      64
    I. 04/01 15:10:06. 0000001887 nullWriter*: 24
    I. 04/01 15:10:06. 0000001887 ridMap: 24688
    I. 04/01 15:10:06. 0000001887 allocatedMemory: 16777216
    I. 04/01 15:10:06. 0000001887 inserter*: 1072
    I. 04/01 15:10:06. 0000001887         Size of Tkn-ColFrag for Program: 88
    I. 04/01 15:10:06. 0000001887 Dictionary: 10535
    I. 04/01 15:10:06. 0000001887                                        nullBitMap:                         992
    I. 04/01 15:10:06. 0000001887                                        SubFragArray*s:                      64
    I. 04/01 15:10:06. 0000001887 nullWriter*: 24
    I. 04/01 15:10:06. 0000001887 ridMap: 24688
    I. 04/01 15:10:06. 0000001887 allocatedMemory: 16777216
    I. 04/01 15:10:06. 0000001887 inserter*: 1072
    I. 04/01 15:10:06. 0000001887         Size of Tkn-ColFrag for EncNum: 88
    I. 04/01 15:10:06. 0000001887 Dictionary: 2972353
    I. 04/01 15:10:06. 0000001887                                        nullBitMap:                         992
    I. 04/01 15:10:06. 0000001887                                        SubFragArray*s:                      64
    I. 04/01 15:10:06. 0000001887 nullWriter*: 24
    I. 04/01 15:10:06. 0000001887 ridMap: 24688
    I. 04/01 15:10:06. 0000001887 allocatedMemory: 16777216
    I. 04/01 15:10:06. 0000001887 inserter*: 1072
    I. 04/01 15:10:06. 0000001887         Size of Tkn-ColFrag for MRN: 88
    I. 04/01 15:10:06. 0000001887 Dictionary: 2716353
    I. 04/01 15:10:06. 0000001887                                        nullBitMap:                         992
    I. 04/01 15:10:06. 0000001887                                        SubFragArray*s:                      64
    I. 04/01 15:10:06. 0000001887 nullWriter*: 24
    I. 04/01 15:10:06. 0000001887 ridMap: 24688
    I. 04/01 15:10:06. 0000001887 allocatedMemory: 16777216
    I. 04/01 15:10:06. 0000001887 inserter*: 1072
    I. 04/01 15:10:06. 0000001887         Size of Tkn-ColFrag for IntervalStartDtm: 88
    I. 04/01 15:10:06. 0000001887 Dictionary: 1656530
    I. 04/01 15:10:06. 0000001887                                        nullBitMap:                         992
    I. 04/01 15:10:06. 0000001887                                        SubFragArray*s:                      64
    I. 04/01 15:10:06. 0000001887 nullWriter*: 24
    I. 04/01 15:10:06. 0000001887 ridMap: 24688
    I. 04/01 15:10:06. 0000001887 allocatedMemory: 16777216
    I. 04/01 15:10:06. 0000001887 inserter*: 1072
    I. 04/01 15:10:06. 0000001887         Size of Tkn-ColFrag for IntervalEndDtm:                   88
    I. 04/01 15:10:06. 0000001887 Dictionary:                           3393473
    I. 04/01 15:10:06. 0000001887                                        nullBitMap:                         992
    I. 04/01 15:10:06. 0000001887                                        SubFragArray*s:                      64
    I. 04/01 15:10:06. 0000001887 nullWriter*: 24
    I. 04/01 15:10:06. 0000001887 ridMap: 24688
    I. 04/01 15:10:06. 0000001887 allocatedMemory: 16777216
    I. 04/01 15:10:06. 0000001887 inserter*: 1072
    I. 04/01 15:10:06. 0000001887         Size of Tkn-ColFrag for IntervalType:                   88
    I. 04/01 15:10:06. 0000001887 Dictionary: 10535
    I. 04/01 15:10:06. 0000001887                                        nullBitMap:                         992
    I. 04/01 15:10:06. 0000001887                                        SubFragArray*s:                      64
    I. 04/01 15:10:06. 0000001887 nullWriter*: 24
    I. 04/01 15:10:06. 0000001887 ridMap: 24688
    I. 04/01 15:10:06. 0000001887 allocatedMemory: 16777216
    I. 04/01 15:10:06. 0000001887 inserter*: 1072
    I. 04/01 15:10:06. 0000001887         Size of Tkn-ColFrag for IntervalDuration:                   88
    I. 04/01 15:10:06. 0000001887 Dictionary: 140422
    I. 04/01 15:10:06. 0000001887                                        nullBitMap:                         992
    I. 04/01 15:10:06. 0000001887                                        SubFragArray*s:                      64
    I. 04/01 15:10:06. 0000001887 nullWriter*: 24
    I. 04/01 15:10:06. 0000001887 ridMap: 24688
    I. 04/01 15:10:06. 0000001887 allocatedMemory: 16777216
    I. 04/01 15:10:06. 0000001887 inserter*: 1072
    I. 04/01 15:10:06. 0000001887         Size of Tkn-ColFrag for PhysFirstName:                   88
    I. 04/01 15:10:06. 0000001887 Dictionary: 14687
    I. 04/01 15:10:06. 0000001887                                        nullBitMap:                         992
    I. 04/01 15:10:06. 0000001887                                        SubFragArray*s:                      64
    I. 04/01 15:10:06. 0000001887 nullWriter*: 24
    I. 04/01 15:10:06. 0000001887 ridMap: 24688
    I. 04/01 15:10:06. 0000001887 allocatedMemory: 16777216
    I. 04/01 15:10:06. 0000001887 inserter*: 1072
    I. 04/01 15:10:06. 0000001887         Size of Tkn-ColFrag for PhysLastName:                   88
    I. 04/01 15:10:06. 0000001887 Dictionary:                             14687
    I. 04/01 15:10:06. 0000001887                                        nullBitMap:                      132232
    I. 04/01 15:10:06. 0000001887                                        SubFragArray*s:                      64
    I. 04/01 15:10:06. 0000001887 nullWriter*: 24
    I. 04/01 15:10:06. 0000001887 ridMap: 24688
    I. 04/01 15:10:06. 0000001887 allocatedMemory: 16777216
    I. 04/01 15:10:06. 0000001887 inserter*: 1072
    I. 04/01 15:10:06. 0000001887         Size of Tkn-ColFrag for PhysNum: 88
    I. 04/01 15:10:06. 0000001887 Dictionary: 10535
    I. 04/01 15:10:06. 0000001887                                        nullBitMap:                         992
    I. 04/01 15:10:06. 0000001887                                        SubFragArray*s:                      64
    I. 04/01 15:10:06. 0000001887 nullWriter*: 24
    I. 04/01 15:10:06. 0000001887 ridMap: 24688
    I. 04/01 15:10:06. 0000001887 allocatedMemory: 16777216
    I. 04/01 15:10:06. 0000001887 inserter*: 1072
    I. 04/01 15:10:06. 0000001887         Size of Tkn-ColFrag for Location:                   88
    I. 04/01 15:10:06. 0000001887 Dictionary: 10535
    I. 04/01 15:10:06. 0000001887                                        nullBitMap:                         992
    I. 04/01 15:10:06. 0000001887                                        SubFragArray*s:                      64
    I. 04/01 15:10:06. 0000001887 nullWriter*: 24
    I. 04/01 15:10:06. 0000001887 ridMap: 24688
    I. 04/01 15:10:06. 0000001887 allocatedMemory: 16777216
    I. 04/01 15:10:06. 0000001887 inserter*: 1072
    I. 04/01 15:10:06. 0000001887         Size of Tkn-ColFrag for DiseaseSite:                   88
    I. 04/01 15:10:06. 0000001887 Dictionary:                             17247
    I. 04/01 15:10:06. 0000001887                                        nullBitMap:                      132232
    I. 04/01 15:10:06. 0000001887                                        SubFragArray*s:                      64
    I. 04/01 15:10:06. 0000001887 nullWriter*: 24
    I. 04/01 15:10:06. 0000001887 ridMap: 24688
    I. 04/01 15:10:06. 0000001887 allocatedMemory: 16777216
    I. 04/01 15:10:06. 0000001887 inserter*: 1072
    I. 04/01 15:10:06. 0000001887         Size of Tkn-ColFrag for Priority: 88
    I. 04/01 15:10:06. 0000001887 Dictionary: 9471
    I. 04/01 15:10:06. 0000001887                                        nullBitMap:                      132232
    I. 04/01 15:10:06. 0000001887                                        SubFragArray*s:                      64
    I. 04/01 15:10:06. 0000001887 nullWriter*: 24
    I. 04/01 15:10:06. 0000001887 ridMap: 24688
    I. 04/01 15:10:06. 0000001887 allocatedMemory: 16777216
    I. 04/01 15:10:06. 0000001887 inserter*: 1072
    I. 04/01 15:10:06. 0000001887         Size of Tkn-ColFrag for DelayReason: 88
    I. 04/01 15:10:06. 0000001887 Dictionary: 9471
    I. 04/01 15:10:06. 0000001887 ColFrag for ExcludeFlag:                                64
    I. 04/01 15:10:06. 0000001887                                        nullBitMap:                         992
    I. 04/01 15:10:06. 0000001887                                        SubFragArray*s:                      64
    I. 04/01 15:10:06. 0000001887 nullWriter*: 24
    I. 04/01 15:10:06. 0000001887 ridMap: 24688
    I. 04/01 15:10:06. 0000001887 allocatedMemory: 262144
    I. 04/01 15:10:06. 0000001887 inserter*: 1072
    I. 04/01 15:10:06. 0000001887 PseudoCol frag:                                64
    I. 04/01 15:10:06. 0000001887                                        nullBitMap:                      132232
    I. 04/01 15:10:06. 0000001887                                        SubFragArray*s:                      64
    I. 04/01 15:10:06. 0000001887             SubFragmentFixColumn:                      96
    I. 04/01 15:10:06. 0000001887                 nullWriter*:                           24
    I. 04/01 15:10:06. 0000001887 ridMap: 24688
    I. 04/01 15:10:06. 0000001887 allocatedMemory: 16777216
    I. 04/01 15:10:06. 0000001887 inserter*: 1072
    I. 04/01 15:10:06. 0000001888 Txn 119415984 0 119415984
    I. 04/01 15:10:06. 0000001888 Cmt 119415985
    I. 04/01 15:10:06. 0000001888 PostCmt 0
    I. 04/01 15:10:08. 0000001889 Txn 119415986 0 119415986
    I. 04/01 15:10:08. 0000001889 Cmt 119415987
    I. 04/01 15:10:08. 0000001889 PostCmt 0
    I. 04/01 15:10:10. 0000001890 Txn 119415988 0 119415988
    I. 04/01 15:10:10. 0000001890 Cmt 119415989
    I. 04/01 15:10:10. 0000001890 PostCmt 0
    I. 04/01 15:10:12. 0000001891 Txn 119415990 0 119415990
    I. 04/01 15:10:12. 0000001891 Cmt 119415991
    I. 04/01 15:10:12. 0000001891 PostCmt 0
    I. 04/01 15:10:14. 0000001892 Txn 119415992 0 119415992
    I. 04/01 15:10:14. 0000001892 Cmt 119415993
    I. 04/01 15:10:14. 0000001892 PostCmt 0
    I. 04/01 15:10:35. 0000000000 Cancellation request received:  SA connHandle: 1  SA connID: 19 IQ connID: 0000000019  User: DBA
    I. 04/01 15:10:55. 0000000000 Cancellation request received:  SA connHandle: 1  SA connID: 19 IQ connID: 0000000019  User: DBA
    I. 04/01 15:10:55. 0000001894 Collation ISO_BINENG, Case Respect, Blank Padding On, Comparisons are Binary
    I. 04/01 15:12:55. 0000000000 Cancellation request received: 
    I. 04/01 15:13:31. 0000001897 Collation ISO_BINENG, Case Respect, Blank Padding On, Comparisons are Binary
    I. 04/01 15:14:55. 0000000000 Cancellation request received: 
    I. 04/01 15:15:31. 0000000000 Cancellation request received: 
    I. 04/01 15:16:31. 0000001898 Collation ISO_BINENG, Case Respect, Blank Padding On, Comparisons are Binary

  • What to do when my Macbook air won't load from startup. It hangs in the middle during the black apple screen at the beginning

    my Mac book air will not start up it hangs in the middle of the status bar when I turn it on and will not move.

    Take each of these steps that you haven't already tried. Stop when the problem is resolved.
    To restart an unresponsive computer, press and hold the power button for a few seconds until the power shuts off, then release, wait a few more seconds, and press it again briefly.
    Step 1
    The first step in dealing with a startup failure is to secure the data. If you want to preserve the contents of the startup drive, and you don't already have at least one current backup, you must try to back up now, before you do anything else. It may or may not be possible. If you don't care about the data that has changed since the last backup, you can skip this step.
    There are several ways to back up a Mac that is unable to start. You need an external hard drive to hold the backup data.
    a. Start up from the Recovery partition, or from a local Time Machine backup volume (option key at startup.) When the OS X Utilities screen appears, launch Disk Utility and follow the instructions in this support article, under “Instructions for backing up to an external hard disk via Disk Utility.” The article refers to starting up from a DVD, but the procedure in Recovery mode is the same. You don't need a DVD if you're running OS X 10.7 or later.
    b. If Step 1a fails because of disk errors, and no other Mac is available, then you may be able to salvage some of your files by copying them in the Finder. If you already have an external drive with OS X installed, start up from it. Otherwise, if you have Internet access, follow the instructions on this page to prepare the external drive and install OS X on it. You'll use the Recovery installer, rather than downloading it from the App Store.
    c. If you have access to a working Mac, and both it and the non-working Mac have FireWire or Thunderbolt ports, start the non-working Mac in target disk mode. Use the working Mac to copy the data to another drive. This technique won't work with USB, Ethernet, Wi-Fi, or Bluetooth.
    d. If the internal drive of the non-working Mac is user-replaceable, remove it and mount it in an external enclosure or drive dock. Use another Mac to copy the data.
    Step 2
    If the startup process stops at a blank gray screen with no Apple logo or spinning "daisy wheel," then the startup volume may be full. If you had previously seen warnings of low disk space, this is almost certainly the case. You might be able to start up in safe mode even though you can't start up normally. Otherwise, start up from an external drive, or else use the technique in Step 1b, 1c, or 1d to mount the internal drive and delete some files. According to Apple documentation, you need at least 9 GB of available space on the startup volume (as shown in the Finder Info window) for normal operation.
    Step 3
    Sometimes a startup failure can be resolved by resetting the NVRAM.
    Step 4
    If a desktop Mac hangs at a plain gray screen with a movable cursor, the keyboard may not be recognized. Press and hold the button on the side of an Apple wireless keyboard to make it discoverable. If need be, replace or recharge the batteries. If you're using a USB keyboard connected to a hub, connect it to a built-in port.
    Step 5
    If there's a built-in optical drive, a disc may be stuck in it. Follow these instructions to eject it.
    Step 6
    Press and hold the power button until the power shuts off. Disconnect all wired peripherals except those needed to start up, and remove all aftermarket expansion cards. Use a different keyboard and/or mouse, if those devices are wired. If you can start up now, one of the devices you disconnected, or a combination of them, is causing the problem. Finding out which one is a process of elimination.
    Step 7
    If you've started from an external storage device, make sure that the internal startup volume is selected in the Startup Disk pane of System Preferences.
    Start up in safe mode. Note: If FileVault is enabled in OS X 10.9 or earlier, or if a firmware password is set, or if the startup volume is a software RAID, you can’t do this. Post for further instructions.
    Safe mode is much slower to start and run than normal, and some things won’t work at all, including wireless networking on certain Macs.
    The login screen appears even if you usually log in automatically. You must know the login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin.
    When you start up in safe mode, it's normal to see a dark gray progress bar on a light gray background. If the progress bar gets stuck for more than a few minutes, or if the system shuts down automatically while the progress bar is displayed, the startup volume is corrupt and the drive is probably malfunctioning. In that case, go to Step 11. If you ever have another problem with the drive, replace it immediately.
    If you can start and log in in safe mode, empty the Trash, and then open the Finder Info window on the startup volume ("Macintosh HD," unless you gave it a different name.) Check that you have at least 9 GB of available space, as shown in the window. If you don't, copy as many files as necessary to another volume (not another folder on the same volume) and delete the originals. Deletion isn't complete until you empty the Trash again. Do this until the available space is more than 9 GB. Then restart as usual (i.e., not in safe mode.)
    If the startup process hangs again, the problem is likely caused by a third-party system modification that you installed. Post for further instructions.
    Step 8
    Launch Disk Utility in Recovery mode (see Step 1.) Select the startup volume, then run Repair Disk. If any problems are found, repeat until clear. If Disk Utility reports that the volume can't be repaired, the drive has malfunctioned and should be replaced. You might choose to tolerate one such malfunction in the life of the drive. In that case, erase the volume and restore from a backup. If the same thing ever happens again, replace the drive immediately.
    This is one of the rare situations in which you should also run Repair Permissions, ignoring the false warnings it may produce. Look for the line "Permissions repair complete" at the end of the output. Then restart as usual.
    Step 9
    If the startup device is an aftermarket SSD, it may need a firmware update and/or a forced "garbage collection." Instructions for doing this with a Crucial-branded SSD were posted here. Some of those instructions may apply to other brands of SSD, but you should check with the vendor's tech support.  
    Step 10
    Reinstall the OS. If the Mac was upgraded from an older version of OS X, you’ll need the Apple ID and password you used to upgrade.
    Step 11
    Do as in Step 9, but this time erase the startup volume in Disk Utility before installing. The system should automatically restart into the Setup Assistant. Follow the prompts to transfer the data from a Time Machine or other backup.
    Step 12
    This step applies only to models that have a logic-board ("PRAM") battery: all Mac Pro's and some others (not current models.) Both desktop and portable Macs used to have such a battery. The logic-board battery, if there is one, is separate from the main battery of a portable. A dead logic-board battery can cause a startup failure. Typically the failure will be preceded by loss of the settings for the startup disk and system clock. See the user manual for replacement instructions. You may have to take the machine to a service provider to have the battery replaced.
    Step 13
    If you get this far, you're probably dealing with a hardware fault. Make a "Genius" appointment at an Apple Store, or go to another authorized service provider.

  • ODI Scenario Hang on ODI Procedure

    Hi Experts,
    We have one ODI scenario which consists of a few ODI procedure steps with anonymous PL/SQL block. When one procedure takes a long time to process data (>60min. when data volume is large), the ODI scenario hangs intermittently on the procedure (ODI Operator shows Running state and no progress to next step in Scenario). The pl/sql script finished fine when running against database directly processing the same dataset.
    When the ODI step hangs, the database side where the pl/sql runs on has no more activities, and the db session(v$session) which processes the ODI procedure goes away as well (db session not existing on db anymore). But the ODI Operator still shows the step in running state and hangs there forever (days). The jdbc connection from ODI to db looks fine.
    How can we fix this problem in ODI? The ODI version is 10.1.3.5.
    Appreciate your input on this.
    Thanks,

    The doc said "If your command is being executed in a transaction (numbered 0 to 9)" then I should set 'Commit'. But I used 'Autocommit' for transaction, is the 'Commit' necessary here?
    Thanks!

  • 1. The procedure called by CUSTOM.pll causes the problem when we use f60gen

    When CUSTOM.pll contains a call to a package that in turn calls a remote package, the CUSTOM.pll compile hangs forever.
    1. The procedure called by CUSTOM.pll causes the problem when we use f60gen. Though same procedure compiles successfully using "alter procedure compile" command.
    2. We have observed the problem happens due to synonym present on the remote database(db link).
    It doesn’t work if you are calling SYNONYM on remote database. It works, for calls to tables or procedures or packages in remote database if that object is OWNED DIRECTLY by the account to which dblink is connecting to.
    select object_name, object_type from user_objects@NH_SCM_ICE.DB.ATT.COM ;
    OBJECT_NAME OBJECT_TYPE
    FA_LOCATIONS SYNONYM
    FND_FLEX_VALUES SYNONYM

    The database link is created under the APPS user in the local database but connects to a different user (SWCS_ICE_SUPCHAIN) in the remote database.
    The user in the remote database does not own any objects. It only has synonyms to objects owned by apps and others.
    Incidentally, the hang also happens when trying to describe the remote package from the application tier (8.0.6.3 sqlplus) but the describe works fine from the DB tier (10gR2 sqlplus).

  • I unable to drop the procedure created by me

    i have created a procedure using sql workshop. procedure compiled successfully.
    when i am trying to run the procedure i got hanged. then i try to drop that procedure, i am not able to drop. The window is hanging i need to relogin agin. what might be the problem?

    You can't drop a procedure that is in use by another session. You will need to wait for it to finish (if it ever will), or kill the session that is currently running the proc.
    Anton

  • Switched computer cases and now I hang at the MSI splash screen.

    Hey guys. I've never had any problems with building my PC until yesterday on the simplest of tasks.
    I decided to buy a new case and switch everything over but when I did it decided to hang on the MSI motherboard splash screen.
    Specs:
    * MEM 4Gx2|G.SKILL F3-12800CL9D-8GBXL + one more stick.
    * Processor = AMD Phenom II X6 1055T Thuban 2.8GHz Socket AM3 125W Six-Core Desktop Processor HDT55TFBGRBOX
    * Graphics Card = HD 7950
    * Motherboard = MB MSI| 880GM-E41 880G R
    * PSU = CORSAIR CX series CX500 500W ATX12V v2.3 80 PLUS BRONZE Certified Active PFC Power Supply
    * OS = Windows 7 64Bit
    * No overclocking.
    So far I've done the following. 
    * Removed battery/Jumped the bios. 
    * Checked and rechecked each RAM stick. 
    * Removed all connections. 
    * Removed graphics card etc. 
    Any help would be greatly appreciated, Christmas has kind of killed my budget for a new build.
    Thanks!
    These are as far as I can get before everything stops working.

    Really strange.
    Have you made sure that there was will be/was no contact between mobo and case (apart from spots where the contact should be made) ? This could've break the motherboard.
    Check ALL of the power supply cable connections between it and mobo.
    Now something weird which doesn't seen to make any sense... Try to put your motherboard back to the old case.
    That's all my suggestions, apart from that, if you're still able, then get it on a warranty and RMA it.
    Good luck.

  • When I allowed an upgrade to Itunes on my HP Windows 7 computer now I have this error message when I turn on my computer:  AppleSyncNotifier.exe-Entry Point Not Found.  The the explanation in the dialogue box says:  The procedure entry point sqlite3_wal_

    Error message after allowing an upgrade:My dialogue box in the error message says:  The procedure entry point sqlite3_wal_checkpoint could not be located in the dynamic link library SQLite3.dll--this happened after I allowed an upgrade to be installed.  I have HP Windows 7.  Now my Iphone will not sync.  What do I do?

    Found this fix here which worked for me with a similar problem.
    https://discussions.apple.com/thread/3196594?start=0&tstart=0
    With Windows Explorer, navigate to your C:\Program Files\Common Files\Apple\Apple Application Support folder.
    Copy the SQLite3.dll that you should find there, navigate to the nearby Mobile Device Support folder, and Paste it in there also.
    Reboot and see if all is well.

  • Calculate the total value of payments with the procedures and triggers?

    Hello!
    I work for a college project and I have a big problem because professor requires to do it by the examples he gives during the lecture. Here's an example that should be applied to its base, so please help!
    I have three table with that should work:
    Invoice (#number_of_invoices, date, comm, total_payment, number_of_customer, number_of_dispatch)
    where:
    number_of_invoices primary key (number),
    date (date),
    comm (var2),
    total_payment is UDT (din - currency in my country) - in this field should be entered value is calculated
    number_of_customer and number_of_dispatch (number) are foreign keys and they are not relevant for this example
    Invoice_items (#serial_number, #number_of_invoices, quantity, pin)
    serial_number primary key (number),
    number_of_invoices primary key (number),
    quantity (number),
    pin foreign keys (number)
    Item (#pin, name, price, tax, price_plus_tax)
    pin primary key (number),
    name (var2),
    price, tax, UDT (din) not relevant for this example
    price_plus_tax UDT (din)
    These are the triggers and procedures with my calculation should be done:
    trigger1:
    CREATE OR REPLACE TRIGGER  "trg1"
    BEFORE INSERT OR UPDATE OR DELETE ON Invoice_items
    FOR EACH ROW
    BEGIN  
         IF (INSERTING OR UPDATING)
         THEN     
              BEGIN Invoice_items.number_of_invoices := :NEW.number_of_invoices; END;
         ELSE
              BEGIN Invoice_items.number_of_invoices :=: OLD.number_of_invoices; END;  
         END IF;
    END;trigger2:
    CREATE OR REPLACE TRIGGER  "trg2"
    AFTER INSERT OR UPDATE OR DELETE ON Invoice_items
    DECLARE
    doc NUMBER := Invoice_items.number_of_invoices;
    BEGIN  
         entire_payment (doc);
    END;procedure
    CREATE OR REPLACE PROCEDURE  "entire_payment" (code_of_doc IN NUMBER) AS 
    entire NUMBER := 0;
    BEGIN 
         SELECT SUM (a.price_plus_tax * i.quantity) INTO entire
         FROM Item a join Invoice_items i on (a.pin = i.pin) 
         WHERE number_of_invoices = code_of_doc;
         UPDATE Invoice
         SET total_payment = entire
         WHERE number_of_invoices = code_of_doc;
    END;As you can see the procedure is called from the triggers, I have a problem at the first trigger, and I think it will be even higher in procedure because UDT, field "total_payment".

    I was not here a few days because I was trying to get additional information related to this problem. Professor gave me the information that I need to introduce a package and variable to get this thing work. But including that I still have problem. I hope that this time is less of a problem and that someone will be able to help me.
    I also noticed that it was not a smart idea to try to translate the names of tables and attributes. That make trouble for me, especially you who are trying to understand and to help me, and absolutely nothing that will change the attribute and the table name will be. So this time I will set out the problem with the original name again to avoid confusion.
    So, I try to base Implement optimization technique called: Repeating Single Detail with Master (so writes the slides that I received from professor, I hope that will mean something to you)
    These are the lines of code that we get on the slides and should implement in the base, again I remind you that at this time in its original form, without translation.
    - First create the package variable:
    create or replace
    package paket
    AS
    sifra number(10):=0;
    end;This part is ok and it works.
    - Secondly, it is necessary to create the first trigger:
    create or replace
    TRIGGER aktuelna_cena1
    BEFORE INSERT OR UPDATE OR DELETE ON cena_artikla
    FOR EACH ROW
    BEGIN
         IF (INSERTING OR UPDATING)
         THEN      
              BEGIN paket.sifra := :NEW.sifra_artikla; END;
         ELSE
              BEGIN paket.sifra := :OLD.sifra_artikla; END;
        END IF;
    END;This part is ok and working.
    Now the problems begin.
    - It is necessary to create another trigger that will call the procedure:
    create or replace
    TRIGGER aktuelna_cena2
    AFTER INSERT OR UPDATE OR DELETE ON cena_artikla
    DECLARE  
         s NUMBER := paket.sifra;
    BEGIN  
         aktuelnacena (s);
    END;I suppose the trigger have problem because procedure is not ok.
    I will copy error that I get from the compiler:
    Error(7,2): PL/SQL: Statement ignored
    Error(7,2): PLS-00905: object NUMBER6.AKTUELNACENA is invalid
    And finally, it is necessary to create the procedure:
    create or replace
    PROCEDURE  aktuelnacena (SifraPro IN NUMBER) AS 
    aktCena artikal.aktuelna_cena%type;
    BEGIN aktCena:=0;
                    SELECT cena INTO aktCena
                    FROM cena_artikla 
                    WHERE sifra_artikla=SifraPro and datum_od=
                                    (select max(datum_od)
                                    from cena_artikla
                                    where sifra_artikla = SifraPro and datum_od<=sysdate); 
                    UPDATE artikal
                    SET aktuelna_cena = aktCena
                    WHERE sifra_artikla = SifraPro;
    END;I will copy error that I get from the compiler:
    Error(10,57): PLS-00103: Encountered the symbol " " when expecting one of the following: ( begin case declare end exception exit for goto if loop mod null pragma raise return select update while with << continue close current delete fetch lock insert open rollback savepoint set sql execute commit forall merge pipe purge The symbol " " was ignored.
    Tables I work with are:
    Artikal (sifra_artikla, naziv, aktuelna_cena),
    Cena_artikla (sifra_artikla, datum_od, cena)
    You will notice that this differs from the first problem, but my task is to implement the two optimization techniques and my base. Both techniques are quite similar and I hope that I now have enough information to help me. I suppose that when this problem is solved the othet one will too!
    Thank in advance!

  • My P62290ea will usually start OK in the morning, but sometimes it hangs on the Windows screen.

    I am running Win7 home Premium 64bit SP1. When I start up in the morning usually the PC loads OK. However, often it hangs on the Windows screen and I have to reboot and sometimes it is OK and other times I have to go via the HP srart-up screen. This inconsistency is very confusing and frustrating. Can anyone help?

    Hello amorriss,
    You have a frustrating issue to troubleshoot because of the randomness. We can try troubleshooting, but hard to say if it fixes it or not for a while.
    Try putting the computer into a clean boot state, you can find instructions on this forum thread, http://goo.gl/w3KQH.
    Once in a clean boot state see if you can get the problem to happen
    If it does then we know it's not a program that is starting up causing the issue instead it is likely a driver.
    If it doesn't then one of the programs that was booting when Windows boots was causing a conflict, the trick is figuring out which one.
    If I have helped you in any way click the Kudos button to say Thanks.
    The community works together, click Accept as Solution on the post that solves your issue for other members of the community to benefit from the solution.
    - Friendship is magical.

  • Firedox did a restart, now it wont open i get the message The procedure point js_UnwrapObjectAndInnerize could not be located in the dynamic link library

    firefox did a restart now it wont open, i get the following message,
    The procedure point js_UnwrapObjectAndInnerize could not be located in the dynamic link library
    have tried system restore but this didnt help

    Do a clean reinstall and delete the Firefox program folder (C:\Program Files\Mozilla Firefox\) before reinstalling a fresh copy of Firefox.
    *http://kb.mozillazine.org/Installation_directory
    Download a fresh Firefox copy and save the file to the desktop.
    *Firefox 15.0.x: http://www.mozilla.org/en-US/firefox/all.html
    Uninstall your current Firefox version, if possible, to cleanup the Windows registry and settings in security software.
    *Do NOT remove personal data when you uninstall your current Firefox version, because all profile folders will be removed and you will also lose your personal data like bookmarks and passwords from profiles of other Firefox versions.
    Remove the Firefox program folder before installing that newly downloaded copy of the Firefox installer.
    *It is important to delete the Firefox program folder to remove all the files and make sure that there are no problems with files that were leftover after uninstalling.
    *http://kb.mozillazine.org/Uninstalling_Firefox
    Your bookmarks and other profile data are stored in the Firefox Profile Folder and won't be affected by an uninstall and (re)install, but make sure that "remove personal data" is NOT selected when you uninstall Firefox.
    *http://kb.mozillazine.org/Profile_folder_-_Firefox
    *http://kb.mozillazine.org/Profile_backup
    *http://kb.mozillazine.org/Standard_diagnostic_-_Firefox#Clean_reinstall

  • Bw web report plugin http session hangs at the server side

    Hi,
    I am having problems when closing the browser of a BW web report. After I closed the browser by going File->close, I ran SM04 and found out the Plugin HTTP session hangs at the server side.
    How can we terminate the Plugin HTTP session at the server side when user closes the internet browser?
    I did implement a logoff function at my web template, if user clicks on the logoff, the Plugin HTTP session is terminated at server side correctly. But As you know, 50% of time user will close the report by closing the internet browser instead of clicking the logoff. That leaves lots of hanging Plugin HTTP sessions at our server side.
    By the way, we actived our BEX service at the SICF.
    Thanks for help!
    JA

    Hi
    If you want to avoid a blank page with logoff button, add opener=0
    <a href="<SAP_BW_URL CMD='LOG_OFF' ~command='logoff'
    >" onClick="javascript:window.close(opener=0);">Log off</a>
    If you want to close the session via X, use this code:
    create a sapscript function
    function closeSession()
    logoff()
    window.unload=CloseSession()
    However, the Plugin HTTP session isn't killed.
    Regards

  • Pass a value to the procedure from jsp

    Hi I need a help..
    I have a jsp page which has the value , And I have one stored procedure in a java file. I have to pass this
    selected month to that stored procedure. there are 2 input parameters and one out parameter which returns a date files. If i hard code the input parameters i am able to get the date field. the first parameter is in session, that is divisionCode. So no problem with that... but other value the selectedMoth "12/2003" should be passed from the jsp.
    help me how to achive this....
    my jsp code is
    <%
    String selectedMonth = request.getParameter("selectedMonth");
    String monthLastDate = callPLSQLFunc.getmonthLastDate(divisionCode);
    System.out.println("Month Last date is " +monthLastDate);
    %>my calling procedure
    public String monthLastDate(String divisionCode, String selectedMonth) {
            CallableStatement stmt = null;
            ResultSet rs=null;
            String lastDate ="";
          try {
              System.out.println("calling the procedure for month end date");
           //  stmt = con.prepareCall ("{?= call easmsa_front_end_routines_pkg.get_month_end_date(?,?)}");
             System.out.println("calling the procedure for month end date");
            stmt = con.prepareCall("begin easmsa_front_end_routines_pkg.get_month_end_date_prc(?,?,?); end;");
            stmt.setString(1,divisionCode);
            System.out.println("division Code is " +divisionCode);
            System.out.println("The last_date 1 ");
           //  stmt.registerOutParameter(2, oracle.jdbc.OracleTypes.VARCHAR);
             stmt.setString(2,selectedMonth);
             System.out.println("The last_date 2 " +selectedMonth);
             stmt.registerOutParameter(3, oracle.jdbc.OracleTypes.DATE);
             System.out.println("The last_date 3 ");
             stmt.execute();
             System.out.println("getting the value");
         //    lastDate = stmt.getDate(3);
             System.out.println(stmt.getDate(3));
        //     System.out.println("The last_date " +lastDate);
            } catch (SQLException e) {
                e.printStackTrace();
            return lastDate;
        public String getmonthLastDate(String divisionCode,String selectedMonth){
            String monthLastDate = monthLastDate(divisionCode,selectedMonth);
            return monthLastDate;

    Well, you'd just pass the parameter ....
    String monthLastDate = callPLSQLFun.getmonthLstDate(divisionCode, selectedMonth);
    [/code[
    ... or am I totall misunderstanding your question??
    Also, you have two methods which are public, and all one does is call the other with exactly the same parameters passed.  Why not just call monthLastDate() instead of getmonthLastDate() ... it does exactly th same thing, only without the extra call.
    I think maybe you need to grasp the basics of Java a little better before delving into the world of JSP.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

Maybe you are looking for

  • How to revert back a SAP NOTE? Dump- Field symbol has not yet been assigned

    Hi Experts, We r getting dump(cause: Field symbol has not yet been assigned) in production for ABUMN tx, so, when debugged, it came to know that, the Field symbol is coming from REUSE_ALV_LIST_DISPLAY!! So, for some reason the system message text is

  • Displaying image from Database with php

    Hello everybody, I'm working on a website that displays videos courses and tutorials as my final project and I'm working with "Flash builder 4" the database with mySQL and the application server with php Basically, the goal is to display a datagrid t

  • Error when activate I/O: inconsistency DD - DB

    Hello gurus, I modified the IO 0COSTELMNT in Dev system, I added two custom IO as attributes. I modified the transfer rule and Communication Structure. I transported the modify with success and I load the master data in order to populate the new attr

  • In Firefox 3.6.6 gmail won't stay open; calendar opens on top of it

    when i open (with a button or bookmark) or if i type in google's mail URL, the google calendar opens on top of it almost immediately. this does not happen in other browsers or in previous releases, it's new since installation of firefox 3.6.6. i trie

  • System.out.println in J2ME

    Hi... My question is very simple. When we write System.out.println("ok") ; it's prints on sun wtk toolkit window but when we run code on actual mobile where it prints. Hope you understand.