It it necessary to kill the locks

Hello World ,
I fired this query to get the locks
SELECT l.inst_id,
SUBSTR(L.ORACLE_USERNAME,1,8) ORA_USER,
SUBSTR(L.SESSION_ID,1,3) SID,
S.serial#,
SUBSTR(O.OWNER||'.'||O.OBJECT_NAME,1,40) OBJECT, P.SPID OS_PID,
DECODE(L.LOCKED_MODE, 0,'NONE',
1,'NULL',
2,'ROW SHARE',
3,'ROW EXCLUSIVE',
4,'SHARE',
5,'SHARE ROW EXCLUSIVE',
6,'EXCLUSIVE',
NULL) LOCK_MODE
FROM sys.GV_$LOCKED_OBJECT L
, DBA_OBJECTS O
, sys.GV_$SESSION S
, sys.GV_$PROCESS P
WHERE L.OBJECT_ID = O.OBJECT_ID
and l.inst_id = s.inst_id
AND L.SESSION_ID = S.SID
and s.inst_id = p.inst_id
AND S.PADDR = P.ADDR(+)
order by l.inst_id
There are 4 lock , all of them 'ROW EXCLUSIVE' , is it necessary to kill them? and how to find the reason?

my database version is
Oracle Database 10g Enterprise Edition Release 10.2.0.1.0
SQL> select blocking_session_status,blocking_session, blocking_instance from v$session ;
BLOCKING_SE BLOCKING_SESSION BLOCKING_INSTANCE
NO HOLDER
NO HOLDER
NO HOLDER
NO HOLDER
NO HOLDER
UNKNOWN
NO HOLDER
NO HOLDER
NO HOLDER
NO HOLDER
NO HOLDER
BLOCKING_SE BLOCKING_SESSION BLOCKING_INSTANCE
NO HOLDER
UNKNOWN
UNKNOWN
NO HOLDER
NO HOLDER
NO HOLDER
NO HOLDER
NO HOLDER
NOT IN WAIT
NO HOLDER
VALID 1023 1
BLOCKING_SE BLOCKING_SESSION BLOCKING_INSTANCE
NO HOLDER
VALID 1023 1
UNKNOWN
NO HOLDER
NO HOLDER
NO HOLDER
NO HOLDER
NO HOLDER
UNKNOWN
NO HOLDER
NO HOLDER
BLOCKING_SE BLOCKING_SESSION BLOCKING_INSTANCE
NO HOLDER
NO HOLDER
NO HOLDER
NO HOLDER
NO HOLDER
NO HOLDER
NO HOLDER
NO HOLDER
NO HOLDER
NO HOLDER
NO HOLDER
BLOCKING_SE BLOCKING_SESSION BLOCKING_INSTANCE
NO HOLDER
NO HOLDER
46 rows selected.

Similar Messages

  • Script to kill the locks

    Hi all,
    Good day..
    DB version is 10.2.0.4 I need to write a script which has to kill any table locks in the DB which is more than 10 minutes.
    thanks,
    baskar.l

    hi thanks saad for your valuable suggestions..
    i modified the script accordingly and it executed.
    SQL> DECLARE
      2  CURSOR c IS
      3  SELECT c.owner,
      4        c.object_name,
      5        c.object_type,
      6        b.SID,
      7        b.serial#,
      8        b.status,
      9        b.osuser,
    10        b.machine
    11   FROM v$locked_object a, v$session b, dba_objects c
    12   WHERE b.SID = a.session_id AND a.object_id = c.object_id
    13   and c.object_name in ('JSW_CRM_C_HR_COIL_INFO','T_SPCL_BARCODE_CRS2');
    14  c_row c%ROWTYPE;
    15  l_sql VARCHAR2(100);
    16  BEGIN
    17  OPEN c;
    18  LOOP
    19  FETCH c INTO c_row;
    20  EXIT WHEN c%NOTFOUND;
    21  l_sql := 'alter system kill session '''||c_row.SID||','||c_row.serial#||'''';
    22  EXECUTE IMMEDIATE l_sql;
    23  END LOOP;
    24  CLOSE c;
    25  END;
    26  /
    PL/SQL procedure successfully completed.thanks,
    baskar.l

  • How can you reset an ipod if the lock button is broken?

    how can i reset my ipod if the lock button is broken?

    To reset the iPod without the hardware buttons,
    - Reset network settings: Settings>General>Reset>Reset Network Settings. All your wifi and bluetooth preferences and settings are reset. Information (such as contacts and calendars) and media (such as songs and videos) aren’t affected. You will have to rejoin wifi networks and repair BT devices
    If you mean place in recovery mode then use on of these
    For PC
    RecBoot: Easy Way to Put iPhone into Recovery Mode
    If necessary:
    Download QTMLClient.dll & iTunesMobileDevice.dll for RecBoot
    and                                           
    RecBoot tip
    RecBoot may have problems on 64X windows, then try:
    Tenorshare ReiBoot – Enter & Exit iPhone, iPad, iPod Recovery Mode with a Single ClickFor MAC or PC           
    The Firmware Umbrella - TinyUmbrella
    Installs blootware on PC too

  • My iPod Touvh 4th Generation won't turn on. It will not charge even after I used a few chargers and will not connect to a computer. The Home button is broken and I don't know if the Lock/Sleep button is now broken or stuck as well. What should I do?

    My iPod Touvh 4th Generation won't turn on. It will not charge even after I used a few chargers and will not connect to a computer. The Home button is broken and I don't know if the Lock/Sleep button is now broken or stuck as well. I believe there may be a problem with the battery or the backlight. I've had my screen replaced once by some stooges. What should I do?

    Try:
    - iOS: Not responding or does not turn on
    When it  says place the iPod in recoverymode use one of these programs.
    For PC
    RecBoot: Easy Way to Put iPhone into Recovery Mode
    If necessary:
    Download QTMLClient.dll & iTunesMobileDevice.dll for RecBoot
    and                                  
    RecBoot tip
    For MAC or PC       
    The Firmware Umbrella - TinyUmbrella
    - If not successful and you can't fully turn the iOS device fully off, let the battery fully drain. After charging for an least an hour try the above again.
    - Try on another computer                            
    - If still not successful that usually indicates a hardware problem and an appointment at the Genius Bar of an Apple store is in order.
    Apple Retail Store - Genius Bar                                     

  • Unable to Kill the Consolidation task for HFM application

    User is unable to kill the Consolidation task in HFM application. Consolidation process which usually takes 2 mins has been showing status as running @79% since 4-6 hrs. User ID is has the provisioning manager, lock Data and unlock data provisions in Shared Services. The stop task button in the Running Tasks list is not enabled . Our Support team has advanced user access which is not also able to stop the task. Please note Admin access is restricted and not allowed for such tasks.

    I would check the HFM Log to see if you find anything referring to locked / blocked records.
    If your HFM app is killed in the middle of consolidating or performing other activities that requires it to 'lock' a segment of memory in the database, that 'lock' is still held on those data points when the application restarts.
    If you then try to perform another consolidation and it hits one of those locked data points, it will sit there for a very long amount of time waiting for the 'lock' to clear.
    I forget the exact error message that you will find in the log AND I forget the timeout period; however, it sucks having to wait through that.
    The other possibility that comes to mind is that the consolidation really aborted and the status didn't update. (once again check the logs)
    Charles

  • How to kill the blocking session

    hi expert,
    when i m going to run the below query
    Update rcv_transactions_interface rti set rti.processing_mode_code ='BATCH'  where rti.interface_transaction_id = 3671265
    it gives the error:
    ORA-00054 resource busy and acquire with NOWAIT specified.
    i find out the blocking session by using the blow query;
    SELECT  a.SESSION_ID, a.SESSION_SERIAL#, min(A.SAMPLE_TIME) start_time,max(A.SAMPLE_TIME) end_time,a.inst_id, a.blocking_session,a.user_id,s.sql_text,A.EVENT,O.OBJECT_NAME,max(A.SAMPLE_TIME) - min(A.SAMPLE_TIME) 
    FROM GV$ACTIVE_SESSION_HISTORY a  ,gv$sql s, dba_objects o
    where a.sql_id=s.sql_id
    and A.CURRENT_OBJ# = O.OBJECT_ID
    and blocking_session is not null
    and a.user_id  != 0 -- exclude SYS user
    and a.sample_time > sysdate - 7
    and a.event = 'enq: TX - row lock contention'
    group by a.SESSION_ID, a.SESSION_SERIAL#, a.inst_id,a.blocking_session,a.user_id,s.sql_text,A.EVENT,O.OBJECT_NAME
    it gives the output
    SESSION_ID
    SESSION_SERIAL#
    START_TIME
    END_TIME
    INST_ID
    BLOCKING_SESSION
    USER_ID
    SQL_TEXT
    EVENT
    OBJECT_NAME
    MAX(A.SAMPLE_TIME)-MIN(A.SAMPLE_TIME)
    369
    45,849
    9/4/2013 8:29:33.119 AM
    9/4/2013 11:40:27.508 AM
    1
    554
    173
    SELECT POL.UNIT_PRICE   FROM PO_LINES POL  WHERE POL.PO_LINE_ID = :b1
    enq: TX - row lock contention
    PO_LINES_ALL
    +00 03:10:54.389000
    554
    18,872
    9/4/2013 8:29:33.119 AM
    9/4/2013 11:40:27.508 AM
    1
    365
    173
    SELECT POL.UNIT_PRICE,POL.QUANTITY,POL.UNIT_MEAS_LOOKUP_CODE,POL.AMOUNT   FROM PO_LINES POL  WHERE POL.PO_LINE_ID = :b1
    enq: TX - row lock contention
    JA_IN_PO_LINE_LOCATION_TAXES
    +00 03:10:54.389000
    572
    168
    9/4/2013 8:29:33.119 AM
    9/4/2013 11:40:27.508 AM
    1
    554
    173
    select line_location_id into :b0 from po_line_locations_all where line_location_id=:b1 for update of line_location_id
    enq: TX - row lock contention
    PO_LINE_LOCATIONS_ALL
    +00 03:10:54.389000
    581
    4,973
    9/4/2013 10:49:38.157 AM
    9/4/2013 10:50:39.259 AM
    1
    572
    173
    Update rcv_transactions_interface rti set rti.processing_mode_code ='BATCH'  where rti.interface_transaction_id = 3671265
    enq: TX - row lock contention
    RCV_TRANSACTIONS_INTERFACE
    +00 00:01:01.102000
    my problem is in the above  output among 4 which i have to delete so sove my issue.
    its very urgent for me.
    plz plz suggest me and how can i kill the session.
    thanks & regards
    pritesh ranjan

    priteshranjan wrote:
    hi expert,
    when i m going to run the below query
    Update rcv_transactions_interface rti set rti.processing_mode_code ='BATCH'  where rti.interface_transaction_id = 3671265
    it gives the error:
    ORA-00054 resource busy and acquire with NOWAIT specified.
    i find out the blocking session by using the blow query;
    SELECT  a.SESSION_ID, a.SESSION_SERIAL#, min(A.SAMPLE_TIME) start_time,max(A.SAMPLE_TIME) end_time,a.inst_id, a.blocking_session,a.user_id,s.sql_text,A.EVENT,O.OBJECT_NAME,max(A.SAMPLE_TIME) - min(A.SAMPLE_TIME)
    FROM GV$ACTIVE_SESSION_HISTORY a  ,gv$sql s, dba_objects o
    where a.sql_id=s.sql_id
    and A.CURRENT_OBJ# = O.OBJECT_ID
    and blocking_session is not null
    and a.user_id  != 0 -- exclude SYS user
    and a.sample_time > sysdate - 7
    and a.event = 'enq: TX - row lock contention'
    group by a.SESSION_ID, a.SESSION_SERIAL#, a.inst_id,a.blocking_session,a.user_id,s.sql_text,A.EVENT,O.OBJECT_NAME
    it gives the output
    SESSION_ID
    SESSION_SERIAL#
    START_TIME
    END_TIME
    INST_ID
    BLOCKING_SESSION
    USER_ID
    SQL_TEXT
    EVENT
    OBJECT_NAME
    MAX(A.SAMPLE_TIME)-MIN(A.SAMPLE_TIME)
    369
    45,849
    9/4/2013 8:29:33.119 AM
    9/4/2013 11:40:27.508 AM
    1
    554
    173
    SELECT POL.UNIT_PRICE   FROM PO_LINES POL  WHERE POL.PO_LINE_ID = :b1
    enq: TX - row lock contention
    PO_LINES_ALL
    +00 03:10:54.389000
    554
    18,872
    9/4/2013 8:29:33.119 AM
    9/4/2013 11:40:27.508 AM
    1
    365
    173
    SELECT POL.UNIT_PRICE,POL.QUANTITY,POL.UNIT_MEAS_LOOKUP_CODE,POL.AMOUNT   FROM PO_LINES POL  WHERE POL.PO_LINE_ID = :b1
    enq: TX - row lock contention
    JA_IN_PO_LINE_LOCATION_TAXES
    +00 03:10:54.389000
    572
    168
    9/4/2013 8:29:33.119 AM
    9/4/2013 11:40:27.508 AM
    1
    554
    173
    select line_location_id into :b0 from po_line_locations_all where line_location_id=:b1 for update of line_location_id
    enq: TX - row lock contention
    PO_LINE_LOCATIONS_ALL
    +00 03:10:54.389000
    581
    4,973
    9/4/2013 10:49:38.157 AM
    9/4/2013 10:50:39.259 AM
    1
    572
    173
    Update rcv_transactions_interface rti set rti.processing_mode_code ='BATCH'  where rti.interface_transaction_id = 3671265
    enq: TX - row lock contention
    RCV_TRANSACTIONS_INTERFACE
    +00 00:01:01.102000
    my problem is in the above  output among 4 which i have to delete so sove my issue.
    its very urgent for me.
    plz plz suggest me and how can i kill the session.
    thanks & regards
    pritesh ranjan
    According to the above, your session_id is 581 which is blocked by session_id 572 so you need to kill the 3rd session in the list.
    Thanks,
    Hussein

  • Is there a way to keep the screen from lighting up every time an email comes in, but still be able to see the email on the lock screen when you press the home button?

    Is there a way to keep the screen from lighting up everytime an email comes in, but still be able to see the email on the lock screen when you press the home button?  This is killing my battery, but also is kinda the whole point of the notification center in my mind.

    This is something I've been wondering. I am a bit like you, I like being able to have a glance at emails or Facebook updates without having to log in, and I think it would be great to be able to turn off the notification switching the screen on, especially for emails as I do get a lot, and Facebook, but I somehow doubt it is possible.
    I am currently monitoring how much this eats up my battery charge. On a normal day, after an overnight charge, I would probably still have 30%-40% left when I leave work in the evening. Today, I was down to 48% by lunchtime, where I've usually got a good 60-70% left... Might have to turn email notifications off on lock screen until it's possible to have them appearing in the list without flashing me...

  • Is there a way to find all the locked files my computer?

    I am having trouble importing some files into Aperture and I discovered that one of the reasons might be that some of the files are locked. I know how to unlock them but I'd like to find the locked files and unlock them all at once. Is there a way to do that?

    Back up all data before proceeding.
    This procedure will unlock all your user files (not system files) and reset their ownership, permissions, and access controls to the default. If you've intentionally set special values for those attributes on any of your files, they will be reverted. In that case, either stop here, or be prepared to recreate the settings if necessary. Do so only after verifying that those settings didn't cause the problem. If none of this is meaningful to you, you don't need to worry about it, but you do need to follow the instructions below.
    Step 1
    If you have more than one user, and the one in question is not an administrator, then go to Step 2.
    Triple-click anywhere in the following line on this page to select it:
    sudo find ~ $TMPDIR.. -exec chflags -h nouchg,nouappnd,noschg,nosappnd {} + -exec chown -h $UID {} + -exec chmod +rw {} + -exec chmod -h -N {} + -type d -exec chmod -h +x {} + 2>&-
    Copy the selected text to the Clipboard by pressing the key combination command-C.
    Launch the built-in Terminal application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Terminal in the icon grid.
    Paste into the Terminal window by pressing command-V. I've tested these instructions only with the Safari web browser. If you use another browser, you may have to press the return key after pasting.
    You'll be prompted for your login password, which won't be displayed when you type it. Type carefully and then press return. You may get a one-time warning to be careful. If you don’t have a login password, you’ll need to set one before you can run the command. If you see a message that your username "is not in the sudoers file," then you're not logged in as an administrator.
    The command may take several minutes to run, depending on how many files you have. Wait for a new line ending in a dollar sign ($) to appear, then quit Terminal.
    Step 2 (optional)
    Take this step only if you have trouble with Step 1, if you prefer not to take it, or if it doesn't solve the problem.
    Start up in Recovery mode. When the OS X Utilities screen appears, select
              Utilities ▹ Terminal
    from the menu bar. A Terminal window will open. In that window, type this:
    res
    Press the tab key. The partial command you typed will automatically be completed to this:
    resetpassword
    Press return. A Reset Password window will open. You’re not going to reset a password.
    Select your startup volume ("Macintosh HD," unless you gave it a different name) if not already selected.
    Select your username from the menu labeled Select the user account if not already selected.
    Under Reset Home Directory Permissions and ACLs, click the Reset button.
    Select
               ▹ Restart
    from the menu bar.

  • How is it possible that in preference the lock by Time Machine is unlocked the day after i locked it

    How is it possible that in preference the lock by Time Machine is unlocked the day after i locked it

    The crossdomain security policy stuff is annoying, but it's there to prevent this sort of scenario:
    Joe Blackhat writes a flash game about Bob the Goldfish. Joe Blackhat decides that a fun thing to do might be to write an SMTP client in ActionScript so that fans of Bob the Goldfish could unknowingly send spam while they play. Bob the Goldfish game goes viral. Everyone is playing it and spam volume bajillion-duples. Spam kills the internet. The End.
    This is facetious and contrived, but without crossdomain security policies, the internet would be a much more dangerous place. JavaScript has even more restrictive crossdomain policies. I don't think this is going away.

  • What is the use for lock object and how to use the lock objects

    Hi Guru's,
    I am new to ABAP .Can you please clarify the that what is the use of lock object and how to use the loct object .what is use of the Deque & Enque  function modules .

    hi ,
    below are some minfo about lock objects :
      Lock Objects
    These types of objects are used for locking the access to database records in table. This mechanism is used to enforce data integrity that is two users cannot update the same data at the same time. With lock objects you can lock table-field or whole table.
    In a system where many users can access the same data, it becomes necessary to control the access to the data. In R/3 system this access control is built-in on database tables. Developers can also lock objects over table records.
    To lock an object you need to call standard functions, which are automatically generated while defining the lock object in ABAP/4 dictionary. This locking system is independent of the locking mechanism used by the R/3 system. This mechanism also defines LUW i.e. Logical Unit of Work. Whenever an object is locked, either by in built locking mechanism or by function modules, it creates corresponding entry in global system table i.e. table is locked. The system automatically releases the lock at the end of transaction. The LUW starts when a lock entry is created in the system table and ends when the lock is released.
    Creating Lock Objects
    Lock object is an aggregated dictionary object and can be defined by using the following steps:
    o From initial data dictionary screen, enter the name for the object, Click Lock object radiobutton and then click on Create. The system displays a dialog box for Maintain Lock Objects screen
    o Enter short text as usual and the name for primary table.
    -Save
    -Select Tables option
    From this screen you can:
    Select secondary tables, if any, linked by foreign key relationship.
    Fields for the lock objects. This option allows you to select fields for objects (R/3 system allows locking up to record level). Lock object argument are not selected by user but are imposed by the system and includes all the primary keys for the table.
    1) Exclusive lock: The locked data can only be displayed or edited by a single user. A request for another exclusive lock or for a shared lock is rejected.
    2) Shared lock: More than one user can access the locked data at the same time in display mode. A request for another shared lock is accepted, even if it comes from another user. An exclusive lock is rejected.
    3) Exclusive but not cumulative: Exclusive locks can be requested several times from the same transaction and are processed successively. In contrast, exclusive but not cumulative locks can be called only once from the same transaction. All other lock requests are rejected.
    Also, last but not the least, locking the object is logical (locking with any enqueue ) .so, you have to use the lock object while trying to access from second program .
    reward if helpful ,
    Regards,
    Ranjita

  • Kill the Blocker

    Hi all,
    11.2.0.1
    We have been long bothered by a blocking process that prevents our batch process to successfully complete during midnight.
    This script helped me to identify the blocker, but did not provide the serial#r for killing the process.
    select distinct s1.username ||'@'|| s1.machine ||'(INST=' || s1.inst_id ||' SID= '|| s1.sid ||')
    is blocking '|| s2.username || '@' || s2.machine || ' (INST=' || s1.inst_id||' SID='||s2.sid ||')'    
    AS blocking_status, s2.program,s3.sql_id, s3.sql_text from gv$lock l1, gv$session s1, gv$lock l2, gv$session s2, v$sql s3
        where s1.sid=l1.sid
        and s2.sid=l2.sid
        and l1.block=1
        and l2.request >0
        and l1.id1=l2.id1
        and l2.id2=l2.id2
        and s2.sql_id = s3.sql_id;
    It this regard, to prove that I am not "lazy" I am revising the script and tell me if it correct by testing at your respective db.
    Here is my revised script:
    select distinct 'alter system kill session '||''''||s1.sid||','||s1.serial#||',@'||s1.inst_id||'''' from gv$lock l1, gv$session s1, gv$lock l2, gv$session s2, v$sql s3
        where s1.sid=l1.sid
        and s2.sid=l2.sid
        and l1.block=1
        and l2.request >0
        and l1.id1=l2.id1
        and l2.id2=l2.id2
        and s2.sql_id = s3.sql_id;
    Please check it it will kill the right process?
    Thanks a lot,
    zxy

    yxes2013 wrote:
    You did not check it
    You did not even noticed the redundant conditions which Nicolas has observed.
        and l2.id2=l2.id2
    Please check if it can be removed or there has been substitute or overwritten conditions missing?
    Thanks
    Troll.

  • Killing the Stored Procedure

    Hi All,
    I'm having a serious and urgent problem.
    Please help me in resolving this.
    I'm trying to excute a Oracle Stored Procedure from the JSP Screen.
    I.e When i click a Button in the Screen it will run the Stored Procedure (Update a table) at Background.
    Where i require help is...
    I'm clicking the Button to execute my Stored procedure. It has started the processes and running the Stored Procedure at backgroud.
    Due to connection failure or by mistake i have clicked the button again to run the Stored Procedure before the first process gets completed.
    What will be the behaviour of the System??
    Will the data be updated twice in the Table??
    Will it so table mutating error??
    If any of these situations occurs how to overcome it??
    Can i kill the first process before starting the second process, so that i will not get duplicate records in the table??
    Please give me some guideline.
    Regards,
    Gita

    Oh..my god this much complications.
    In my Stored Procedure i have not done anything other than fetching a number of rows through a cursor for certain condition and inserting that into a output table and commiting the changes.
    But the JSP is allowing to open multiple browers at the same time and process the stored procedure for the same parameters. This shows that the Stored Procedure is allowed to run for multiple seesions as it is nto showing any error message like dead lock or something.
    How to overcome this??
    Can i lock my Stored Procedure if it is clicked to run for the same parameters??
    If the Stored Procedure is triggered for the different parameters then do not lock it.
    I think diabling the button in JSP is of no use as it will be applicable only to that session. If my User opens a new session and process for the same parameter then it is of no use.
    Many Thanks for explaining the things..
    Regards,
    Gita

  • The plug in container for Adobe Flash eats up 100% of my CPU on a regular basis and I have to go in to task manager and kill the process.

    Screen updates become very slow and intermittent. I then start task manager to see what is using either ram or cpu, and invariably it is Plug-in container for Firefox using most of the cpu resources. When I kill the process, I get the message at the top of the browser that Adobe Flash plug-in has crashed.
    I understand that Flash is useful/necessary for many applications, but is there a way to limit the resources it uses?

    Do you have Logitech gaming software installed on the PC? If so, perhaps try the suggestion from the following post:
    Re: Everytime I close Itunes it loads back up

  • Secure shopping - I do not see the lock in the lower corner that usually indicates I am shopping securely. Is the site/shopping secure?

    Was going to make an online purchase and noticed the lock that is usually in the lower right corner was not there, so did not enter my credit card information and did not make the purchase. How do I know if I am securely browsing/shopping if I do not see this lock? Thank you.

    Padlock is no longer part of Firefox; it was removed beginning in Firefox 4. The padlock shows that there is a secure connection but does not supply additional information. You could have made a typographical error and still have been connected to a secure connection. The padlock was replaced in Firefox 3 with the Site Identity Button. Familiarize yourself with the Site Identity Button at the left end of the Location Bar:
    *https://www.mozilla.com/en-US/firefox/security/identity/
    *https://support.mozilla.com/en-US/kb/Site+Identity+Button
    *http://www.dria.org/wordpress/archives/2008/05/06/635/
    You can install this add-on if you wish:
    *https://addons.mozilla.org/en-US/firefox/addon/padlock-icon/
    '''If this reply solves your problem, please click "Solved It" next to this reply when <u>signed-in</u> to the forum.'''
    Not related to your question, but...
    You may need to update some plug-ins. Check your plug-ins and update as necessary:
    *Plug-in check --> http://www.mozilla.org/en-US/plugincheck/
    *Adobe Shockwave for Director Netscape plug-in: [https://support.mozilla.com/en-US/kb/Using%20the%20Shockwave%20plugin%20with%20Firefox#w_installing-shockwave Installing ('''''or Updating''''') the Shockwave plugin with Firefox]
    *Adobe PDF Plug-In For Firefox and Netscape: [https://support.mozilla.com/en-US/kb/Using%20the%20Adobe%20Reader%20plugin%20with%20Firefox#w_installing-and-updating-adobe-reader Installing/Updating Adobe Reader in Firefox]
    *Shockwave Flash (Adobe Flash or Flash): [https://support.mozilla.com/en-US/kb/Managing%20the%20Flash%20plugin#w_updating-flash Updating Flash in Firefox]
    *Next Generation Java Plug-in for Mozilla browsers: [https://support.mozilla.com/en-US/kb/Using%20the%20Java%20plugin%20with%20Firefox#w_installing-or-updating-java Installing or Updating Java in Firefox]

  • How to find the locked transaction?

    Hi All,
    Problem:
    We are trying to VOID a cheque which was already accounted for some reason. We are unable to do that. The VOID option is there, but when we go to that option and give Check date and GL Date, system says it will void. On clicking OK in this screen, another message comes saying VOIDED..Requery to see changes... But when we requery we are unable to see the voided check. Still the check status is Negotiable.
    Solution:
    Usually happens when there is a database lock on that partucular check.
    Some payment bacth of adjustment session had selected this particluar check but has not released it .
    Pls ask ur dba to have it checked and if it is indeed locked , either try to release it or kill that session.
    Now my query is how can I find out the locks via V$LOCK table.
    Thanks
    Shivank

    Hi All,
    I have found out the result of same.
    We can find out the BLOCKING transactions from
    SQL> select * from dba_locks where BLOCKING_OTHERS='BLOCKING';
    Once you find out the blocking transactions you can check it with V$SESSION for the SID and SERIAL# i.e.
    SQL> select * from V$SESSION where SID in (<SESSION_ID>);
    Now you can release the locks by
    SQL>ALTER SYSTEM KILL SESSION 'SID,SERIAL#';
    Thanks
    Shivank
    Message was edited by:
    anchorage.india

Maybe you are looking for

  • SAP Script - calling SAP layout set from ABAP/4

    Hi, Help me in calling SAP layout set from ABAP/4 Thanks

  • Need information about interfaces and namespaces in actionscript 3.0

    Hi, I need information about actionscript interfaces and namespaces, I'm preparing for ACE for Flash CS3 and I need to learn about this subjects and I can not find resources or simple examples that make these subjects understandable. Anybody can help

  • How do I remove block-in?

    How do I remove block-in? <Re-Titled By Host>

  • Linking PDF within ePub

    Greetings, I converted a MS Word document into a ePub using Adobe Robohelp. My word document has link to external PDF files(located in same folder). After converting to ePub I lose those links when I preview it on a iPhone. Is there a way to get arou

  • LDAP - Free unused Connections

    Hi, I am very new to work with Active Directory. I have got a PL/SQL script from net to communicate with LDAP and it is working fine. My task is to check the user names against the LDAP. But am getting "DBMS_LDAP: Cannot open more than 63 LDAP connec