Query all applications that are connected to database in the current time

Dears,
I need to query all applications that are connected to database in the current time. I tried using v$session but i could not reach through it to the application that are logged now to database.
As example, i connect to DB through Web Application and tried to search in v$session to can see Web Application session but i did not see it :(
From searching in google, found that there is a package named "DBMS_APPLICATION_INFO". I expected that it can help me in my request but i could not use it.
Please, advise me. Is this package help cover my requirements or there is another method ?
Thanks & Best regards,

sybrand_b,
I think that i appreciated you once you replied me and what i wanted exactly from you "Provide me Link help me more for investigation" and you did not provide something.
Where is the documentation that i could not read it !!!!!!
FYI, you are not the only one that have information_
Anyway ,as usual i will reply you in polite way.
Thanks and i will not have more input here with you !!!
Dear All,
Sorry for wasting your time to read this but i had to reply.
Please, if any one have more information regarding my issue, it will be highly appreciated.
Really , thanks all for support.
Thanks & Regards,

Similar Messages

  • How to see all devices that are connected to Apple ID

    How to see all devices that are connected to Apple ID

    Are you using a software to see all devices that are supposed to be connected to your router? You can reset and start over with your router.  Make sure you have a security enabled on it like WPA Personal. You can try DHCP Reservation as well to ensure that the devices that will have access to your router are only the ones you included on the list.

  • Can I recover the database to the current time using a backup control file?

    Can I recover the database to the current time using a backup control file? How far can I recover this database?
    I have an Oracle 10g(10.2.3) database on RHEL4.3 system.
    I have lost all the current control files and all the online redo logs, archived redo logs and all other files are OK.
    Now I have to recovery this database using a backup control file.
    Can I recover the database without any data lost?

    If
    a) it was a Shutdown Abort or an Instance Crash (i.e. backgrounds died on detecting loss of redo logs),
    b) redo logs are lost
    c) data files are intact
    You'd have to
    a) Restore datafiles
    b) Do an Incomplete Recovery to the last available ArchiveLog
    Hemant K Chitale
    http://hemantoracledba.blogspot.com

  • I Wanna See All Devices That Are Connected To My Router

    I have a E1200 router and it's pretty good however I've noticed that there are 12 devices connected to my router when infact there should only be 4 devices connected. I would like to see all the devices that are connected and disconnect the ones that don't belong HELP! 
    Solved!
    Go to Solution.

    Are you using a software to see all devices that are supposed to be connected to your router? You can reset and start over with your router.  Make sure you have a security enabled on it like WPA Personal. You can try DHCP Reservation as well to ensure that the devices that will have access to your router are only the ones you included on the list.

  • My screen continually freezes up.  I've tried closing all apps that are openfreezby double clicking on the home button and closing them. I have held down on the home button and start button simultaneously and it still freezes. Can someone out the help me?

    MY screen continually freezes up. I've tried closing all apps that are open and have held down the home button and start button simultaneously but neither helped. Can someone out there help me?

    Well the next couple of things to try would be to reset all settings, and if that doesn't help, it's probably time to restore the iOS software.
    Settings>General>Reset>Reset all settings. That will take all settings on the iPad back to factory defaults. It will not delete anything and you will not lose any data, but you will have to enter all settings again ...WiFi passwords, enable Siri, select your wallpaper, adjust brightness, turn on location services and set privacy settings, etc, etc.
    You can read about restoring the software here.
    iTunes: Restoring iOS software - Support - Apple
    Should you decide to restore the iOS, it is extremely important that you back up first so that you can restore from the backup and then sync with iTunes afterward in order to restore all content back to the iPad. It is all covered in the kb article.
    If you do not sync with iTunes, then I assume that you backup with iCloud. In that case you can erase the device in Settings>General>Reset>Erase all content and settings. Once again, backing up with I loud is I,operative before you do this so that you can restore from the iCloud backup after you erase the iPad and start over again with activation.
    You should read this first before you restore from either backup.
    How to backup and restore from a backup
    http://support.apple.com/kb/HT1766
    This is a must read before you erase the iPad should you decide to go that route.
    iOS: Understanding 'Erase All Content and Settings' - Support - Apple

  • MySQL Database Connection (two databases at the same time)

    I have never had to open more than one MySQL database from within the same website before, but I do now.  The website I have is designed where all the content comes from within the main database.  I am building an Inventory system that I want within it's own database, in the event I would ever need to move the application to another server or something, I don't want this data residing in the main database.
    Currently, I open the database connection from within a file called "common.php" that resides in a directory called "lib" that can be accessed from the root directory.  Below is the proposed code that would be placed within the "common.php" file:
    // Define Database Variables
    $dbserver = "127.0.0.1";
    $dbuser  = array('clevelan_user1', 'clevelan_user2');
    $dbpass  = array('P@ssw0rd', 'P@ssw0rd2');
    $dbname  = array('clevelan_database1', 'clevelan_database2');
    // Start Session
    session_start();
    // Connect to Databases
    connectdb($dbserver, $dbuser[0], $dbpass[0], $dbname[0]);
    connectdb2($dbserver, $dbuser[1], $dbpass[1], $dbname[1]);
    // Database 1 Connection
    function connectdb($dbserver, $dbuser, $dbpass, $dbname) {
    // connects to db
      global $connection;
      $connection = @mysql_connect($dbserver, $dbuser, $dbpass) or die ("could not connect to server");
      $db = @mysql_select_db($dbname, $connection) or die ("could not select databsase");
      return $connection;
    // Database 2 Connection
    function connectdb2($dbserver, $dbuser, $dbpass, $dbname) {
    // connects to db
      global $connection2;
      $connection2 = @mysql_connect($dbserver, $dbuser, $dbpass) or die ("could not connect to server");
      $db2 = @mysql_select_db($dbname, $connection2) or die ("could not select databsase");
      return $connection2;
    //End of Code Within the "common.php"
    From within any page of the website, I want to access both connections by placing an include at the top of each page:
    include_once("lib/common.php");
    Currently, when I run the code above, any page within the website (the home page) provides error messages with regards to database connectivity (the pages are looking for there content from within the second database.  It's as if the second database is the only database seen by the website.
    I need help figuring out how I can have two MySQL databases open at the same time (the second database will only be open for short periods of time and then closed).  But the main database is always open.

    Create one project using one copy of the exact tables.
    create 2 different sessions.xml files each pointing to the same project. Set the login information in the sessions.xml files.
    That should work fine.
    Peter

  • Dose Hyper-V 2012 R2 support the consoles of 500+ Win7 VMs are connecting by vmconnect at the same time?

    Dear Experts,
    I have 500+ Win7 VMs in Hyper-V 2012 R2. I'd like provide my guys to access these Win7 VMs' console using Virtual Machine Connection (VMConnect) w/ Enhanced Session Mode. My guys are simple workers. I assume they may execute a bat file(vmconnect [<Servername>
    <VMName>]) from the command prompt, then access their Win7 VM console and copy/paste into the virtual machine. So, there may be 500+ Win7 VMs are interacting with like physical computers. My question is if Hyper-V 2012 R2 have limitation when the
    consoles of 500+ Win7 VMs are connecting at the same time. Please kindly offer some guide. Really appreciated for the help!
    Best Regards,

    Well, the server has stayed up and running.
    The Only thing I can put it down to is that I disabled a scheduled task that is supposed to cause the server to BSOD/memory dump when a specific event ID happens. We did this several months ago as GRT generation in CA D2D backup was causing the server to
    become unresponsive and required "Turn Off" in Hyper V Manager. We scheduled a util called "NotMyFault" which was supposed to trigger when an event ID happened only during the D2d backup. That fault was cured long ago by an undocumented
    config of afstor.ini, but the scheduled task was left in place. The task never triggered - or at least there were no events showing it had triggered and in the task history, the last time was a month ago. Funny though how it was the ONLY change I made yesterday
    and the server stayed up. I will monitor for the next few days, and if the server is OK, then must conclude that it was the cause. I suppose I could re-enable it at some point to prove the point.

  • Can the Mail app mark POP server emails as "read" on all devices that are synced with it after the email has been viewed?

    I currently have my work email on my laptop, mac mini, and a couple mobile devices. Is there a way to have all devices get marked as "read" when I view it from one device? It uses a POP server account.

    Mr Thames wrote:
    It uses a POP server account.
    No there isn't.
    It's one reason that IMAP accounts are much better suited for use on multiple devices.  Does you work only offer POP?  I ask becuase, I once had a job where I had the ability to set up mail using either POP or IMAP..
    Matt

  • Traces all queries that are sent by the application

    Hi to all,
    I am gokhan,
    I am trying to trace and monitor all the queries that are coming from the application servers to oracle db.
    Oracle version : Standart Edition 11g r2
    I can see the succesfull queries by looking at the V$SQL table but I want to see the queries that have parsing or other types of errors.
    Is there a tool that I can monitor all the gueries, their errrors and if they are succesful paremeters that are sent to database and the binding variables that is returned by the database.
    An api or methodology would also be fine.
    Thanks in advance.
    Regards.
    Gokhan

    I mean
    if i execute this query
    select sysdate, user from dual;
    and then
    select * from v$sql order by last_load_time desc;
    I can see the query in the table but when i execute the foolowing query which gives INVALID IDENTIFIER error
    select sysdateA, user from dual;
    and then
    select * from v$sql order by last_load_time desc;
    I can not see the query in the table.
    So I want a table that shows all queries even it has error and not succesfully executed..

  • Can not update the applications that are part of the Technical Communition Suite (TCS) 4.

    The updates... menu is grayed out for all applications that are part of this suit. I know that FrameMaker (FM) 11.0 has updates that should be installed. I have downloaded a patch (11_0_1) for FM and it will not install. I get this message:
    I have Admin rights on the computer and have selected Run As Admin.. when I attemp to install the patch.
    I have TCS 3.5 also loaded and do not have any issues with loading updates.
    OS: Windows 7
    Any ideas as to why I can not install updates for the applications that are part of TCS 4?

    Hi,
    Greetings from Adobe.
    Please go to C:\Program Files (x86)\Common Files\Adobe\AAMUpdaterInventory\1.0
    There will be a .dat file by the  name - AdobeUpdaterAdminPrefs.dat
    Capy this file and paste it on your desktop.
    Open that file in Notepad from desktop.
    Change the value in <Suppressed> tag to ”0”  from "1"
    <Preferences>
                    <Suppressed>0</Suppressed>
    </Preferences>
    After saving the bat file replace it back with the original file at location: C:\Program Files (x86)\Common Files\Adobe\AAMUpdaterInventory\1.0
    close the window and then try to install the patch again.
    Regards,
    Mayank

  • I have an old (first generation) iMac that I still use sometimes for the applications that are on it. I was using it yesterday and unfortunately had a power cut. I went to turn it on today, and nothing at all happens. It's as though no power is getting to

    I have an old (first generation) iMac that I still use sometimes for the applications that are on it. I was using it yesterday and unfortunately had a power cut. I went to turn it on today, and nothing at all happens. It's as though no power is getting to it. I've checked the obvious things, changed the fuse, tried different cables, poked paperclips in reset holes, but nothing doing. I wonder if there is anyone who knows what might be wrong. I was hoping to get some of its content transferred soon, but I'm guessing that can't be done if it can't be started up. Many thanks, if you can help

    Hello,
    >It's as though no power is getting to it.
    Would it be correct to assume that no sounds at all can be heard? Also, no lights, not even green or amber at the power button?
    >unfortunately had a power cut.
    Was it possibly a power cut in connection with a thunderstorm? Any other evidence of higher than normal voltages (light bulbs, et cetera)? Has the line voltage been checked (measured with an appropriate voltmeter/multimeter)?
    If necessary, it would be possible to remove the hard drive, and then connect it to an external IDE/ATA to USB adapter (example below). That way you could gain access to files on the hard disk from another computer.
    http://www.newertech.com/products/usb3_universaldriveadap.php
    Jan

  • After clearing cash on mac applications won't lunch any more..I tried to delete apps like VLC player with app cleaner and again download and instal new but it's the same..goes for all apps that are not originally part of Yosemite. Please advise me?!

    After clearing cash on my mac ( Go to folder: ~/Library/Caches and clear all, than to Library/Cashes and clear all again) applications won't lunch any more..I tried to delete apps like VLC player, firefox.. with app cleaner and again download and install the new one but it's the same..goes for all apps that are not originally part of Yosemite. I have done this cash clean up very often on Maverick without any problems. This time I done it again because I could not open my web site, the server has blocked me and I was trying everything including deleting cash from mac. Please advise me what to do..?!? Thanks in advance.

    It sounds like you may have multiple problems, but none of them are likely to be caused by malware.
    First, the internet-related issues may be related to adware or a network compromise. I tend to lean more towards the latter, based on your description of the problem. See:
    http://www.adwaremedic.com/kb/baddns.php
    http://www.adwaremedic.com/kb/hackedrouter.php
    If investigation shows that this is not a network-specific issue, then it's probably adware. See my Adware Removal Guide for help finding and removing it. Note that you mention AdBlock as if it should have prevented this, but it's important to understand that ad blockers do not protect you against adware in any way. Neither would any kind of anti-virus software, which often doesn't detect adware.
    As for the other issues, it sounds like you've got some serious corruption. I would be inclined to say it sounds like a failing drive, except it sounds like you just got it replaced. How did you get all your files back after the new drive was installed?
    (Fair disclosure: I may receive compensation from links to my sites, TheSafeMac.com and AdwareMedic.com, in the form of buttons allowing for donations. Donations are not required to use my site or software.)

  • HT4623 I recently upgraded my i-phone 4s phone with the new iOS7. Since that all the applications that I have opened will not close. How do I close applications that are running in the background?

    I recently upgraded my i-phone 4s phone with the new iOS7. Since that all the applications that I have opened will not close. How do I close applications that are running in the background?

    Double click your Menu button and swipe up the open Apps to close them.......

  • To find the user processes that are connected to a database currently ??

    Hi,
    I wish to find the user processes that are connected to a database currently.
    How to find this ?
    any specific table/view for this ??
    Thanks.

    Hi..
    You can use
    SELECT NVL(s.username, '(oracle)') AS username,
    s.osuser,
    s.sid,
    s.serial#,
    p.spid,
    s.status,
    s.module,
    s.machine,
    s.program,
    TO_CHAR(s.logon_Time,'DD-MON-YYYY HH24:MI:SS') AS logon_time
    FROM v$session s,
    v$process p
    WHERE s.paddr = p.addr
    ORDER BY s.username, s.osuser;
    HTH
    Anand

  • HT4623 In my iphone currently there is ios 6.1.2 .. if i update it into 6.1.3 can i have to do repurchase or reinstall all the applications that are currently working on ios..?

    In my iphone currently there is ios 6.1.2 .. if i update it into 6.1.3 can i have to do repurchase or reinstall all the applications that are currently working on ios..?

    Perform the Update using iTunes on the computer you usually Sync and Backup to...
    See the Using iTunes Section Here...
    How to update your iPhone, iPad, or iPod touch

Maybe you are looking for

  • FATAL ERROR document format: structure 'STATEMENT'

    Hi experts, I've a scenario IDOC to JDBC, give me the error: FATAL ERROR document format: structure 'STATEMENT' I don't understand becausse payload is OK: <?xml version="1.0" encoding="UTF-8" ?> - <ns0:MT_MATERIALES xmlns:ns0="http://idom.com/arteche

  • Manage bean Request Scope Best Practice

    Hi, I am wondering the following practice which one is better. I have a listing page and a edit properties page. From the listing page i will click on the record from the data table and click on Edit button to submit the action and navigate to the ed

  • Report Designer - Error when Loading Report

    Hi, We have created a report in Report Designer (7.0) and saved it. When we execute it runs fine. After closing the report and trying to reopen it, the report does not open. It gives an error "Error when Loading Report". Our BI frontend patch is 14.

  • Can't explain where my credit has gone

    In May I got a skype landline and the account was credited with £10. Since then the auto recharged has credited the account twice with another two orders of £10 each. So a total of £30. My balance currently reads as £12.77 so Skype claims I have used

  • Broadband unusable between 6pm and 12 pm since las...

    From last week, every evening without fail the broadband speed plummets to as low as 0.15. During the day its usually around 14/15 mbps then around 6pm it becomes unusable until around midnight. It seems to be at peak times the speed is crippled and