How to get the IP address of the Client machine???

Hi All,
I am trying to get the IP address of the Client machine and using the code
SELECT SYS_CONTEXT('USERENV','IP_ADDRESS') FROM DUAL;
but this query only return server ip address but i want Client machine IP .
How can I get that. Please help.

SowmyRaj wrote:
Hi All,
I am trying to get the IP address of the Client machine and using the code
SELECT SYS_CONTEXT('USERENV','IP_ADDRESS') FROM DUAL;
but this query only return server ip address but i want Client machine IP .
How can I get that. Please help.Which client's IP addess?
SYS_CONTEXT('USERENV','IP_ADDRESS') should give you the IP address of the machine from which the client is connected. So you are running sqlplus from Server?
To check other session's information, you can check V$SESSION view.

Similar Messages

  • How to get the MAC address of the additional 10G NIC with ILO command line

    how to get the MAC address of the additional 10G NIC with ILO command line?
    thanks.
    This question was solved.
    View Solution.

    Hi Bruce,
    Out from what I can find on this network card is it not possible to get the mac address without a OS. I would recommend you to get/burn a Linux/Ubuntu live CD/DVD and run a Ifconfig in there.
    Hope it helps you.
    Best regards
    Zincas
    I work on behalf of HP

  • I cant get a photo project to email the moblile me address to someone else.  I know how, but it has stopped working for some reason.  Instead of pulling up the web address on the email form, it puts an error message?  Any ideas?

    I cant get a photo project to email the moblile me address to someone else.  I know how, but it has stopped working for some reason.  Instead of pulling up the web address on the email form, it puts an error message?  Any ideas?

    Michael,
    The link for the word 'HERE' directs to a Evergreen School District page, which outside of Mobile Me and/or Aperture. Your school district network might be intercepting the request from Aperture and displaying the 'network authentication page' that you see, instead of the email. I would get with the IT department to see if they can help you get around this.
    Have you also tried using the 'Tell a Friend' feature from another network location, like starbucks or your home?
    Cheers,
    Owen.

  • Hi! How can I change the shipping address for the program of replacement of the 1 generation ipod nano? I've already received the empty box and now I should send back the old ipod but I'd like to receive the new one to another address. Thank you.

    Hi! How can I change the shipping address for the program of replacement of the 1 generation ipod nano? I've already received the empty box and now I should send back the old ipod but I'd like to receive the new one to another address. Thank you.

    I would contact Apple directly and have them work with to get the iPod shipped to a new/different address.
    http://www.apple.com/contact/
    B-rock

  • How to get a server name through the load balancer

    Hi.
    I'd like to get the server name where is my application installed. There are some servers and clients access there throuth the load balancer. When I try to get it with request.getServerName(), I get the virtual address of the load balancer.
    Any suggestions?
    Thanks.

    Dear Sikindar;
    THanks for your cooperation, but I believe that these Tcodes will eb helpful if I know the table name, actually we don't know its name and that's what I'm asking about, how can I get the table name for the ABAPer?
    Appreciating your cooperation.
    Best Regards;
    Lobna

  • How to assign static ip address to the server having solaris 10. i.e. nge0

    hi,
    how to assign static ip address to the server having solaris 10. i.e. nge0 i.e. 192.168.3.125 ipshold be persistantt across reboots. what steps do i need to follow to put all information including gateway,netmask etc..Also i want to integrate one init script ..can i integrate it using /etc/init.d/<service name> like linux. and do chkconfig on it?i am not getting complex procedure of SPF and FMRI etc..can u help me?

    Create a file in your /etc directory called hostname.nge0. Add the hostname of your system to this file. In your /etc/hosts file, assign the static IP address you want to the same hostname. You can then disable and enable the network-physical service to configure the network interface:
    svcadm disable network-physical
    svcadm enable network-physical

  • Is it possible to get the ip address of the person who logged in a site

    I need to get the IP address of the person who is browsing, i have tried request.getRemoteAddr() which is giving a firewall ip address but not his local system ip. what is the way to find out the ipaddress? should i use any applets or javascript?

    Any way I got it
    How to get the user ip address of client machine who is behind firewall
    use this code
    request.getHeader("x-forwarded-for");to get the local ip address
    InetAddress localadd = InetAddress.getLocalHost();
    localadd.getHostAddress();to get the external ip
    request.getRemoteAddr()and here are few links which ip address discussions are made
    [link1|http://forum.java.sun.com/thread.jspa?threadID=5155243&messageID=9586796]
    [link2|http://forum.java.sun.com/thread.jspa?threadID=5309344&tstart=0]
    thanks to BalusC and RahulSharna

  • How can I delete the home address of the contact person

    Hi Experts,
    I want delete the home address of the contact persons in the ERP.
    Which data and where can you found it:
    In Tx xd02 in the general data of customer - register "contact person" and then button "home address".
    There I want delete all fields. When I looked in F1 - technical information I don't get the information in which table the data are included. I know only the structure.
    I think the general data of the contact person I have to look in the table knvk.
    The private and the business email address I can find in the table ADR6.
    In the table knvk there is a field "address number". I  know when there is a number then the contact person has a home address and when this field is empty then for this contact person isn't maintain a home address.
    Could I delete this field "address number" in the table knvk? Is then the home address automatically deleted?
    I don't know how can I delete this field. Can anybody tell me how can I do this? I looked in the Tx xd99 this field isn't available there.
    Or does anybody know how can I delete the home address of the contact persons on another way?
    Thank you in advance.
    Best regards, Jasmin

    Hi,
    I am sorry, I forgot to say I don't want delete only one home address. Yes, you are right, then I could delete it manually.
    But I want to delete all private addresses, so I should have a tool for mass deletion.
    Does anybody know how can I do this?
    Best regards, Jasmin

  • How to Export full street address of the contacts from AD OU

    How to Export full street address of the contacts from AD OU

    Break down the one liner suggested by Chen . What do you see when you run the below :
    Get-ADUser -Searchbase 'OU=XYZ,DC=XYZ,DC=XYZ' -Filter * -Properties *
    You will have to replace the OU path in the above.
    Once you see the Users are an output of the above, try below :
    Get-ADUser -Searchbase 'OU=XYZ,DC=XYZ,DC=XYZ' -Filter * -Properties * |
    Select SamaccountName, @{n="Full Address";E={[String]::Join(';',$_.StreetAddress , $_.l, $_.PostalCode, $_.Country)}}
    If you are able to see the objects till this point then only you will get those in your CSV. These are nothing but basic steps to follow when someone gives you a solution.
    Hope this helps.
    Knowledge is Power{Shell}
    DexterPOSH
    My Blog

  • How do I find the MAC address for the time capsule?

    I am trying to install 2T time capsule as my main router. Telus my internet supplier allows me to in install the MAC address for the static ip that I am going to use. But where is the MAC address on the cube or how do I get it?

    On the bottom label it should list the MAC address.
    If you happen to still run the original.. ie decent airport utility it has all that info right in front of you.
    But you see that was before Apple reduced the airport utility to the status of a toy..
    Pretty pictures no info.. think kid's book.
    See very very pretty.. as a UTILITY though.. useless.

  • My e-mail has quit updating.  Anybody know why or how to get it started back?  The result is that I dont get my e-mails on the phone.

    My e-mail has quit updating. Anybody know why or how to get it started back?  The result is that I can not get e-mails on my phone.

    Thank you for the info re. the main menu. Your answer I used worked; however, the menu bar all the way across is solid black. The only way I can find out the names on the menu is to point the cursor from left to right over the black bar to find "file" "edit" tools", etc. What do I need to do to get these menu titles to be seen?
    As regarding the GMail --the menu bar used to have an envelope symbol which was white and outlined in red. That disappeared. I googled "mail.google.com" to try to get back my email. This didn't work. I then tried to get a different email address and password--after 8-19 attempts, this never worked. My other email (sbcglobal.net) has never returned. So I don't know where that went or how to get it back

  • Getting the IP address of the client

    How do I get the IP address of the client that makes a request in the Internet?
    getRemoteAddr() cannot be used since the client may be from a proxyserver or an ISP provider ...
    Can I get some help on this?
    Thanks in advance
    Jai

    I think you cannot get the IP address of the client if he uses a proxy server.
    Hope to hear good news from others.
    Regards.
    Jeffrey

  • Although my ipod shows the number of steps, calories, and time, it no longer is saving it to the history. also when I open the history it takes me to May 2010 instead of the current date. Any ideas on how to get it to start recording the history again?

    Although my ipod shows the number of steps, calories, and time, it no longer is saving it to the history. Also when I open the history it takes me to May 2010 instead of the current date. Any ideas on how to get it to start recording the history again?

    Try:                                               
    - iOS: Not responding or does not turn on           
    - Also try DFU mode after try recovery mode
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings
    - 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 another cable                     
    - 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
    The missing apps could have been done by setting the Restrictions that can hid those apps. If the backup was made with those retrictions set the the Restrictions are also restored.
    Thus, if you get it to work restore to factory settings/new iPod, not from backup                               
    You can redownload most iTunes purchases by:        
      Downloading past purchases from the App Store, iBookstore, and iTunes Store

  • I just need to know how you get an iTunes library off the original hard drive of a mac and onto an external hard drive and still have it work normally?

    I just need to know how you get an iTunes library off the original hard drive of an imac and onto an external hard drive and still have it work as it normally would?

    http://support.apple.com/kb/HT1449

  • My dad has itunes on his PC. I don't have my own but I recently have an iPad mini and an iPod. I don't know how to get songs onto itunes on the PC, using a different account or at least private/ separate..

    My dad has itunes on his PC. I don't have my own but I recently have an iPad mini and an iPod. I don't know how to get songs onto itunes on the PC, using a different account or at least private/ separate..
    So how do I create a separate I tunes on a PC which already has itunes... Or if not can I plug my iPad to the PC and use itunes on my iPad, and drag mp3s from a computer.
    I'm not sure what the equivalent of a desktop is on the iPad.. And I don't actually know how to use the icloud either...
    Can anyone start me off, given it have a iPad and use of a PC - not mine with existing iplayer
    I do have spotify soundcloud so I could potentially use these.. If there is a route of getting either mp3's etc to end up on my iPad or iPod.
    Kind Regards

    iTunes 11
    If you  have iTunes 11 turn on the Sidebar.  Go to iTunes>View and click on Show Sidebar. You can also do a Crtl+S to show the sidebar. The sidebar is where Devices appears. and Control+B to show the Menu bar
    To import music into your iTunes library on the computer go to iTunes>Help>iTunes Help>Add items to iTunes and follow the instructions
    To sync to your iPod go to iTunes>Help>iTunes Help>Sync your iPod....>Sync You Device and follow the instructions.

Maybe you are looking for

  • Can't add CIFS Share from iManager on OES

    I recently install OES and have not been able to add a CIFS share from iManager . The error is: Error: The given volume name could not be found on the specified server. I've tried entering the path is various ways: \vol1\share\ \vol1\share vol1\share

  • No PO Creation without PR release strategy

    Hi all, Is there any way of preventing a user from creating a PR on which no release strategy is applied (i.e. no release strategy exists for that user) and then creating a PO from it?

  • Link from Office Document to specific point in a PDF?

    I am having difficulty creating a link from an MS Office document (ie Word) to a specific paragraph or page within a PDF. I am using Adobe Acrobat 9.0 Pro. Can anybody help me?

  • LaserJet Printer error "21 Print Overrun" when printing bitmap reports

    I have some bitmap based Oracle Reports developed in Reports 2.5 and upgraded to 3.0. They were displayed correctly on screen. However, when they were printed to a HP LaserJet 4 SiMX (10Mb RAM) printer, the lower part of some pages or the last column

  • How to select an item from dropdownbox

    Hi all I have two dropdownlistbox. When I select an item in the first box,according to the selection, I have to add items in the second dropdownlistbox. I want the implementation of the onClientSelect="javascript:Sample();" of the first dropdownbox "