Simple insert, delete and update not working after oracle 10g installation

Hello,
I made a new installation of Oracle 10g (10.2.0.1.0) and created a schema . Now i try to insert or update data using simple queries, but unfortunately nothing happens. I tried inserting or updating data even via sqlplus, but unfortunately the same result. Query takes infinite time to end, so i had to manually end it every time... No errors... No warnings... but takes long time... I have given all the required permissions to the schema but the same result. Can somebody help me figure out the problem?
Tried creating a new table and the insert and delete are working fine... think the problem is with this table... Imported the rows of the table from another online database. I dont understand how this might be a problem.
Edited by: user13333704 on Mar 15, 2011 1:26 AM

However how do you generate awr reports and how to find the session wait?TO generate the AWR report
sql> ?/rdbms/admin/awrrpt
http://download.oracle.com/docs/cd/B19306_01/server.102/b14211/autostat.htm#BABDHAGF
The event column in v$session , in v$active_session_wait will show you the session wait event.What the session was actually waiting for.
HTH
Anand

Similar Messages

  • Sqlplus is not working after oracle 10g client installatio on linux server

    Him
    jsut now i installed oracle 10.2.0.1 client version in one my linux server. after successfully installation sqlplus is not working . could you please chekc and let me know what is the problem? below are my .profile details.
    # Set up the shell variables:
    EDITOR=vi
    export EDITOR
    ### Set the umask
    umask 022
    ### Set ulimit
    #ulimit -u 16384
    #ulimit -n 65536
    ### Set Oracle Environment
    export ORACLE_BASE=/u01/app/oracle
    export ORACLE_HOME=/u01/app/oracle/product/10.2.0/client_1
    export PATH=$ORACLE_HOME/bin:$ORACLE_HOME/OPatch:$PATH
    export LD_LIBRARY_PATH=$ORACLE_HOME/lib:$ORACLE_HOME/ctx/lib
    export LIB_PATH=$ORACLE_HOME/lib
    export ORATAB=/etc/oratab
    export NLS_LANG=american_america.we8iso8859p1
    export THREADS_FLAG=native
    echo ' '
    echo 'Oracle 10G environment has been setup'
    echo 'Export the ORACLE_SID to target database before connecting'
    echo ' '

    841731 wrote:
    Him
    jsut now i installed oracle 10.2.0.1 client version in one my linux server. after successfully installation sqlplus is not working . could you please chekc and let me know what is the problem? below are my .profile details.
    # Set up the shell variables:
    EDITOR=vi
    export EDITOR
    ### Set the umask
    umask 022
    ### Set ulimit
    #ulimit -u 16384
    #ulimit -n 65536
    ### Set Oracle Environment
    export ORACLE_BASE=/u01/app/oracle
    export ORACLE_HOME=/u01/app/oracle/product/10.2.0/client_1
    export PATH=$ORACLE_HOME/bin:$ORACLE_HOME/OPatch:$PATH
    export LD_LIBRARY_PATH=$ORACLE_HOME/lib:$ORACLE_HOME/ctx/lib
    export LIB_PATH=$ORACLE_HOME/lib
    export ORATAB=/etc/oratab
    export NLS_LANG=american_america.we8iso8859p1
    export THREADS_FLAG=native
    echo ' '
    echo 'Oracle 10G environment has been setup'
    echo 'Export the ORACLE_SID to target database before connecting'
    echo ' '" sqlplus is not working" is not an actionable error message. Unfortunately, you didn't show us what happens when you try to execute sqlplus.
    Essentially, what you've done is the equivalent of 'here's a picture of my garage. Why won't my car start?'

  • Insert,  Delete and Update options in Table control

    Experts,
    I have writen code for Insert,  Delete and Update options in Table control. They are not working properly...
    can any one send the code for the above please...
    Thanks in advance..

    Hi,
    Following steps will help you.
    1.TOP-INCLUDE
    DATA: ITAB1 LIKE KNA1 OCCURS 0 WITH HEADER LINE.
    DATA: ITAB2 LIKE KNA1 OCCURS 0 WITH HEADER LINE.
    DATA: WA LIKE KNA1.
    DATA: ANT TYPE I,CUR TYPE I.
    DATA: OK_CODE TYPE SY-UCOMM.
    CONTROLS: TABCTRL TYPE TABLEVIEW USING SCREEN 100.
    IN FLOWLOGIC
    PROCESS BEFORE OUTPUT.
    LOOP AT ITAB1 CURSOR CUR WITH CONTROL TABCTRL.
    ENDLOOP.
    PROCESS AFTER INPUT.
    MODULE CLEAR_DATA.
    LOOP AT ITAB1.
    MODULE MOVE_DATA.
    ENDLOOP.
    ADD “OK_CODE” IN ELEMENT LIST. CLICK ON LAYOUT AND  ADD TABLE CONTROL(name it as TABCTRL) AND PUSHBUTTONS AS FOLLOWS.
    SELECT THE FIELDS FROM PROGRAM. SAVE CHECK AND ACTIVATE.
    CLICK ON FLOWLOGIC EDITOR FROM APPLICATION TOOL BAR.
    DOUBLE CLICK ON MODULE “CLEAR_DATA”.
    write the in this module as below.
    CLEAR ITAB2. REFRESH ITAB2.
    DOUBLE CLICK ON MODULE “MOVE_DATA”.
    write the code in this module as below.
    APPEND ITAB1 TO ITAB2.
    ACTIVATE PAI AND WRITE THE CODE AS BELOW.
    CASE OK_CODE.
    WHEN 'FETCH'.
    SELECT * FROM KNA1 INTO TABLE ITAB1 UP TO 20 ROWS.
    TABCTRL-LINES = SY-DBCNT.
    WHEN 'ADD'.
    GET CURSOR LINE CNT.
    CNT = TABCTRL-TOP_LINE + CNT - 1.
    CLEAR WA.
    INSERT WA INTO ITAB1 INDEX CNT.
    WHEN 'MODIFY'.
    GET CURSOR LINE CNT.
    READ TABLE ITAB2 INDEX CNT.
    LOOP AT ITAB2.
    MODIFY KNA1 FROM ITAB2.
    ENDLOOP.
    SELECT * FROM KNA1 INTO TABLE ITAB1.
    WHEN 'EXIT'.
    LEAVE PROGRAM.
    ENDCASE.
    SAVE,CHECK AND ACTIVATE ALL.
    CREATE TCODE AND EXECUTE.
    contact if u hv any issues regarding this code.
    reward points,if it is useful.
    Thanks,
    Chandu.

  • What will you do if any SQL is not working.in oracle 10g...apps 11.5.10.2

    What will you do if any SQL is not working. in oracle 10g....apps 11.5.10.2

    928714 wrote:
    yes sir.If you help me in answering my questions i wll be very thankful to you sir.
    tnx,I haven't a clue.
    As you have been advised in many of your posts, go study the documentation for whichever specific topic you are interested in.
    For me to answer your questions, I would need to go get that documentation.
    Then I would need to read that documentation.
    Then I would need to write a forum post that interprets what I think I learned from that documentation.
    It is so very much faster if YOU go do that instead of posting to a forum and expecting others to do it. You will remember what you study for a lot longer time if you teach yourself.

  • Table_From_Block Build-in Package is not working in Oracle 10G

    Hi
    Table_From_Block Build-in Package is not working in Oracle 10G
    Kindly advice..

    user648759 wrote:
    Hi
    Table_From_Block Build-in Package is not working in Oracle 10G
    Kindly advice..Provide a little more information. Forms version OS version, more information about your problem and question.
    --and explain what on earth Table_From_Block* mean's--
    Tony
    PS: TABLE_FORM_BLOCK is a built-in for internal use, usually auto generated by forms. For a moment I didn't get what that meant, need more coffee.
    Edited by: Tony Garabedian on Aug 29, 2008 12:39 PM

  • Select * from tab is not working in oracle 10g

    select * from tab is not working in oracle 10g. But at the same time,
    select * from <<table>> is working.
    Please advise me.

    This works for me in 10.2.0.2
    Connected to:
    Oracle Database 10g Enterprise Edition Release 10.2.0.2.0 - 64bit Production
    With the Partitioning, OLAP and Data Mining options
    SQL> select * from tab;
    TNAME                          TABTYPE            CLUSTERID
    LOAN_DETAIL                    TABLE
    PLAN_TABLE                     TABLE
    ...

  • Keyboard and touchpad not working after Windows 10 update

    after udating windows 10 on my probook 4440s keyboard and touchpad not working. if i press a key for 10seconds the key then shows up in the screen. and touchpad is worst. it freezes all the time barely moves. but with usb mouse it works fine 

    It's known that installing Windows from an external DVD drive on a Mid 2013 MacBook Air causes that the keyboard doesn't work after finishing the installation. The fix is to install Windows by using a USB drive. See > http://support.apple.com/kb/TS4599

  • Ipod classic will not restore and will not work after many attempts

    I have purchased and replaced 3 ipod models, This is my third one (80GB ipod classic) and with out fail after 1 year and 2 months after buying it, it stopped syncing with my itunes and now after 5 attempts to restore it will not restore and will not work. I am sick of this and find it preposterous. What is wrong with ipods..? what is wrong with my recent one?

    I have tried to restore via itunes and I still get the same message on the Ipod after many many restore attempts."Use iTunes to restore" with the picture of a plug on the screen and then it just shuts down. Exactly 1 year and 2 months after I purchased it as was the previous Ipod I had in 07.... what is going on?
    Are ipods not made to work with both macs and pc's? it seems they just shut down after a while
    what can I do?

  • [SOLVED] Xorg and keyboard not working after upgrade.

    Hi guys,
    after a `# pacman -Syyu` I got Xorg not starting and keyboard not working: I am unable to do anything.
    I'm posting here pacman's log that I got by booting an Ubuntu Live CD: https://gist.github.com/anonymous/7517806
    Any hint?
    How do you recover a system once it's gone like this? Many thanks in advance.
    J
    Last edited by ifsixwasnine (2013-12-23 13:58:16)

    WonderWoofy wrote:
    I wouldn't necessarily call this [SOLVED].  At best I would probably mention that you found a workaround.  The addition of '(downgrade)' likely makes it fine, but just FYI for future threads.  There are two reasons for this.  One, others who find this thread are likely to dig into it thinking there is a real solution, and two, if you mark it as [Solved] it might generate less attention, lessening the chances of you actually being helped to a real solution.
    Just my 1.46¢
    You're right, problem wasn't actually solved. In fact, yesterday I upgraded the whole system again and the same problem showed up, but I got it fixed.
    Same scenario: after a boot (shorter than usual), what I had was a tty, but I noticed something that I hadn't noticed the last time: the prompt said "Arch Linux 3.11.[?]".
    The kernel version was supposed to be 3.12.[?] so I started investigating and after several attempts, this is how I got the system working again:
    1. Chrooted into the system
    2. Wiped /boot
    3. Re-installed grub
    4. Re-installed linux kernel
    5. Re-created grub.cfg
    6. ???
    7. Profit
    I'm pretty sure that what originated the problem wasn't a "kernel issue" as I pointed out in my previous post, but it was an incorrect installation of grub: in fact, the grub prompt never showed up before yesterday, the system used to boot straight, ignoring the 5 seconds timeout.

  • Declarative transaction not working  for oracle 10g as.

    Hi Friends,
    While migrating from sun app server to oracle 10g as, i have problem in declarative transactions.
    I created stateless and stateful beans with declarative transactions. Transactions were working fine till they were in sun app server environment, but they fail in oracle 10g as environment.
    I build the ear through sun IDE and deployed the ear on oracle 10g as. Things worked fine till transactions come onto picture.Declarative transaction get failed in case of oracle 10g as.
    Please if you have faced such problem or have any way to solve this problem, Pls revert back.
    rgds,
    m_khanduri

    sb92075 thank you for reply. Please see the command outputs.
    $ hostname
    LONDAN
    $ id
    uid=503(oaprod) gid=5002(dba) groups=5002(dba)
    $ uname -a
    Linux LONDAN 2.6.18-274.el5 #1 SMP Fri Jul 8 17:36:59 EDT 2011 x86_64 x86_64 x86_64 GNU/Linux
    $ ps -ef | grep -i pmon | grep -v grep
    oaprod    3810     1  0 May11 ?        00:02:24 ora_pmon_OID
    jgarry thank u also. please see the response.
    $ ls -rl $ORACLE_HOME/dbs
    total 2848
    -rw-rw---- 1 oaprod dba    3584 May  8 14:33 spfileOID.ora
    -rw-r----- 1 oaprod dba 2867200 Sep 10 10:17 snapcf_OID.f
    -rwSr----- 1 oaprod dba    1536 May  5 06:17 orapwOID
    -rw-rw---- 1 oaprod dba      24 May 11 17:24 lkOID
    -rw------- 1 oaprod dba    8385 May  5 05:18 init.ora
    -rw------- 1 oaprod dba   12920 May  5 05:18 initdw.ora
    -rw-rw---- 1 oaprod dba    1544 May 11 17:24 hc_OID.dat
    ok. previously I set TNS_ADMIN. Now I set TWO_TASK, while connecting now am getting different error "insufficient privilege". Please check following.
    $ export TWO_TASK=OID
    $sqlplus / as sysdba
    SQL*Plus: Release 10.1.0.5.0 - Production on Wed Sep 11 05:22:28 2013
    Copyright (c) 1982, 2005, Oracle.  All rights reserved.
    ERROR:
    ORA-01031: insufficient privileges
    But, now while connecting with "sys", I don't need to supply "@OID" it's connecting directly with "sqlplus sys as sysdba" command.

  • Facetime, iMessage, and Mail not working after iOS 6.1.3 update

    I've had my iPod touch 4th generation since Oct 2010 and never updated the iOS until very recently. Before the update, Facetime worked consistently and easily. After I finally got around to updating my iOS a week ago, my iPod has come into severe issues.
    99% of the time, I cannot send or receive Facetime calls. If I try to make a call, it doesn't make the dial tone and eventually it just says "Connection Lost". Nothing happens if someone is trying to send me a call. I only Facetime with my boyfriend and his iPod hasn't changed since Facetime was last working. HIs other iPod is also updated with iOS 6.1.3.
    I never used iMessage before the iOS update, but because it says on Apple support that it uses push notifications like Facetime does, so I tried it. Most of the time, I cannot send or receive messages. I rarely used Mail before the update, but I never had a problem with it. Now, when I enter my gmail password, it keeps saying my username and password are not correct, even though I haven't changed my credentials.
    I only use my iPod for Facetime, iTunes, and Pandora. I don't need iMessage or Mail, but I am testing with those to see if this can help find the root cause of the problem. Pandora works smoothly so I know it's not a wifi connection issue. I have searched for remedies on end and tried:
    1.  Reset, turn off/restart, turn Facetime on and off, etc.
    2. Changing the DNS server address to 8.8.8.8, which made Facetime work normally for one time and never again
    3. Updating my Apple ID password online, then signing out and signing back in
    4. Creating another Apple ID with my other gmail account. Maybe 1 out of 10 Facetime call attempts, I can generate the dial tone, but when my boyfriend clicks to receive the call, it says that I am unavailable. iMessage has about the same success rate. It seems when I miraculously can send or receive texts through iMessage, I can manage to get the dial tone when I try Facetime, though the call cannot go through.
    This is of course extremely frustrating and I highly regret the update now. I was hoping for an improved iPod after the update, and now I have a near-dud! I did make sure to check my location and date and time, and both are correct (US, Central time). Any help would be greatly appreciated. Thank you.

    I spoke too soon. I tried Facetime again last night and had the same problems. Another factory reset did not work. I think it may be time to just call Apple support.

  • IPhone 6 Wifi and Blutooth not working after update!

    I updated my iPhone 6 this weekend and did not back it up before doing so.  I now notice that my WiFi and Bluetooth are off and not working! I can't turn the back on.  I reset the phone, I even reset all the network settings, but can not turn them on.  I also noticed that I am not getting text an emails as quick.  My iPad Air is fine, but my phone is really screwed up.  Any suggestions?
    Also - I have to say this, what's up with Apple lately? Why so many issues with updates lately? I (and everyone else) pay a lot of money for these devices and the service, how about putting out updates that don't screw everything up for a change.

    P90X Dad wrote:
    I updated my iPhone 6 this weekend and did not back it up before doing so.  I now notice that my WiFi and Bluetooth are off and not working! I can't turn the back on.  I reset the phone, I even reset all the network settings, but can not turn them on.  I also noticed that I am not getting text an emails as quick.  My iPad Air is fine, but my phone is really screwed up.  Any suggestions?
    Also - I have to say this, what's up with Apple lately? Why so many issues with updates lately? I (and everyone else) pay a lot of money for these devices and the service, how about putting out updates that don't screw everything up for a change.
    Read these articles: [iOS: Troubleshooting Wi-Fi networks and connections - Apple Support] [iOS: Troubleshooting Bluetooth connections - Apple Support]
    And it was unwise to not make a backup prior to updating.  That's contrary to what Apple recommends: [Update the iOS software on your iPhone, iPad, and iPod touch - Apple Support] (Before you update Back up your device to iCloud or iTunes.)
    And what issues with updates are you talking about?  This is your first post on this forum.

  • Facetime and imessage not working after updating to ios 7

    Facetime and imessage is not working at my 4s phone but on my ipad mini and iphone4 it is. What do i need to do? I have reset and sign out my account but still i cant activate it.

    backup the device with itunes.
    Restore the device with itunes and set up as new.
    Sign into the facetime and imessage to activate it.
    After that is done and activation is good.
    Restore from the backup.
    Then make sure to sign into facetime and imessage again and you should be good to go

  • Keyboard letters and numbers not working after (?) serious memory use (?)

    So I've been having problems with my keyboard on my MBP 15-inch, Early 2011 (OS version 10.7.5, fully updated). It stops working after I use Photoshop or InDesign (cs6) for a long period of time or when I'm surfing the web a lot. The best example where it for sure stops working when surfing the web is when I'm on tumblr and I scroll through dozen of pages on my feed. When it stops working, the only keys that continue to work is everything but the numerals and letters.
    I've taken it in, replaced the keyboard and talked to apple support and they can't figure it out. I assumed that it stops working because of all the loading images, info and memory that is in use when applcations are open but I don't know if it's because of memory.
    One thing that always occurs right before the keyboard stops working is this sound from the speakers that sounds like gears turning three times or three fast ticks. Only once has the letters and numbers start working and I don't now what I did to make it come back but I heard the three ticks play again.
    But my only solution to make it start again is restarting the computer.
    Does anybody have this problem/know the solution to make this stop?

    The only Upperfilters and Lowerfilters you were supposed to remove were the ones in 4D36E965 which is for the Optical Drive.
    The other keys, for example 4D36E966 and 4D36E967 etc.. are for other devices, such as the keyboard, mouse, and possibly other devices like sound and graphics. This is not good, because its hard to manually restore those filters without knowing what was in there before you deleted them.
    Did you backup the registry before deleting the keys?
    You could try a System Restore to restore the registry back to a previous state. If you boot into Safe Mode (press F8 or F5 before XP boots up), you can select a previous date to restore back to.
    Then follow these instructions http://support.microsoft.com/default.aspx?id=314060

  • Internet and more not working after upgrading to iOS 8

    After upgrading to IOS8 - I had multiple issues
    Network Connection is shotty and disconnects after clicking few sites
    Email gets stuck
    There is some sort of a bug(s) system is not stable.
    Safari is not working
    Apple needs an update or patch very soon.

    Sept. 22, 2014 Hello everyone finally a solution - The issue is with the 5GHZ networks.  Reset your network of your IPAD and/or IPHONE and connect to your slower 2.4GHZ network - So far issue is fixed but for gamers and serious bandwidth absorbers, it might be a disappointment with the 2.4GHZ.
    Let's face it, it's better than the sporadic network drops.
    My Movie connection was uninterrupted.

Maybe you are looking for

  • Creation of PD Profiles directly within Production environment.

    The company I work for has recently upgraded all SAP environments, including where HR resides.  Prior to the upgrade, we were able to create PD profiles directly within PRD, but now we are no longer since upgrading via OOSP which updates some of the

  • WCM_PLACEHOLDER Service does not show css and images

    Hi, I am trying to use WCM_PLACEHOLDER service to display contents created with Site Studio. But the format of the page is different from the original. Data file is ok but there is no image or CSS. Any help will be really appreciated.. Thanks, Ali

  • 'Preview' app not supported on this type of Mac

    When I'm trying to launch the 'Preview' app (either from Launchpad, or by clicking any image/pdf file twice), the following message appears: You can't open the application "Preview" because it is not supported on this type of Mac. The last time it wo

  • RFC function to get the WBS Element formatted string

    Hi, Is there an RFC function I could use which would do what the CONVERSION_EXIT_ABPSN_OUTPUT does? We are using Project IDOC to replicate WBS element in our procurement system. The IDOC only provides the unformatted version of the WBS Element id. Th

  • Need help: CONNECT by PRIOR query in ora10g

    Hi All, Recently we have migrated the DB from 9i to 10g. we used to have many rule based queries in 9i and all are changed based on 10g. All the queries that have CONNECT BY PRIOR conditions seems to behave in wrong manner. ( same query in 9i,fetches