Estimation of archive generation

Hi Experts,
I am planning to shrink a segment in production db to reclaim the space.The size of the table is 217 gb and on calculation it's size estimated to be max 50 gb keeping the consideration of overhead in the blocks due to PCTFREE etc..The agenda is to estimate the archive generation so that I could be ready for the space at OS to accomodate the archive generation for this shrink activity.Pls suggest me for some way to estimate archives generation before this operation so as to make it successful..Here are the details that may be required by you
DB: 10.2.0.4 Enterprise edition
OS: server 2003 (windows)
index on table: 1 unique index of size 12gb

Hi Aman/Kuljeet
I have already tested this on t&d server but since the data and the size was quite small than real so came up with this question.However I observed that aprox 4 times the archives was generated than the space reclaimed..Now using this observation it comes to 600 gb in production aprox which was a concern for keeping our dataguard in sync..Anyways thanks a lot for your response.
Regards
Asif Khan

Similar Messages

  • Excess archive generation after migration

    hi
    Am facing large size of archive generation after my migration to 11.2.0.1 from 10.2.0.1 in windows 32 bit.
    While I was using 10g my total archive size in a day was only 10GB. now after the migration its coming al most 50gb.
    Guys.. can anybody let me know what i need to do to reduce my archive generation?
    Am using the same application and queries as in 10g.

    Disconnect everyone from the database.
    Or learn how to read documentation and how to administer Oracle.
    Or read up on the differences between 11gR2 and 10gR2.
    Sybrand Bakker
    Senior Oracle DBA

  • Archive generation is too high

    HI
    Archive generation is too high in my 11i instance the database is 10g every 7 minutes a 100mb(size of redo log is 100mb) archive is generated.
    There are 15 seeded programs running at a schdule of 1 minutes to 2 minutes can some one give me any tips as to waht has to be done.
    Regards

    Hi,
    Please refer to this thread.
    Archive generation
    Archive generation
    Regards,
    Hussein

  • Excessive archive generation

    DB: 817
    OS : Sun 5.3
    Suddenly my db started generating too many archive logs, normally it used to generate dozens of archive logs in a day, now a day's it's started generating in 2 to 3 minutes, Nothing has been change in the database side and at application side. What could be the obviosu reason for the same?

    Hi Vignesh,
    Thanks for the reply, I have checked, there is no background job or process is running.... Still rate of archive generation is very high.

  • Oracle 9i Streams - Lots of Archive generation.

    Hi,
    We are using Oracle 9i stream for data replication between two database servers running in ARCHIVELOG mode.
    We observed during data replication , with very few transactions, lots of redo, and hence the archived logs are getting generated, which is almost 2.5G per dae. What might be the reason for generation of lots of REDO ? This redo generation is almost 20 times more than the normal redo generation when replication process (capture, propagation and apply process) was not running. Stream replication do generate redo in multiple of normal redo, but not as big as we are getting. What might be the reason for the same.
    Kamlesh C

    Hello,
    You can query the v$sesstat and v$session view so as to find the session which generates
    the most redo. For instance:
    select a.sid, a.serial#, a.username, a.program, b.value "Redo blocks written"
    from v$session a, v$sesstat b
    where a.sid=b.sid
    and b.statistic# = (select statistic# from v$statname
                        where name = 'redo size')
    order by b.value;The query should be executed when the database is generating the Archived logs.
    Hope this help.
    Best regards,
    Jean-Valentin

  • How to check archive generation?

    Hi,
    lot of archives generating in my db.
    how can i know which session is generating more archives? is there any sql for it?
    please suggest me how to face these kind of issue?

    Hi,
    To find sessions generating lots of redo, you can use either of the following methods. Both methods examine the amount of undo generated. When a transaction generates undo, it will automatically generate redo as well.
    The methods are:
    1) Query V$SESS_IO. This view contains the column BLOCK_CHANGES which indicates how much blocks have been changed by the session. High values indicate a session generating lots of redo.
    The query you can use is:
           SQL> SELECT s.sid, s.serial#, s.username, s.program,
             2  i.block_changes
             3  FROM v$session s, v$sess_io i
             4  WHERE s.sid = i.sid
             5  ORDER BY 5 desc, 1, 2, 3, 4;Run the query multiple times and examine the delta between each occurrence of BLOCK_CHANGES. Large deltas indicate high redo generation by the session.
    2) Query V$TRANSACTION. These view contains information about the amount of undo blocks and undo records accessed by the transaction (as found in the USED_UBLK and USED_UREC columns).
    The query you can use is:
          SQL> SELECT s.sid, s.serial#, s.username, s.program,
            2  t.used_ublk, t.used_urec
            3  FROM v$session s, v$transaction t
            4  WHERE s.taddr = t.addr
            5  ORDER BY 5 desc, 6 desc, 1, 2, 3, 4;Run the query multiple times and examine the delta between each occurrence of USED_UBLK and USED_UREC. Large deltas indicate high redo generation by the session.
    You use the first query when you need to check for programs generating lots of redo when these programs activate more than one transaction. The latter query can be used to find out which particular transactions are generating redo
    Regards,
    Francisco Munoz Alvarez
    www.oraclenz.com

  • Archive Generation in RAC environment.

    Gems,
    I have one doubt it was not able to solve from my mind i.e.
    As per my knowledge,
    1) Every instance has its own thread so Thread is instance specific. My questions are, How the SCN will be maintained in ARCHIVES? will thread 1 & thread2 contains the same SCN?
    2) If i have primary database with two nodes, and standby as single stand alone, How it will apply the archives on standby? I monitored ALERT log file of standby, Mostly it applies first thread 1 sequence, then thread2 sequence then thread1 sequence and then thread 2 sequence and so on.. Let me know if my assumption is wrong.
    3) If i cloned from RAC to NON-RAC then, If in case if i performed SCN based recovery as
    run
    set until scn 10000;
    restore database;
    recover database;
    then scn *10000* will contain in both the archives or only in one archives? or it contains only in one sequence? Please explain me.
    Appriciated for the right answers, If you are unable to understand let me know, I will try to clear up more clearly.
    Thanks

    Hi,
    first of all there are 2 kinds of SCNs. A "global" SCN and a local SCN per instance. Since 10g the SCNs are advanced with a mechanism called BoC (Broadcast on Commit).
    Each time the LGWR writes to the redo log, LGWR sends a message to update the global SCN in all instances and to update the local SCN in all active instances.
    1.) So each RedoLog entry knows the global SCN. So even though you have multiple instances, the SCN is unique (and in order).
    2.) That depends on how the redlogs were written. If e.g. one instance did not write redologs for a while, it could be that 2 logs from instance 1 are needed before the log from instance 2 is needed. But in gerenall it will be "parts of redolog 1 then parts of redolog 2" etc.
    3.) Yes you can, since the (global) SCNs are unique and will be used.
    Regards
    Sebastian

  • DC archive generation - deploy without JDI

    Hi everybody
    I have Web Dynpro DC "parent" depending on WebDynpro DC "child", and no JDI in use.
    I would like to create a deployable archive for father and then one for child and then ask customer's sysadmins to deploy them (e.g. with SDM), as I cannot directly do that.
    I can see that right clicking on the LocalDevelopment~<project name> project folder from WD perspective - WD explorer, I can create an archive.
    Where is it stored? Can I use it for the specified purpose?
    Thanks
    Points will be awarded
    Vincenzo

    Hi Vincenzo,
    All the DC's will be stored in the file system.
    The path for the DC's you can find using Window ->Preferences ->Java Development Infrastructure -> Development Configuration Pool -> Root Folder. You can find the DC's path here.
    Go to the above path, you can find "LocalDevelopment" folder where all the local DC's will be stored. Under "LocalDevelopment" folder -> DCs -> "vendor name" (Ex: sap.com) -> project name -> _comp -> gen -> default -> deploy, you can find the ear file.
    You can use the same file to deploy using SDM.
    Hope this helps!
    Regards,
    VJR.

  • Archive generation growth.

    Hi All,
    DB-10.2.0.2
    Is there any way, we can know, which SQL/Transaction causing the maximum REDO to generate? Also, HOW much redo in terms of MB Oracle generating every seconds.
    hare krishna

    You can see how many archives you have generated recently by running: select * from v$log_history order by first_time desc

  • Archive generation history in 10g

    Hi,
    I want to find out how much archive generated one month back, i am able to get archive history report only 10days, i am not able to get more than 10 days, please share me if you guys have any script or MOS to find out script
    DB: 10g R2
    OS: Linux.
    Thanks

    Yes, but i am not getting old archvie information.
    SQL> SELECT A.*,Round(A.Count#*B.AVG#/1024/1024) Daily_Avg_Mb FROM
    2 ( SELECT To_Char(First_Time,'YYYY-MM-DD') DAY, Count(1) Count#, Min(RECID) Min#, Max(RECID) Max# FROM v$log_history
    GROUP BY To_Char(First_Time,'YYYY-MM-DD') ORDER BY 1 DESC ) A,
    3 4 ( SELECT Avg(BYTES) AVG#, Count(1) Count#, Max(BYTES) Max_Bytes, Min(BYTES) Min_Bytes FROM v$log ) B;
    DAY COUNT# MIN# MAX# DAILY_AVG_MB
    2011-08-10 1 62071 62071 100
    2011-08-09 163 61908 62070 16300
    2011-08-08 565 61343 61907 56500
    2011-08-07 776 60567 61342 77600
    2011-08-06 73 60494 60566 7300
    2011-08-05 149 60345 60493 14900
    2011-08-04 162 60183 60344 16200
    2011-08-03 182 60001 60182 18200
    2011-08-02 148 59853 60000 14800
    2011-08-01 183 59670 59852 18300
    10 rows selected.
    SQL> select
    to_char(first_time,'DD-MM-YY HH24:MM') day, COUNT(*) as total
    from v$log_history where to_char(first_time,'DD-MM-YY HH24:MM') between '07-08-11 06:00' and '08-08-11 09:00'
    group by to_char(first_time,'DD-MM-YY HH24:MM')
    order by day 2 3 4 5 ;
    DAY TOTAL
    07-08-11 06:08 43
    07-08-11 07:08 37
    07-08-11 08:08 37
    07-08-11 09:08 37
    07-08-11 10:08 37
    07-08-11 11:08 37
    07-08-11 12:08 37
    07-08-11 13:08 36
    07-08-11 14:08 38
    07-08-11 15:08 38
    07-08-11 16:08 37
    DAY TOTAL
    07-08-11 17:08 37
    07-08-11 18:08 37
    07-08-11 19:08 37
    07-08-11 20:08 37
    07-08-11 21:08 32
    07-08-11 22:08 31
    07-08-11 23:08 30
    08-08-11 00:08 36
    08-08-11 01:08 33
    08-08-11 02:08 38
    08-08-11 03:08 37
    DAY TOTAL
    08-08-11 04:08 38
    08-08-11 05:08 39
    08-08-11 06:08 44
    08-08-11 07:08 54
    08-08-11 08:08 40

  • Find archive generation over last one month

    Hi ,
    How can I find the archives count per each day generated over last 1 month.I am unable to get the exact value from v$archived_log;
    Regards,
    Hussain

    Hey Asif,
    Thanks very much ,it works
    SQL> l
    1* select count(*),FIRST_TIME from v$archived_log group by FIRST_TIME
    SQL> select trunc(completion_time),count(sequence#)
    from V$archived_log
    where to_char(trunc(completion_time),'mm/yyyy') like to_char(sysdate,'mm/yyyy')
    group by trunc(completion_time)
    order by trunc(completion_time);
    2 3 4 5
    TRUNC(COMPL COUNT(SEQUENCE#)
    03-dec-2009 126
    04-dec-2009 378
    05-dec-2009 460
    06-dec-2009 314
    07-dec-2009 158
    08-dec-2009 378
    09-dec-2009 193
    10-dec-2009 363
    11-dec-2009 394
    12-dec-2009 522
    13-dec-2009 428
    14-dec-2009 348
    15-dec-2009 306
    16-dec-2009 342
    17-dec-2009 328
    18-dec-2009 320
    19-dec-2009 454
    20-dec-2009 274
    21-dec-2009 510
    22-dec-2009 420
    23-dec-2009 400
    24-dec-2009 420
    25-dec-2009 290
    26-dec-2009 454
    27-dec-2009 308
    28-dec-2009 326
    29-dec-2009 376
    30-dec-2009 172
    It workds fine
    Cheers,
    Hussain

  • Archive Generation

    I have recently noticed that on the production database archives of size 500MB are being generated regularly despite not many users and activities being present. So to test the same I cloned the production database at found at that archives are being generated on the clone database as well at the same rate around 4-5 archives per hour same as that of the production database. Kindly advice me what needs to be done to prevent it

    Bhavi Savla wrote:
    SID  SERIAL#  USERNAME  PROGRAM  BLOCK_CHANGES  
    849  16  APPS  [email protected] (TNS V1-V3)  30769103  
    859  8  APPS  [email protected] (TNS V1-V3)  22572  
    728  97  APPS  JDBC Thin Client  12675  
    879  1     [email protected] (SMON)  6680  
    796  10  APPS  [email protected] (TNS V1-V3)  3936  
    821  3  APPS  [email protected] (TNS V1-V3)  3878  
    766  11  APPS  [email protected] (TNS V1-V3)  3852  
    778  19  APPS  [email protected] (TNS V1-V3)  3810  
    798  8  APPS  [email protected] (TNS V1-V3)  3796  
    760  1  APPS  [email protected] (TNS V1-V3)  3795  
    756  11  APPS  [email protected] (TNS V1-V3)  3784  
    802  8  APPS  [email protected] (TNS V1-V3)  3759  
    825  21  APPS  [email protected] (TNS V1-V3)  3741  
    761  2  APPS  [email protected] (TNS V1-V3)  3734  
    815  3  APPS  [email protected] (TNS V1-V3)  3723  
    790  12  APPS  [email protected] (TNS V1-V3)  3723  
    866  24  APPS  [email protected] (TNS V1-V3)  3715  
    786  38  APPS  [email protected] (TNS V1-V3)  3713  
    780  5  APPS  [email protected] (TNS V1-V3)  3713  
    818  1  APPS  [email protected] (TNS V1-V3)  3707  
    811  3  APPS  [email protected] (TNS V1-V3)  3705  
    832  1  APPS  [email protected] (TNS V1-V3)  3702  
    819  8  APPS  [email protected] (TNS V1-V3)  3701  
    835  29  APPS  [email protected] (TNS V1-V3)  3700  
    763  1  APPS  [email protected] (TNS V1-V3)  3698  
    799  49  APPS  [email protected] (TNS V1-V3)  3695  
    772  3  APPS  [email protected] (TNS V1-V3)  3692  
    768  6  APPS  [email protected] (TNS V1-V3)  3688  
    814  3  APPS  [email protected] (TNS V1-V3)  3686  
    773  9  APPS  [email protected] (TNS V1-V3)  3684  
    820  3  APPS  [email protected] (TNS V1-V3)  3682  
    834  7  APPS  [email protected] (TNS V1-V3)  3680  
    795  4  APPS  [email protected] (TNS V1-V3)  3676  
    789  6  APPS  [email protected] (TNS V1-V3)  3675  
    767  5  APPS  [email protected] (TNS V1-V3)  3674  
    759  2  APPS  [email protected] (TNS V1-V3)  3674  
    804  44  APPS  [email protected] (TNS V1-V3)  3672  
    812  13  APPS  [email protected] (TNS V1-V3)  3671  
    807  1  APPS  [email protected] (TNS V1-V3)  3663  
    850  25  APPS  [email protected] (TNS V1-V3)  3658  
    801  27  APPS  [email protected] (TNS V1-V3)  3658  
    830  5  APPS  [email protected] (TNS V1-V3)  3658  
    758  18  APPS  [email protected] (TNS V1-V3)  3657  
    817  3  APPS  [email protected] (TNS V1-V3)  3655  
    797  22  APPS  [email protected] (TNS V1-V3)  3654  
    788  5  APPS  [email protected] (TNS V1-V3)  3649  
    787  4  APPS  [email protected] (TNS V1-V3)  3643  
    784  17  APPS  [email protected] (TNS V1-V3)  3641  
    777  3  APPS  [email protected] (TNS V1-V3)  3636  
    785  6  APPS  [email protected] (TNS V1-V3)  3633  
    806  30  APPS  [email protected] (TNS V1-V3)  3632  
    764  3  APPS  [email protected] (TNS V1-V3)  3632  
    783  1  APPS  [email protected] (TNS V1-V3)  3631  
    781  10  APPS  [email protected] (TNS V1-V3)  3623  
    774  1  APPS  [email protected] (TNS V1-V3)  3621  
    810  4  APPS  [email protected] (TNS V1-V3)  3620  
    831  3  APPS  [email protected] (TNS V1-V3)  3617  
    813  4  APPS  [email protected] (TNS V1-V3)  3612  
    829  8  APPS  [email protected] (TNS V1-V3)  3603  
    816  10  APPS  [email protected] (TNS V1-V3)  3602  
    782  14  APPS  [email protected] (TNS V1-V3)  3598  
    851  25  APPS  [email protected] (TNS V1-V3)  3583  
    822  1  APPS  [email protected] (TNS V1-V3)  3578  
    826  7  APPS  [email protected] (TNS V1-V3)  3571  
    827  2  APPS  [email protected] (TNS V1-V3)  3570  
    805  9  APPS  [email protected] (TNS V1-V3)  3567  
    838  19  APPS  [email protected] (TNS V1-V3)  3448  
    823  85  APPS  [email protected] (TNS V1-V3)  3407  
    793  7  APPS  [email protected] (TNS V1-V3)  3255  
    775  7  APPS  [email protected] (TNS V1-V3)  2845  
    792  18  APPS  [email protected] (TNS V1-V3)  2643  
    721  349  APPS  [email protected] (TNS V1-V3)  2527  
    824  18  APPS  [email protected] (TNS V1-V3)  2359  
    776  17  APPS  [email protected] (TNS V1-V3)  2207  
    852  14  APPS  [email protected] (TNS V1-V3)  2102  
    779  19  APPS  [email protected] (TNS V1-V3)  2102  
    762  16  APPS  [email protected] (TNS V1-V3)  1764  
    738  305  APPS  [email protected] (TNS V1-V3)  1473  
    803  19  APPS  [email protected] (TNS V1-V3)  1188  
    765  14  APPS  [email protected] (TNS V1-V3)  1063  
    771  11  APPS  [email protected] (TNS V1-V3)  895  
    740  315  APPS  JDBC Thin Client  780  
    840  4  APPS  [email protected] (TNS V1-V3)  714  
    800  15  APPS  [email protected] (TNS V1-V3)  604  
    809  29  APPS  [email protected] (TNS V1-V3)  455  
    841  12  APPS  [email protected] (TNS V1-V3)  389  
    843  17  APPS  [email protected] (TNS V1-V3)  379  
    848  14  APPS  [email protected] (TNS V1-V3)  362  
    845  23  APPS  [email protected] (TNS V1-V3)  360  
    839  23  APPS  [email protected] (TNS V1-V3)  338  
    769  22  APPS  [email protected] (TNS V1-V3)  331  
    842  11  APPS  [email protected] (TNS V1-V3)  313  
    770  13  APPS  [email protected] (TNS V1-V3)  303  
    876  1     [email protected] (MMON)  299  
    828  2  APPS  [email protected] (TNS V1-V3)  297  
    836  5  APPS  [email protected] (TNS V1-V3)  260  
    844  4  APPS  [email protected] (TNS V1-V3)  218  
    744  50  APPS  JDBC Thin Client  195  
    726  2538  APPS  [email protected] (TNS V1-V3)  159  
    742  5  APPS  JDBC Thin Client  52  
    862  2     [email protected] (q001)  52  
    856  4  APPS     32  
    724  4  APPS  JDBC Thin Client  27  
    847  40  APPS  [email protected] (TNS V1-V3)  16  
    722  1321     [email protected] (J000)  0  
    885  1     [email protected] (PMON)  0  
    730  49  APPLSYSPUB  JDBC Thin Client  0  
    731  6  APPS  JDBC Thin Client  0  
    732  11  APPS  JDBC Thin Client  0  
    733  109  APPS  JDBC Thin Client  0  
    734  36  APPS     0  
    735  25  APPS  JDBC Thin Client  0  
    736  27  APPS  JDBC Thin Client  0  
    737  185  APPS  JDBC Thin Client  0  
    739  4  APPLSYSPUB  JDBC Thin Client  0  
    741  48  APPS  JDBC Thin Client  0  
    743  7  APPS  JDBC Thin Client  0  
    745  3  APPS  JDBC Thin Client  0  
    746  4  APPLSYSPUB  JDBC Thin Client  0  
    747  3  APPS  JDBC Thin Client  0  
    748  4  APPLSYSPUB  JDBC Thin Client  0  
    749  3  APPS  JDBC Thin Client  0  
    750  3  APPLSYSPUB  JDBC Thin Client  0  
    751  128  APPS  JDBC Thin Client  0  
    752  9  APPLSYSPUB  JDBC Thin Client  0  
    753  9  APPS  JDBC Thin Client  0  
    754  52  APPS  JDBC Thin Client  0  
    755  16  APPLSYSPUB  JDBC Thin Client  0  
    757  56  APPLSYSPUB  JDBC Thin Client  0  
    794  19  APPS  JDBC Thin Client  0  
    833  39  APPLSYSPUB  JDBC Thin Client  0  
    837  1050  SYS  [email protected] (TNS V1-V3)  0  
    846  18  APPS  [email protected] (TNS V1-V3)  0  
    853  5  APPS     0  
    855  12  APPS     0  
    857  10  APPS     0  
    860  1     [email protected] (q002)  0  
    863  9  APPLSYSPUB     0  
    865  412  APPS     0  
    867  3     [email protected] (QMNC)  0  
    870  1     [email protected] (ARC1)  0  
    871  1     [email protected] (ARC0)  0  
    875  1     [email protected] (MMNL)  0  
    877  1     [email protected] (CJQ0)  0  
    878  1     [email protected] (RECO)  0  
    880  1     [email protected] (CKPT)  0  
    881  1     [email protected] (LGWR)  0  
    882  1     [email protected] (DBW0)  0  
    883  1     [email protected] (MMAN)  0  
    884  1     [email protected] (PSP0)  0  
    725  1597  SYS  [email protected] (TNS V1-V3)  0   This shows CRM changing blocks more often..What should i do next? So its not the blank database where no user is connected however its the APPS making the database connections and using the database. I dont know much about oracle APPS but i can think of stopping these process through concurrent manager.
    So you have to figure out the necessity of these process running from APPS side.
    Count the active session
    select count(*) from v$session where username not in ('SYS',SYSTEM') and status='ACTIVE'

  • Excess archive log generation

    Hello to All,
    lot of archives are generating by the production database since 15 days.Nearly 30 archives are generating per hour.Before only one or two archives are going to be genarated per hour.The size of logfile is 300m and database is having 3 log groups.Now i want to know which application or which user is generating this much of archives.How i can find the reason for this much of archive generation.
    Thankx...

    Can you tell us the Oracle version which you are using?
    For the time, you can query v$sess_io to findout the session which is generating too much redo.
    Jaffar

  • Lot of Archives are getting generated due to db block changes in table fnd_concurrent_requests and fnd_concurrent_queues

    Hi Guys,
    In our R12.1.3 EBS RAC Production Database (Size ~ 450GB), found heavy archives generation which almost 200GB - 250GB daily from past couple of months (Due to which our Standby/DR database have been lagging). After taking AWR Reports for last 3 months, I've found that fnd_concurrent_requests and fnd_concurrent_queues are 2 heavily redos transnational tables. (from db block changes section). Also the same confirmed from dba_hist_seg_stat, dba_hist_seg_stat_obj & dba_hist_snapshot tables. Purge Concurrent Request and/or Manager Data request has been scheduled with ALL, age, 14 days parameters.
    We have also done re-org activity on these tables, but still no luck. is there any way to reduce archives generation on due to these FND% Tables ? is there any other request for purging ? any help would be appreciated.
    Thanks in Advance,
    Regards,
    Manish Nashikkar

    Have you checked the contents of those archived log files?
    Do you purge FND_CONCURRENT% tables (and other tables) on regular basis? -- https://community.oracle.com/search.jspa?q=purging+strategy+EBS
    Please see previous threads which cover the same topic -- https://community.oracle.com/search.jspa?q=too+many+archived+log+files
    Thanks,
    Hussein

  • How can i fix this error in locating loadjava server

    Hi,
    I have created a stateless session bean using Jdeveloper 3.2. Tried deploying on Personal 8i + WIN 2000 platform. Getting this log as shown below the mail.
    Could anyone tell me why the loadjava server is not being located. Infact I can run loadjava from anywhere on dos prompt as it is in the path. What do I need to do to make it work? My client is mot able to find the bean.
    Thanks,
    Nagendra
    LOG FILE:
    *** Executing deployment profile D:\Program Files\Oracle\JDeveloper 3.2\myprojects\simpleEJB1.prf ***
    *** Generating archive file D:\Program Files\Oracle\JDeveloper 3.2\myprojects\simpleEJBSource2.jar ***
    Compiling the project...done
    Validating the profile...done
    Initializing deployment...done
    Scanning project files...done
    Generating classpath dependencies...done
    Generating archive entries table...done
    *** Archive generation completed ***
    *** Deploying the EJB to 8i JVM ***
    EJB deployment argument list:
    "D:\Program Files\Oracle\JDeveloper 3.2\java1.2\jre\bin\javaw"
    "-DPATH=D:\Program Files\Oracle\JDeveloper 3.2\bin;D:\Program Files\Oracle\JDeveloper 3.2\java1.2\bin"
    -classpath
    "D:\Program Files\Oracle\JDeveloper 3.2\aurora\lib\aurora_client.jar;D:\Program Files\Oracle\JDeveloper 3.2\lib\javax-ssl-1_2.jar;D:\Program Files\Oracle\JDeveloper 3.2\aurora\lib\jasper.zip;D:\Program Files\Oracle\JDeveloper 3.2\aurora\lib\vbjorb.jar;D:\Program Files\Oracle\JDeveloper 3.2\aurora\lib\vbjapp.jar;D:\Program Files\Oracle\JDeveloper 3.2\aurora\lib\vbjtools.jar;D:\Program Files\Oracle\JDeveloper 3.2\aurora\lib\vbj30ssl.jar;D:\Program Files\Oracle\JDeveloper 3.2\aurora\lib\aurora.zip;D:\Program Files\Oracle\JDeveloper 3.2\sqlj\lib\translator.zip;D:\Program Files\Oracle\JDeveloper 3.2\sqlj\lib\runtime.zip;D:\Program Files\Oracle\JDeveloper 3.2\aurora\lib\mts.jar;D:\Program Files\Oracle\JDeveloper 3.2\myclasses;D:\Program Files\Oracle\JDeveloper 3.2\lib\jdev-rt.zip;D:\Program Files\Oracle\JDeveloper 3.2\jdbc\lib\oracle8.1.7\classes12.zip;D:\Program Files\Oracle\JDeveloper 3.2\lib\javax_ejb.zip;D:\Program Files\Oracle\JDeveloper 3.2\aurora\lib\aurora_client.jar;D:\Program Files\Oracle\JDeveloper 3.2\l
    b\javax-ssl-1_2.jar;D:\Program Files\Oracle\JDeveloper 3.2\aurora\lib\jasper.zip;D:\Program Files\Oracle\JDeveloper 3.2\aurora\lib\vbjorb.jar;D:\Program Files\Oracle\JDeveloper 3.2\aurora\lib\vbjapp.jar;D:\Program Files\Oracle\JDeveloper 3.2\aurora\lib\vbjtools.jar;D:\Program Files\Oracle\JDeveloper 3.2\aurora\lib\vbj30ssl.jar;D:\Program Files\Oracle\JDeveloper 3.2\aurora\lib\aurora.zip;D:\Program Files\Oracle\JDeveloper 3.2\sqlj\lib\translator.zip;D:\Program Files\Oracle\JDeveloper 3.2\sqlj\lib\runtime.zip;D:\Program Files\Oracle\JDeveloper 3.2\aurora\lib\mts.jar;D:\Program Files\Oracle\JDeveloper 3.2\lib\connectionmanager.zip;D:\Program Files\Oracle\JDeveloper 3.2\myprojects;D:\Oracle\Ora81\BIN;D:\Program Files\Oracle\JDeveloper 3.2\java1.2\jre\lib\rt.jar;D:\Program Files\Oracle\JDeveloper 3.2\lib\xmlparserv2.jar"
    oracle.aurora.ejb.deployment.GenerateEjb
    -u
    system
    -p
    manager
    -s
    sess_iiop://localhost:2481:ORCL
    -republish
    -keep
    -temp
    TEMP
    -descriptor
    "D:\Program Files\Oracle\JDeveloper 3.2\myprojects\simpleEJB1.xml"
    -oracledescriptor
    D:\Program Files\Oracle\JDeveloper 3.2\myprojects\simpleEJB1_oracle.xml
    -generated
    "D:\Program Files\Oracle\JDeveloper 3.2\myprojects\simpleEJBGenerated2.jar"
    "D:\Program Files\Oracle\JDeveloper 3.2\myprojects\simpleEJBSource2.jar"
    Reading Deployment Descriptor...done
    Verifying Deployment Descriptor...done
    Gathering users...done
    Generating Comm Stubs.......................................done
    Compiling Stubs...done
    Generating Jar File...done
    Loading EJB Jar file and Comm Stubs Jar file...
    Cannot locate the LoadJava server: Unknown reasons
    *** Errors occurred while deploying the EJB to 8i JVM ***
    *** Deployment completed ***
    Could anyone tell me why the loadjava server is not being located. Infact I can run loadjava from anywhere on dos prompt as it is in path. What do I need to do to make it work. My client is mot able to find the bean.
    Thanks,
    Nagendra

    I found a SAP note, that is exactly what I expected, and now it is  solved.
    SAP NOTE:
    1548006 - Why isn't the new value added to a characteristic displayed in CL02/CL03?
    Regards,
    Moises Najar

Maybe you are looking for

  • S-video to firewire

    I have a Samsung camcorder HI-8 with a composit/s-video out. Is there an Apple device that can convert this to input into my firewire port? I'm aware of some USB devices that do this but I'd like to use firewire.

  • Purchase order headder Status tab

    Hai friends I have one doubt regarding P O Headder Status. Here some status we can see like ordered ,delivered,still to deliver, invoiced, down payments.. My questions are. 1.     Can I add some new status here? If yes then how?? 2.     What are the

  • 1) Second thread call to stateful session bean.

    Hi Friend, I read your threads on otn and i compared your problem with us and i analysed that your application and my application is same, So Plese can you help me in some issues. Friend, Please help me in these issues, Thanks for this We have very b

  • Setup LMDB: Job "SAP_LMDB_LDB_0000000001"  is running for long period

    Hello ALL, We are configuring the solman 7.1 and we are in Preparation step - Set Up LMDB The Job "SAP_LMDB_LDB_0000000001" which is to Synchronize Connections between SLD and LMDB is in process from Yesterday evening 6:00 pm onwards and still it is

  • Indesign CS6 Error 5 message

    Hi, I have already installed and have been working with various adobe apps from CS6. In design included, my images/vectors started to look bitmapped even when in pref it was set to high quality. I uninstalled Indesign and then re-installed it, but no