My apologies in advance for Oracle 7 question

Let me thank you all in advance for your help. I am running Oracle 7.34 on Unix. I keep finding the temp tablespace 99.86% filled. How can I find out who is filling up the Temp tablespace.
Thanks

Are you running with the tablespace as "Temporary" ?
Are you seeing errors in the alert log re: processes failing because of temp space ?
If yes and no there may not be a problem. Oracle will allocate and manage based on need. It does NOT return the space (to free), but will reuse it.
Otherwise, I was never able to get a good answer to the question myself.
Ken

Similar Messages

  • Is there a way to restrict the number of attempts for a remediated question using advanced actions?

    I have the following slides in my project:
    content slide 1
    content slide 2
    question slide 1
    question slide 2
    Question slide 1 is a question about content slide 1. Question slide 2 is a question about content slide 2. I would like to restrict the total number of attempts to two for each question. If question 1 is answered incorrectly on the first attempt, the learner would be returned to content slide 1 for review. Clicking the next button will take the learner back to the missed quiz question and allow them a second attempt to answer it correctly. If they answer it incorrectly again, it is scored as incorrect and the learner is taken to question slide 2.
    Can this be done or does remediation keep repeating until the learner answers the question correctly?
    If that is the case, can I achieve my objective by using advanced actions? And, if so, can you provide step by step instructions on how to do this?

    I think it could be possible, but giving you step-by-step instructions, sorry, that would take a lot of time. Did you use advanced actions already? My archived blog has a lot of use cases and tutorials, but I think it is not fair to ask on a forum for step-by-step instructions for each use case you want to create.  The most important thing will be to make sure that the user always remains in the Quiz scope, you can use the new system variable cpInQuizScope while testing. There is no system variable for attempts on question level, only one on Quiz level, so you'll have to create a user variable to track the attempts on question level. A big problem is that when you leave a question slide, without using the remediation work flow, the attempts are considered as finished. Personally I would prefer for that reason to not use the default question slides. You could try out a combination of remediation and advanced actions, never did test that?
    Lilybiri

  • Interview questions for oracle dba

    Hi I am trying to find teh interview questions for oracle dba .
    What will be your answer to the following questions. Can somebody shed some light...
    . What is the day to day duties of oracle dba?
    ·     Did you use online or off-line backups?
    ·     What version of Oracle were you running?
    ·     Haw many databases and what sizes?
    ·     If you have to advise a backup strategy for a new application, how would you approach it and what questions will you ask?
    ·     If a customer calls you about a hanging database session, what will you do to resolve it?
    ·     Compare Oracle to any other database that you know. Why would you prefer to work on one and not on the other?
    Thx
    KK

    . What is the day to day duties of oracle dba?
    I have got a checklist, designed for my daily, weekly, fortnightly and monthly tasks. For example, in the daily checklist tasks, I check for the alert log file, competion and correction of my exports and operating system backups. DB space situation, Antivirus status, standby database status, space on disks, any rogue queries etc.
    · Did you use online or off-line backups?
    Both.
    · What version of Oracle were you running?
    8i(not any more), 9i, 10g
    · Haw many databases and what sizes?
    8 databases, ranging from 1 TB to 10 GB. I have segregated them into OLTP production, testing, cm, and development and a Datawarehouse.
    · If you have to advise a backup strategy for a new application, how would you approach it and what questions will you ask?
    How much they could afford to lose data or they want zero data loss and also I will get their requirements about down time and up time of database.
    · If a customer calls you about a hanging database session, what will you do to resolve it?
    First I will identify it, then see to it what exactly it is doing, capture that situation and then either try to release the locks(if its a blocking or blocked session), or kill the session, if its hanging on a runaway query.
    · Compare Oracle to any other database that you know. Why would you prefer to work on one and not on the other?
    Oracle passes the ACID rule with distinction as compared to the other databases. Moreover, the multiversion read consistency, recovery, flexibility and challenges of Oracle are matchless.
    Cheers
    fahdoracle.blogspot.com

  • Advanced Development Techniques for Oracle Portal Components

    Hello friends,
    I have the following problem. I have a report and a form (on a
    view) in the same page, and when I select an item of the report
    the form is refreshed with the values associated to the selected
    item. The problem is that it makes it with delay, the first
    selection doesn't show anything and the remaining sample the
    data of the previous selection.
    This application has been developed as Ken Atkins explains in
    its document "Advanced Development Techniques for Oracle Portal
    Components."
    Oracle Portal Version: 3.0.9.8.0
    Thanks in advance.
    This is my code:
    -- REPORT --
    SELECT '<A HREF="http://mipc/portal30/
    ALFONSO.refrescar_contenido?
    p_variable=nombre_preferencia&p_variable_valor='||nombre_preferen
    cia||'&p_pagina=61">'||Preferencias||'</A>' nombre_link
    FROM ALFONSO.PREFERENCIAS
    -- PROCEDURE TO REFRESH THE PAGE --
    CREATE OR REPLACE PROCEDURE refrescar_contenido(p_varible IN
    VARCHAR2,
              p_variable_valor IN varchar2,p_pagina IN
    VARCHAR2) IS
    v_Sesion portal30.wwsto_api_session;
    BEGIN
    v_Sesion := portal30.wwsto_api_session.load_session
    ('CONTEXT','SESS_EMP');
    v_Sesion.set_attribute(p_varible, p_variable_valor);
    v_Sesion.save_session;
    owa_util.redirect_url('http://mipc/servlet/page?
    pageid='||ppagina||chr(38)||'_dad=portal30'||chr(38)
    ||'_schema=PORTAL30'||chr(38)||'_mode=3');
    END;
    -- FORM --
    -- ... BEFORE DISPLAYING THE PAGE
    alfonso.consulta_preferencia(p_session);
    -- PROCEDURE consulta_preferencia --
    CREATE OR REPLACE PROCEDURE consulta_preferencia(p_session in
    out PORTAL30.wwa_api_module_session) IS
    v_RowID VARCHAR2(100);
    v_Session portal30.wwsto_api_session;
    v_nombre VARCHAR2(40);
    BEGIN
    v_Session := portal30.wwsto_api_session.load_session
    ('CONTEXT','SESS_EMP');
    v_nombre := v_Session.get_attribute_as_varchar2
    ('nombre_preferencia');
    IF v_nombre IS NOT NULL THEN
    BEGIN
         SELECT rowidtochar(rowid) INTO v_RowID
         FROM ALFONSO.VISTAPREFERENCIAS
         WHERE nombre_preferencia = v_nombre;
    -- VISTAPREFERENCIAS it is the view in which the form is
    based.
    END;
    -- Tell the component that the query is coming from a link,
    and that the rowid
    -- is being used to query the correct context record.
    p_session.set_value (p_block_name=>'DEFAULT',
    p_attribute_name=>'_CALLED_FROM_LINK'
                   ,p_value=>'ROWID');
    -- Pass the rowid of the context record to query.
    p_session.set_value (p_block_name=>'DEFAULT',
    p_attribute_name=> '_ROWID'
                   ,p_value=> v_RowID);
    -- Now do the actual query, using the query button
    processing in the target module
    portal30.wwa_api_module_event.do_event
    ('DEFAULT','QUERY_TOP',1,'ON_CLICK',True,'',p_session);
    -- Save the session information, which includes the
    p_session.save_session;
    END IF;
    END;
    /

    You can make the report with a procedure from which you may call to a form by means of a link. It is a possibility, no??
    It is better a example:
    TABLE A
    campo1 VARCHAR2 (20)
    campo2 VARCHAR2 (20)
    CREATE OR REPLACE PROCEDURE REPORT IS
    v_cursor NUMBER;
    sentencia VARCHAR2(200);
    vnumfilas NUMBER;
    rowid_pref VARCHAR2(18);
    v_campo1 <schemaname>.A.campo1%TYPE;
    v_campo2 <schemaname>.A.campo2%TYPE;
    BEGIN
         htp.p('<HTML>');
         htp.p('<HEAD>');
         htp.p('</HEAD>');
         htp.p('<BODY>');
              sentencia := 'SELECT rowidtochar(rowid), campo1, campo2 FROM A';
              DBMS_SQL.PARSE(v_cursor,sentencia,DBMS_SQL.V7);
              DBMS_SQL.DEFINE_COLUMN(v_cursor,1,rowid_pref,18);
              DBMS_SQL.DEFINE_COLUMN(v_cursor,2,v_campo1,20);
              DBMS_SQL.DEFINE_COLUMN(v_cursor,3,v_campo2,20);
              vnumfilas := DBMS_SQL.EXECUTE(v_cursor);
              LOOP
              IF DBMS_SQL.FETCH_ROWS(v_cursor)=0 THEN
                        EXIT;
              END IF;
              DBMS_SQL.COLUMN_VALUE(v_cursor,1,rowid_pref);
              DBMS_SQL.COLUMN_VALUE(v_cursor,2,v_campo1);
              DBMS_SQL.COLUMN_VALUE(v_cursor,2,campo2);
              v_link := '<A href="PORTAL30.wwa_app_module.link?p_arg_names=_moduleid'||chr(38)||'p_arg_values=<form's moduleid>'||chr(38)||'p_arg_names=_rowid'||chr(38)||'p_arg_values='||rowid_pref||chr(34)||'>'||campo1||'</A> '||campo2||' <BR>';
                   htp.p(v_link);
                END LOOP;
         htp.p('</BODY>');
         htp.p('</HTML>');
    END;
    the form has to be based on the table A.
    I dont know if this example has errors, but have you the idea??
    I hope it helps you out.
    (Excuse my english)                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Documentation for Oracle Advance Queue

    Any pointer to Documentation for Oracle Advance Queue?
    Thanks In Advance
    priyadarshi.

    hello,
    here it is
    http://download.oracle.com/docs/cd/B10501_01/appdev.920/a96587/qintro.htm
    http://www.oracle.com/technology/sample_code/tech/dataint/index.html
    both will be useful
    thanks and regards
    VD

  • Need oracle practice question for OCA

    Need oracle practice question for OCA.
    Edited by: 823938 on Dec 27, 2010 10:21 PM

    It's illegal to use dumps.
    Read the following link:
    http://www.certguard.com/braindumps.asp

  • Important Question for Oracle Corporation

    Hello,
    I am a J2EE architect in a reputable multinational software house in Pakistan. Till last month, we were using Oracle 9iAS (9.0.4) with Borland JBuilder 9 (using oracle plugin found in Jbuilder Cd). We decided to migrate
    to JBuilder X so we downloaded its trial version to evaluate it. But to our surprise it does not include the plugin for Oracle 9iAS. We tried to use the plugin for JBuilder 9 but i did not work.
    Therefor i humbly request to Oracle Corporation to provide us the plugin of OC4J(9.0.4) for JBuilder X.
    Anybody can help me too if they got the one.
    My Email address is : [email protected]
    please reply me on the forum first and then email me the plugin.
    Yours sincerely,
    Shoaib Akhatr
    Senior Java Architect

    I just post my forms questions here. I'm using 6.0 seems to be fine.

  • Recommended books for Oracle 10g

    I'm new to this group, so my apologies in advance if this is not the appropriate group for this question. If it is not, please steer me in the right direction. Thanks!
    Here's my situation: I'm currently a Microsoft SQL Server developer and have been for about 6 years, so I'm fairly conversant with SQL. Our company is in the process of purchasing an application that runs under Oracle 10g, and I need to learn as much as I can as quickly as I can about 1) being the Oracle DBA for our (small) company, and 2) developing in Oracle SQL.
    Are there any specific books some of you would recommend for my particular situation (beginning level Oracle user, intermediate/advanced in SQL)? Any and all advice/suggestions/help will be gratefully accepted.
    Thanks in advance --
    Carl

    First thing I would recommend is going in the OTN and download the 2 day dba article
    and the top 20 Oracle 10g features
    Top 20:
    http://www.oracle.com/technology/pub/articles/10gdba/index.html
    2 day dba:
    http://www.oracle.com/technology/pub/columns/kestelyn_manage.html

  • Need caring server for Oracle XE

    My apologies if this is an inappropriate question or the wrong place to ask it.
    I'm a small company that would like to showcase some APEX applications and need a secure and accessible server to be able to do this.
    Does anyone have any experience with companies that provide leased dedicated servers that allow installing Oracle XE (or proper 10g) on it ? I've tried one and they were not very helpful. Their server was very instable and sometimes refused to reboot even when no changes had taken place yet ! I'm looking for a minimal spec'ed Linux server that will allow me to (safely) install Oracle. Speed and bandwidth are not critical but should not be too restrictive either. I'm based in the UK so this may restrict the choice of providers. Before anybody asks, I have considered hosting my own web/database server from home but my broadband connection is only 512Kbps here and not fast enough to serve my customers.
    Thanks in advance.
    Ruud Mantingh

    winner wrote:
    Hello team,
    We need a raccheck script to do a health check for oracle rac on HP-UX host, can you pls help,or the below tool not supported on hp-ux?
    RACcheck - RAC Configuration Audit Tool [ID 1268927.1]
    Regards....!At this time, the tool is supported on the following UNIX platforms:
    - Intel Linux* (Enterprise Linux, RedHat and SuSE 9 & SuSE 10)
    - Oracle Solaris* SPARC
    - Oracle Solaris x86-64
    - AIX (requires bash shell installed)
    So no hp-ux

  • PDF Printing  APEX 3.2.1  (APACHE FOP) which OC4J version  for Oracle 11g?

    I am using APEX 3.2.1 on Oracle 11.g (under windows XP)
    I want to test PDF printing (in advanced turorial) with standard config ( APACHE FOP no Oracle BI publisher).
    When I look oracle doc : http://www.oracle.com/technology/products/database/application_express/html/configure_printing.html)
    prerequisites for installing WAR file (Installing and Configuring Apache FOP) imply downlad for Oracle Containers for J2EE (10.1.3.2) ,
    once there : http://www.oracle.com/technology/software/products/ias/htdocs/utilsoft.html)
    the accessed page seems restricted to Oracle Application Server 10g Software Downloads.
    My question : is the last Version (10.1.3.5.0 : Oracle Containers for J2EE 10g (OC4J) (build #090727, 91 MB) - J2EE 1.4 compatible with EJB 3.0 / JPA 1.0 support ) also VALID for Oracle 11g ?

    I just installed a similar setup with the following software combination and it works.
    win32_11gR1_database.zip
    oc4j_extended_101350.zip
    jdk-1_5_0_22-windows-i586-p.exe

  • SAP Adaptor for Oracle Installation Help

    Hi,
    I am newbie, I am looking for help in installing SAP Adaptor for Oracle.
    My Idea is to do some RFC calls to fetch data from SAP into Oracle database. I am looking for what is my starting points, what to install and configurations. If you can help me with steps to be followed is really Appreciative. I tried to search in Oracle Forums, I guess I am not able to come up with correct tags. It may be a long explanation and may be people asked this question before. If you give me links to read is good enough.
    Following is My platform:
    Oracle:
    I have Oracle 10G and 11 versions. Right now I have my infrastructer ready for 10G. If I install SAP Adaptor and get things running according to what I need, and tomorrow if I upgrade Oracle to 11 version, What all the things that I Upgrade?
    Operating System:
    Unix AIX 5.3
    SAP:
    ECC 6
    Thanks In Advance,
    Raj Murthy(Bhavaraju)

    Hello,
    Right now I have my infrastructer ready for 10G. If I install SAP Adaptor and get things running according to what I need, and tomorrow if I upgrade Oracle to 11 version, What all the things that I Upgrade?About all the topics relatives to SAP, you should ask them (to SAP support service) the question. For instance, is Oracle 11.2 certified for SAP ECC6 ? Or would you have to wait for a later release or patch from SAP ?
    Only SAP could answer you for their own product and matrix compatibility / certification.
    Best regards,
    Jean-Valentin

  • A Brand New Breed of FREE, Online Events for Oracle Tuxedo Users

    Sorry for the plug, but I'll be giving the keynote at this virtual conference. :-) I would encourage you to register as I believe there will be a lot of new and interesting material covered, as well as some instructional hands on labs. You will be able to download a VirtualBox VM with all the necessary components on it, or run the labs in the Rackspace hosting environment.
    Oracle Tuxedo, a strategic component of Oracle Fusion Middleware, has significantly evolved during last several years to meet requirements of today's enterprise applications. With introduction of features such as, native Web services, an extremely easy-to-use new programming model, metadata driven development, support for Python/Ruby programming languages and much more, Oracle Tuxedo provides a complete platform for enterprise application development. How do you keep up with all the advances in Oracle Tuxedo?
    Join us at this free, online, multi-language event series to learn how you can get the most out of your existing Tuxedo services and quickly develop new Web applications.
    •     Learn new Oracle Tuxedo features from the comfort of your laptop
    •     Learn what Python, Ruby, and PHP have to do with Oracle Tuxedo
    •     Get Hands-on either locally with VirtualBox or hosted via the Cloud
    •     Network Online with Peers, Oracle Tuxedo architects and developers worldwide
    •     Live Chat in virtual chatroom
    •     Sessions, Labs, and Live Help in LOCAL Language!
    •     Post-event access to conference material
    •     Cloud Hands on Labs powered by Rackspace
    Review the agenda details, dates, and language support options.
    Space is limited, so register for this event now!
    For information and to register go to: http://www.oracle.com/goto/otnvdd
    Regards,
    Todd Little
    Oracle Tuxedo Chief Architect

    Hi,
    Tuxedo is unable to make any HTTPS calls other than SOAP/HTTPS. So if you are using web services, then SALT can perform SOAP/HTTPS calls, although I don't believe we support the message signing feature of WS-Security (although you might want to check the SALT 10gR3 or later documentation.)
    We are considering adding support for HTTP/HTTPS directly in Tuxedo, but that feature is not available in any current version of Tuxedo. What exactly are you trying to accomplish?
    Regards,
    Todd Little
    Oracle Tuxedo Chief Architect
    PS It would have been better to start a new thread for this question. :-)

  • Sample data for oracle 10.1.0.4

    Hi,
    On the companion cd samplel data are avialable for oracle 10g 10.1.0.2.
    I've upgraded the database to 10.1.0.4. Setup fails now.
    Two questions: can I install in a new oracle home?
    Are sample data available for 10.1.0.4?
    (I'm only interested in the odm sample data)
    Thanks in advance for any reaction.
    Leo

    For the first question, you cannot install the companion CD to a new oracle home which is different from the database home.
    Second, sample programs are in companion CD which is shipped with 10.1.0.2 base release. For a patch release, Oracle does not ship a companion CD. You can go to $ORACLE_HOME/demo directory to check whether you have installed any sample programs previously.
    If the database was upgraded from a 9.2.0.X release, you may want to upgrade it to 10.1.0.2 release first and install the companion CD at 10.1.0.2 level. You can upgrade it to 10.1.0.4 afterwards.
    Xiafang

  • How to configure SNMP agent for Oracle 10g

    Hello,
    I've installed oracle 10g in a Windows 2000 SP4 and I want to monitor database using SNMP.
    I've already installed Windows SNMP agent but I haven't any idea how to configure Oracle in order to grant SNMP monitoring.
    What should I do?
    Is Oracle database ready to be monitored via SNMP by default?
    Thanks in advance for your help.
    Regards,
    Carles

    Hello,
    Thanks for your message.
    In fact, I already found this doc in oracle, but it just show executables I have to install and my question can I install these executables.
    I've already installed Windows SNMP agent, configured and testedwith disk space checkings, but it doesn't work fine with Oracle.
    I launched Oracle Universal Installer and I checked Installed Products, but I haven't found how to install SNMP agents for oracle.
    How can I add Oracle Peer Master Agent and Encapsulator to my oracle installation?
    Thanks again for your help.
    Regards,
    Carles

  • Configuring Weblogic's jDriver for Oracle to use in distributed transactions

              Here is some errata to the instructions at "Configuring XA JDBC drivers" section of the online beta documentation:
              http://www.weblogic.com/docs60/adminguide/managetx.html#1041268
              The sample JDBC connection pool using Weblogic jDriver for Oracle should be:
              <JDBCConnectionPool
              Name="fundsXferAppPool"
              Targets="myserver"
              URL="jdbc:weblogic:oracle:localdb"
              DriverName="weblogic.jdbc.oci.xa.XADataSource"
              InitialCapacity="0"
              MaxCapacity="5"
              CapacityIncrement="1"
              Properties="user=scott;password=tiger;server=localdb;rmid=0"
              />
              <JDBCTxDataSource
              Name="fundsXferDataSource"
              Targets="myserver,server1"
              JNDIName="myapp.fundsXfer"
              PoolName="fundsXferAppPool"
              />
              Here is an example of an additional XA connection pool for a second database instance:
              <JDBCConnectionPool
              Name="fundsXferAppPool2"
              Targets="myserver"
              URL="jdbc:weblogic:oracle:localdb2"
              DriverName="weblogic.jdbc.oci.xa.XADataSource"
              InitialCapacity="0"
              MaxCapacity="5"
              CapacityIncrement="1"
              Properties="user=scott;password=tiger;server=localdb2;rmid=1"
              />
              <JDBCTxDataSource
              Name="fundsXferDataSource2"
              Targets="myserver,server1"
              JNDIName="myapp.fundsXfer2"
              PoolName="fundsXferAppPool2"
              />
              Please note the different "rmid" values for the 2 different database instances. Note also that the above sample only applies for Beta 1. Instructions may change in the future for Beta 2.
              Also, all the names of the data source properties shown in "Table 8-2 Data Source Properties for WebLogic jDriver for Oracle" should start with lower case.
              The Beta 1 online documentation will soon be updated to reflect the above. Our apologies for any inconvenience caused.
              -- Priscilla Fung, BEA Systems, Inc.
              

              Thanks
              Mark
              "Sree Bodapati" <[email protected]> wrote:
              >Hi Mark,
              >
              >Yes you need 8.1.6 DB Server or higher for WebLogic's jDriver for Oracle/XA
              >as well.
              >
              >/
              >sree
              >
              >
              >"Mark Cordobal" <[email protected]> wrote in message
              >news:[email protected]..
              >>
              >> I read that XA features require version Oracle8i release 8.1.6 or later
              >of
              >the Oracle
              >> server.
              >> Does this apply only to Oracle JDBC drivers (which implement 2pc on top
              >of
              >JAVA_XA
              >> package) or also to Weblogic's jDriver for Oracle/XA ?
              >> I mean, if I have two Oracle 8.06 (or however < 8.1.6) jdbc Resource
              >Manager, can
              >> I implement (wlserver 6.1sp2) a distributed xa transaction using
              >Weblogic's jDriver
              >> for Oracle/XA ?
              >> Or is it (jdriver) built also on top of JAVA_XA package, and so the db
              >server XA
              >> compliancy is a must ?
              >>
              >> Thanks in advance
              >>
              >> Mark
              >
              >
              

Maybe you are looking for

  • Cost element in FRL in obyc

    hi all we have created external service account as cost element and that is mentioned iin transaction key FRL in obyc so whenever i am doing the GR for subcontracting posting system will debit the FRL account and will credit the  GR/IR account  so at

  • ETC Spread date ??

    Hi All, Can any one expand ETC Spread date. That is the error I am facing while running concurrent program. thanks

  • Blue thin line on the lower left iMac G4 Flat Panel

    Hi, since yesterday there is a blue thin line (0,039 inches (1 mm) thin; 35 inches (9 cm) long on the panel of my iMac G4 Flat Panel. It looks like drawing with a ruler, so straight and so fine. The line is on the left lower corner in a vertical posi

  • Should EntityManaer be Closed in a Desktop Application Environment

    Hi All, I'm developing a desktop application with persistence api to connection to database. The application consists of two simple classes Order and Customer, where Customer is used as a field in Order. There is a ManyToOne relationship from Order t

  • Camera raw plug-in conflict

    Lightroom asking me to update Camera Raw plug-in version 7.2.  Photoshop states I have the latest plug-in: version 6.7.0.339.  Help please.