Supported graph types in oracle 10g using bi beans

hi.. since the scatter type didn't work with me i need to know what types of graphs are supported in oracle 10g using bi beans and if u can show an example of how to use it with pictures i would be thankful.
you can email me in [email protected]
thanks alot..
regards
Eyad Basheer

Hi,
What version of Oracle Forms are you using? If it is 10.1.2.0.2 (10g R2 Phase 2) then the BI Beans version should be 10.1.2.1 (3.2.2.0.24.2).
When you run a Graph, do you see any version numbers?
Regardless of the version, scatter graph should work. What kind of errors are you getting?
When you install BI Beans in JDeveloper, you get access to BI Beans Help. Go to the following topic for setting up data for a scatter graph:
Help -> Building Applications with BI Beans -> Presenting Data in Graphs -> Specifying Data for Graphs
Did you try posting your question on the Oracle Forms forum?
BI Beans PM

Similar Messages

  • Using scatter graph type in oracle 10g forms using bi beans

    hi.. how i can use scatter graph type in oracle 10g using bi beans..
    it seems scatter graph is supported in 10g but it doesnt work at all..
    i used to use oracle graphics builder in oracle 6i forms,now i need to convert all my old graphs to 10g forms..the line,bar and pie it work very well but the scatter didnt work..
    so please if anyone know how to use it please tell me.. and what versions of bi beans support the scatter graph type
    thanks.
    u can email me in
    [email protected]

    Hi,
    What version of Oracle Forms are you using? If it is 10.1.2.0.2 (10g R2 Phase 2) then the BI Beans version should be 10.1.2.1 (3.2.2.0.24.2).
    When you run a Graph, do you see any version numbers?
    Regardless of the version, scatter graph should work. What kind of errors are you getting?
    When you install BI Beans in JDeveloper, you get access to BI Beans Help. Go to the following topic for setting up data for a scatter graph:
    Help -> Building Applications with BI Beans -> Presenting Data in Graphs -> Specifying Data for Graphs
    Did you try posting your question on the Oracle Forms forum?
    BI Beans PM

  • Lock types in oracle 10g with sql examples

    can some body easily in simple words tell some thing about the table locks types in oracle 10g with some sql examples?

    Oracle locking is a complex topic that may not easily be explained with simple words.
    Please try to read above mentioned link starting from simple examples to used lock types. I don't think it's a good idea to "over simplify" the topic starting from the different lock types.
    Another way to explain some lock types can be found in following OTN discussion with Tom Kyte (who is also one of the primary author of Concepts Guide 11.2): TM / TX Locks ( Tom Kyte and Oracle Docu) ; note the different points of view about what is the row lock ...
    Edited by: P. Forstmann on 29 juin 2011 14:00

  • What mechanism Oracle 10g use for write (Insert/ Update) and Read (Select)?

    Hi
    What mechanism Oracle 10g use for write (Insert/ Update) and Read (Select)?
    Thank you

    Aren't the answers given in PL/SQL forum sufficient enough?Well, as the first answer in that forum directed the OP to this forum you can hardly blame them for the repost.
    There is some high-level stuff in the Concepts Guide. If that is insufficient the OP will need to tell us what more details they need to know (and perhaps why).
    Cheers, APC

  • Graph Types getting shuffled when use Series for both graph types

    Hi,
        I have a requirement to use two Graph types in a single Business graphics UI element.
    First Graph type is of STACKED COLUMN, and the second one is of LINE. When i use Series for both graph types; they are getting shuffled and not readable.
    Same is happening on use of Simple series for STACKED COLUMN Graph type and Series for LINE graph type..
    How can i solve this problem?
    vinod.

    > unfortunately when i run this i am getting the following error for all my types:
    ORA-00904: "INHERITED": invalid identifier
    Yep, quite rightly "unfortunate". One of my pet peeves about Oracle's o-o implementation. You cannot call inherited methods using the inherited command - it is not supported.
    Which explains the Oracle error message - it is telling you it has no idea what the command (identifier) called "INHERITED" means.
    There are ugly workarounds (one which I have posted in the PL/SQL forum I think in the distant past - 8i?)... but it is pretty much a hack and not something I would like to consider for production.
    Not sure if recent Oracle versions step up to the mark in this case - I have not seen anything that supports calling the inherited class methods from within an override for example.
    Perhaps if you show us a basic example of what you are trying achieve we can suggest alternatives?
    > does any one know what i am missing?
    Better coach and/or players so that the Wales rugby team can give England and France proper hidings and win the 6 Nations? ;-)

  • Performance Problem between Oracle 9i to Oracle 10g using Crystal XI

    We have a Crystal XI Report using ODBC Drivers, 14 tables, and one sub report. If we execute the report on an Oracle 9i database the report will complete in about 12 seconds. If we execute the report on an Oracle 10g database the report will complete in about 35 seconds.
    Our technical Setup:
    Application server: Windows Server 2003, Running Crystal XI SP2 Runtime dlls with Oracle Client 10.01.00.02, .Net Framework 1.1, C# for Crystal Integration, Unmanaged C++ for app server environment calling into C# through a dynamically loaded mixed-mode C++ DLL.
    Database server is Oracle 10g
    What we have concluded:
    Reducing the number of tables to 1 will reduce the execution time of the report from 180s to 13s. With 1 table and the sub report we would get 30 seconds
    We have done some database tracing and see that Crystal Reports Issues the following query when verifying the database and it takes longer in 10g vs 9i.
    We have done some profiling in the application code. When we retarget the first table to the target database, it takes 20-30 times longer in 10g than in 9i. Retargeting the other tables takes about twice as long. The export to a PDF file takes about 4-5 times as long in 10g as in 9i.
    Oracle 10g no longer supports the /*+ RULE */ hint.
    Verify DB Query:
    select /*+ RULE */ *
    from
    (select /*+ RULE */ null table_qualifier, o1.owner table_owner,
    o1.object_name table_name, decode(o1.owner,'SYS', decode(o1.object_type,
    'TABLE','SYSTEM TABLE','VIEW', 'SYSTEM VIEW', o1.object_type), 'SYSTEM',
    decode(o1.object_type,'TABLE','SYSTEM TABLE','VIEW', 'SYSTEM VIEW',
    o1.object_type), o1.object_type) table_type, null remarks from all_objects
    o1 where o1.object_type in ('TABLE', 'VIEW') union select /*+ RULE */ null
    table_qualifier, s.owner table_owner, s.synonym_name table_name, 'SYNONYM'
    table_type, null remarks from all_objects o3, all_synonyms s where
    o3.object_type in ('TABLE','VIEW') and s.table_owner= o3.owner and
    s.table_name = o3.object_name union select /*+ RULE */ null table_qualifier,
    s1.owner table_owner, s1.synonym_name table_name, 'SYNONYM' table_type,
    null remarks from all_synonyms s1 where s1.db_link is not null ) tables
    WHERE 1=1 AND TABLE_NAME='QCTRL_VESSEL' AND table_owner='QLM' ORDER BY 4,2,
    3
    SQL From Main Report:
    SELECT "QCODE_PRODUCT"."PROD_DESCR", "QCTRL_CONTACT"."CONTACT_FIRST_NM", "QCTRL_CONTACT"."CONTACT_LAST_NM", "QCTRL_MEAS_PT"."MP_NM", "QCTRL_ORG"."ORG_NM", "QCTRL_TKT"."SYS_TKT_NO", "QCTRL_TRK_BOL"."START_DT", "QCTRL_TRK_BOL"."END_DT", "QCTRL_TRK_BOL"."DESTINATION", "QCTRL_TRK_BOL"."LOAD_TEMP", "QCTRL_TRK_BOL"."LOAD_PCT", "QCTRL_TRK_BOL"."WEIGHT_OUT", "QCTRL_TRK_BOL"."WEIGHT_IN", "QCTRL_TRK_BOL"."WEIGHT_OUT_UOM_CD", "QCTRL_TRK_BOL"."WEIGHT_IN_UOM_CD", "QCTRL_TRK_BOL"."VAPOR_PRES", "QCTRL_TRK_BOL"."SPECIFIC_GRAV", "QCTRL_TRK_BOL"."PMO_NO", "QCTRL_TRK_BOL"."ODORIZED_VOL", "QARCH_SEC_USER"."SEC_USER_NM", "QCTRL_TKT"."DEM_CTR_NO", "QCTRL_BA_ENTITY"."BA_NM1", "QCTRL_BA_ENTITY_VW"."BA_NM1", "QCTRL_BA_ENTITY"."BA_ID", "QCTRL_TRK_BOL"."VOLUME", "QCTRL_TRK_BOL"."UOM_CD", "QXREF_BOL_PROD"."MOVEMENT_TYPE_CD", "QXREF_BOL_PROD"."BOL_DESCR", "QCTRL_TKT"."VOL", "QCTRL_TKT"."UOM_CD", "QCTRL_PMO"."LINE_UP_BEFORE", "QCTRL_PMO"."LINE_UP_AFTER", "QCODE_UOM"."UOM_DESCR", "QCTRL_ORG_VW"."ORG_NM"
    FROM (((((((((((("QLM"."QCTRL_TRK_BOL" "QCTRL_TRK_BOL" INNER JOIN "QLM"."QCTRL_PMO" "QCTRL_PMO" ON "QCTRL_TRK_BOL"."PMO_NO"="QCTRL_PMO"."PMO_NO") INNER JOIN "QLM"."QCTRL_MEAS_PT" "QCTRL_MEAS_PT" ON "QCTRL_TRK_BOL"."SUP_MP_ID"="QCTRL_MEAS_PT"."MP_ID") INNER JOIN "QLM"."QCTRL_TKT" "QCTRL_TKT" ON "QCTRL_TRK_BOL"."PMO_NO"="QCTRL_TKT"."PMO_NO") INNER JOIN "QLM"."QCTRL_CONTACT" "QCTRL_CONTACT" ON "QCTRL_TRK_BOL"."DRIVER_CONTACT_ID"="QCTRL_CONTACT"."CONTACT_ID") INNER JOIN "QFC_QLM"."QARCH_SEC_USER" "QARCH_SEC_USER" ON "QCTRL_TRK_BOL"."USER_ID"="QARCH_SEC_USER"."SEC_USER_ID") LEFT OUTER JOIN "QLM"."QCODE_UOM" "QCODE_UOM" ON "QCTRL_TRK_BOL"."ODORIZED_VOL_UOM_CD"="QCODE_UOM"."UOM_CD") INNER JOIN "QLM"."QCTRL_ORG_VW" "QCTRL_ORG_VW" ON "QCTRL_MEAS_PT"."ORG_ID"="QCTRL_ORG_VW"."ORG_ID") INNER JOIN "QLM"."QCTRL_BA_ENTITY" "QCTRL_BA_ENTITY" ON "QCTRL_TKT"."DEM_BA_ID"="QCTRL_BA_ENTITY"."BA_ID") INNER JOIN "QLM"."QCTRL_CTR_HDR" "QCTRL_CTR_HDR" ON "QCTRL_PMO"."DEM_CTR_NO"="QCTRL_CTR_HDR"."CTR_NO") INNER JOIN "QLM"."QCODE_PRODUCT" "QCODE_PRODUCT" ON "QCTRL_PMO"."PROD_CD"="QCODE_PRODUCT"."PROD_CD") INNER JOIN "QLM"."QCTRL_BA_ENTITY_VW" "QCTRL_BA_ENTITY_VW" ON "QCTRL_PMO"."VESSEL_BA_ID"="QCTRL_BA_ENTITY_VW"."BA_ID") LEFT OUTER JOIN "QLM"."QXREF_BOL_PROD" "QXREF_BOL_PROD" ON "QCTRL_PMO"."PROD_CD"="QXREF_BOL_PROD"."PURITY_PROD_CD") INNER JOIN "QLM"."QCTRL_ORG" "QCTRL_ORG" ON "QCTRL_CTR_HDR"."BUSINESS_UNIT_ORG_ID"="QCTRL_ORG"."ORG_ID"
    WHERE "QCTRL_TRK_BOL"."PMO_NO"=12345 AND "QXREF_BOL_PROD"."MOVEMENT_TYPE_CD"='TRK'
    SQL From Sub Report:
    SELECT "QXREF_BOL_VESSEL"."PMO_NO", "QXREF_BOL_VESSEL"."VESSEL_NO"
    FROM "QLM"."QXREF_BOL_VESSEL" "QXREF_BOL_VESSEL"
    WHERE "QXREF_BOL_VESSEL"."PMO_NO"=12345
    Does anyone have any suggestions on how we can improve the report performance with 10g?

    Hi Eric,
    Thanks for your response. The optimizer mode in our 9i database is CHOOSE. We changed the optimizer mode from ALL_ROWS to CHOOSE in 10g but it didn't make a difference.
    While researching Metalink I came across a couple of documents that indicated performance problems and issues with using certain data-dictionary views in 10g. Apparently, the definition of ALL_OBJECTS, ALL_ARGUMENTS and ALL_SYNONYMS have changed in 10g, resulting in degradation in performance, if quieried against these views. These are the same queries that crystal reports is queriying. We'll try the workaround suggested in these documents and see if it resolves the issue.
    Here are the Doc Ids, if you are interested:
    Note 377037.1
    Note:364822.1
    Thanks again for your response.
    Venu Boddu.

  • Migration from Infotmix 11.5 to Oracle 10g using OMWK

    Hi,
    when i try to migrat Informix 11.5 to Oracle 10g with OMWK i got an error
    ** Oracle Migration Workbench
    ** Production
    ** ( Build 20050629 )
    ** OMWB_HOME: C:\Temp\eBook\Oracle\omwb
    ** user language: en
    ** user region: null
    ** user timezone:
    ** file encoding: Cp1252
    ** java version: 1.4.2_04
    ** java vendor: Sun Microsystems Inc.
    ** o.s. arch: x86
    ** o.s. name: Windows NT (unknown)
    ** o.s. version: 6.0
    ** Classpath:
    ..\lib\boot.jar
    ** Started : Fri Dec 03 10:20:28 GMT 2010
    ** Workbench Repository : Oracle9i Lite ORDBMS 4.0.3.11.0
    ** The following plugins are installed:
    ** Informix Dynamic Server 9.x Plugin, Production Release 10.1.0.4.0
    ** Active Plugin : Informix9
    : Informix Dynamic Server 9.52.TC7CE
    : IBM Informix JDBC Driver for IBM Informix Dynamic Server 2.21.JC5
    java.sql.SQLException: [POL-2401] the number value is not in the valid range
         at oracle.lite.poljdbc.LiteEmbPreparedStmt.jniExecute(Native Method)
         at oracle.lite.poljdbc.LiteEmbPreparedStmt.execute(Unknown Source)
         at oracle.lite.poljdbc.POLJDBCPreparedStatement.executeInt(Unknown Source)
         at oracle.lite.poljdbc.POLJDBCPreparedStatement.executeUpdate(Unknown Source)
         at oracle.mtg.informix9.server.Informix9LoadTableData._loadSourceModelData(Informix9LoadTableData.java:621)
         at oracle.mtg.informix9.server.Informix9LoadTableData.run(Informix9LoadTableData.java:703)
         at oracle.mtg.migration.WorkerThread.run(Worker.java:268)
    java.sql.SQLException: [POL-2401] the number value is not in the valid range
         at oracle.lite.poljdbc.LiteEmbPreparedStmt.jniExecute(Native Method)
         at oracle.lite.poljdbc.LiteEmbPreparedStmt.execute(Unknown Source)
         at oracle.lite.poljdbc.POLJDBCPreparedStatement.executeInt(Unknown Source)
         at oracle.lite.poljdbc.POLJDBCPreparedStatement.executeUpdate(Unknown Source)
         at oracle.mtg.informix9.server.Informix9LoadTableData._loadSourceModelData(Informix9LoadTableData.java:621)
         at oracle.mtg.informix9.server.Informix9LoadTableData.run(Informix9LoadTableData.java:703)
         at oracle.mtg.migration.WorkerThread.run(Worker.java:268)
    java.sql.SQLException: [POL-2401] the number value is not in the valid range
         at oracle.lite.poljdbc.LiteEmbPreparedStmt.jniExecute(Native Method)
         at oracle.lite.poljdbc.LiteEmbPreparedStmt.execute(Unknown Source)
         at oracle.lite.poljdbc.POLJDBCPreparedStatement.executeInt(Unknown Source)
         at oracle.lite.poljdbc.POLJDBCPreparedStatement.executeUpdate(Unknown Source)
         at oracle.mtg.informix9.server.Informix9LoadTableData._loadSourceModelData(Informix9LoadTableData.java:621)
         at oracle.mtg.informix9.server.Informix9LoadTableData.run(Informix9LoadTableData.java:703)
         at oracle.mtg.migration.WorkerThread.run(Worker.java:268)
    java.sql.SQLException: [POL-5205] column not found
         at oracle.lite.poljdbc.LiteEmbPreparedStmt.jniPrepare(Native Method)
         at oracle.lite.poljdbc.LiteEmbPreparedStmt.prepare(Unknown Source)
         at oracle.lite.poljdbc.POLJDBCPreparedStatement.<init>(Unknown Source)
         at oracle.lite.poljdbc.POLJDBCPreparedStatement.<init>(Unknown Source)
         at oracle.lite.poljdbc.OraclePreparedStatement.<init>(Unknown Source)
         at oracle.lite.poljdbc.POLJDBCConnection.prepareStatement(Unknown Source)
         at oracle.mtg.informix9.server.Informix9LoadTableData._loadSourceModelData(Informix9LoadTableData.java:464)
         at oracle.mtg.informix9.server.Informix9LoadTableData.run(Informix9LoadTableData.java:703)
         at oracle.mtg.migration.WorkerThread.run(Worker.java:268)
    EXCEPTION : LoadTableData.run() : IDS9_SYSUSERS [POL-5205] column not found
    _releaseConnection did not find connection to release!
    java.lang.Exception
         at oracle.mtg.informix7.server.Informix7ConnectionCache.releaseConnection(Informix7ConnectionCache.java:168)
         at oracle.mtg.informix7.server.Informix7ServiceImpl.releaseSourceConnection(Informix7ServiceImpl.java:310)
         at oracle.mtg.informix7.server.Informix7SourceModelLoad.loadSourceModel(Informix7SourceModelLoad.java:312)
         at oracle.mtg.informix7.ui.Informix7CaptureWizard.doCapture(Informix7CaptureWizard.java:751)
         at oracle.mtg.informix7.ui.Informix7CaptureWizard._runDialog(Informix7CaptureWizard.java:561)
         at oracle.mtg.informix7.ui.Informix7CaptureWizard.capture(Informix7CaptureWizard.java:490)
         at oracle.mtg.migrationUI.ActionMenuHandler._capture(ActionMenuHandler.java:208)
         at oracle.mtg.migrationUI.ActionMenuHandler.run(ActionMenuHandler.java:85)
         at oracle.mtg.migration.WorkerThread.run(Worker.java:268)
    ** Shutdown : Fri Dec 03 10:40:09 GMT 2010
    mayby because i'm using plug-in for Informix 9 (i cannot find plug-in for Informix 11.5!)
    could you hlep me?
    Thanks
    Maysar

    Hi,
    The 10.1 OMWB does not support the migration of Informix 11.5 and there is no plugin for that version.
    At the moment SQL*Develeoper migration workbench doesn't support Informix migrations either.
    If you have access to My Oracle Support have a look at this note -
    How To Migrate Non-Oracle Databases For Which A Migration Workbench Option Is Not Available (Doc ID 393760.1)
    Regards,
    Mike

  • Sybase ASE integrator to Oracle 10g use Synchronous mode?

    I want to use ODI to replicate Sybase ASE data into Oracle 10g, what I've done is using "JKM Sybase simple" and "LKM SQL to SQL" and "IKM Oracle Incremental Update", then create a interface, create a scenario, create a scheduling running in Scheduler Agent, every 5 seconds get the journalized data from Sybase and refresh to Oracle.
    This is acceptable, but my question is: Can I set this scenario in synchronous mode, not pulling changed data every 5 seconds but instead of pushing changed data to Oracle just after DML committed in Sybase?

    No, not the current workbench. We will be bringing out support for Sybase 15 in SQL Developer at the next release.
    You could try bringing the db down to 12 if that was an option and then migrate from that.
    Barry

  • No suitable driver when connect MS SQL server from Oracle 10g using JTDS

    Hi,
    I have developed a java servlet application connection to MS SQL using jtds-1.2.jar. I have try to deploy this application to Oracle 9ias and it works fine.
    However, when I deploy the same application to Oracle 10g (10.1.2.0.2), I encounter this error - java.sql.SQLException: No suitable driver.
    I have copy the jtds-1.2.jar to Ora10g/jdbc/lib, Ora10g/j2ee/home/lib and also the Ora10g/j233/OC$J_GENERAL/applications/sampleApp/sampleApp/WEB-INF/lib folder, and also setup the data source via the EM interface. The data-source.xml entry is as follows:
    <data-source location="jdbc/ess" class="com.evermind.sql.DriverManagerDataSource" xa-location="jdbc/xa/essS" ejb-location="jdbc/ess" connection-driver="net.sourceforge.jtds.jdbc.Driver" username="scott" url="jdbc:jtds:sqlserver://202.xx.xx.xx:1433/sampleDB" inactivity-timeout="30" name="ess"/>
    </data-sources>
    Is there any configuration that I've forgotten to set?

    >
    I have developed a java servlet application
    connection to MS SQL using jtds-1.2.jar. I have try
    to deploy this application to Oracle 9ias and it
    works fine.
    However, when I deploy the same application to Oracle
    10g (10.1.2.0.2), I encounter this error -
    java.sql.SQLException: No suitable driver.
    I have copy the jtds-1.2.jar to Ora10g/jdbc/lib,
    Ora10g/j2ee/home/lib and also the
    Ora10g/j233/OC$J_GENERAL/applications/sampleApp/sample
    App/WEB-INF/lib folder, and also setup the data
    source via the EM interface.
    Is there any configuration that I've forgotten to set?The JAR file needs to be in a place the container can locate it correctly. This is the applib directory for your OC4J instance.
    Which I believe from what you have entered is:
    Ora10g/j2ee/OC4J_GENERAL/applib
    There's a general JDBC 3rd party driver set of documentation here:
    http://download.oracle.com/docs/cd/B14099_11/web.1012/b14012/datasrc.htm#sthref592
    This is not using jtds-1.2.jar but it shows how another set of 3rd party jdbc libs are used with the server.
    -steve-

  • Running External jobs in Oracle 10g using a different user ID

    Hi,
    i would like to run an external job ( shell script ) in oracle scheduler using a Unix user id other than nobody and oracle. is it possible to do that? if so please provide more information. I am currently using oracle version 10.2.0.4.0

    Sure,
    no problem at all, if you have no problem with the fact that all jobs that run from your ORACLE_HOME use the same account. I would prefer to upgrade to 11.1.0.7 and use the new remote exteral jobs with credentials.
    For oracle 10g you have to modify $ORACLE_HOME/rdbms/admin/externaljob.ora and change the run_user and run_group to what ever you want to use.
    regards,
    Ronald
    (also see:
    http://www.packtpub.com/mastering-oracle-scheduler-in-oracle-11g-databases)

  • Migration from DB2 to Oracle 10g using free tools

    Dear all,
    Im currently using DB2 database and wish to migrate data over to Oracle 10g express. However, i could not find any free tools or methods to migrate without using tools as i could not use tools like Oracle Migration Workbench as the migration is for certain project which will deal with internal process or commercial purpose.
    Would like to seek everybody's help. Greatly appreciation your response.
    Regards,
    Kee Cheng =)

    nvr4getu wrote:
    Thanks. But have you heard of creating a heterogenous services, create a database link between the 2 database, then transform over to Oracle?I thought you were looking for a free tool. With HS, you'll have to buy the component to install on the DB2 system. Unless something has changed since the last time I worked in a mixed Oracle/DB2 shop.

  • Load Data from SQL Server to Oracle 10g using Sql*loader utility

    I am trying to lod data from sql server 2005 to oracle 10g.
    What is the best way to do it?
    Can sql*loader utility do it?
    what is the difference of using sql*loader utility and migration tool fom sql developer ?
    Thanks
    Edited by: user11313758 on Sep 30, 2009 4:30 PM

    Hello:
    You could consider using Oracle Heterogeneous Services to do this. If your Oracle database is on a Windows platform the link below shows you how to make a connection to SqlServer from an Oracle database.
    http://www.databasejournal.com/features/oracle/article.php/3442661/Making-a-Connection-from-Oracle-to-SQL-Server.htm
    Varad

  • Restoring Oracle 10g Using Command Line

    OK. I have used Oracle 10g for about 4 hours now, so don't laugh when i ask dumb questions. I have installed Oracle 10g and just can't get the interface to work. So I used SQL in command line and I can connect and diconnnect from the database, I can log into the database as SYSDBA. So from what I can tell the database is working, not the interface though. I get Java Exceptions, URL:null errors and so on.... Can I use the command Prompt to restore a cold backup? I don't know how to use RMAN functions, but if thats the only way i guess i will have to learn. Thanks in advance.

    Ok well to detail more....I performed a cold backup on a customer production server and need to restore that cold backup to a test server to check for consistency. So right now I have 2 files in a folder which are the cold backup files and a server with a non functioning Oracle Interface to restore. I can't startup the database in the interface, and when i navigate to the perform restore in the interface it asked me to supply host and database credentials. I did that and it returns a error of something like URL null cant contact agent. I forget what the exact error is and I have already uninstalled oracle hoping to install again to fix problem, but after 4 times I doubt it will. All Oracle Services are running also. The admin accout is part of the ora_dba group as well. Any other permission things I need to check for?

  • How to Restore datas in Oracle 10g using hot backup?

    I did Hot backup things (On-line backup) in Oracle 10g (Windows environment)
    Now backup files are stored in physical location..
    How to restore the datas to original location..
    Can any one give the url or command for recovery in ora 10g for hot backup
    Thanks

    Please do not dump all of your work in this forum, and expect volunteers to do it for free!!!
    Dear Great Senior DBA Sybrand Bakker
    What are Oracle Discussion Forums?
    Oracle Discussion Forums is an interactive community for sharing information, questions, and comments about Oracle products and related technologies. Most forums are moderated by product managers, and all of them are frequently visited by knowledgeable users from the community
    oracle forums is not your place for showing “bossing” it is a place where junior to seniors share there knowledge and advices, it means helping and sharing….. Knowledge is for giving ….giving only it will increase… don’t discourage any one like this ……
    There are my Great Seniors (not like u) mainly respected Mr. Jonathan Lewis, Mr. Don Burleson and a lot of oracle nominated ACE members are all giving patiently replay to jr. to sr.
    Obeasley oracle doubts are mostly related to practical issue only……
    Pls try to learn the word meaning of “volunteers”

  • Oracle 10g Using 99% of 7GB RAM on Solaris10

    Hi All,
    I am working on three database instances each installed on a single solaris server. Now, the server had 3GB of RAM and all the dbs were up and running fine. However, 95% of RAM was getting utilized so we went for RAM upgradation frm 3 to 7GB. To my utter amazment the Ora10g user is still shown to be using 99% of current memory. Ideally I should be having atleast 30% of the current memory free.
    Please advice how can i reduce this excess RAM usage by Ora10g user.
    This is a shared server env for all the three dbs.

    I tihnk you're counting the memory wrong.
    If, for example, from top, you see a process is using, let's say 700M. Now, let's assume that the SGA is 500m. That 700m being reported includes the 500m shared memory segment.
    So, if you have 10 processes, each reporting 700m, that's 7000m, but, in reality, they're only using 200m*10+500m = 2500m. The shared memory segment(s) should only be counted once.
    In Solaris, to see how much memory is allocated/mapped where for a given process, try the pmap command.
    pmap -x <pid of process>This will show how the memory for that process breaks out, including what portion is the shared memory segment.
    As to why you're getting errors when trying to allocate additional memory, well, it could be that you're really out of memory, or it could be that you're being artificially limited, by some O/S parameter, SHMMAX, etc.
    Finally, see MetaLink Doc IDs 115753.1 and 1008866.6 for more information.
    -Mark

Maybe you are looking for