How to check client machine IP address or Machine name

I'm trying to check the client machine's IP address to restrict the unauthorised login in unassigned workstation. Any body know how to get the IP address of client machine? Is there any built in function to get it. I'll appreciate if you could send me email. Thanks.

Hi,
with the following statement you can get your pc's machine name:
SELECT UPPER(USERENV('TERMINAL'))
FROM DUAL;
Be careful that, if you are dealing with a web envinronment, the outcome will be the Forms Server machine name.
Regards,
Marco

Similar Messages

  • How to get client machine name and IP address

    Hi,
    In my office I have one SERVER which has FORMS & Report Server installed and all the clients are accessing that application thru the following URL :
    http://OraServer:8889/forms/frmservlet
    to get the machine name I have read into a global variable like this
    SELECT USERENV('TERMINAL' ) into :global.clientname FROM DUAL;
    but obviously all the time its returning the SERVER machine name...not the name where client is accessing the program....so how can I get the client machine name..
    thanks

    Hi Frank,
    Well I am using Developer Suite 10g Release (10.1.2.0.2) ..I've gone thru the link what you have sent me and noticed that whatever updations of conf file or classpath its already there so i guess needn't to modify cause I think my release 10.1.2.0.2 has did already as webutils been bundled with it.
    Well What i did is to double click on ATTACH LIBRARY and browse the location to find webutil.pll and finally attached it...even though its showing me all the procedures like clientinfo and others...
    on my block's canvas I've put a button and used this trigger to get client info function like this.
    when-button-pressed trigger of INFOBUTTON
    DECLARE
    o_clientinfo varchar2(50) := Webutil_clientinfo.GET_HOST_NAME ;
    begin
    message(o_clientinfo);
    end;
    but when I am trying to open this form its simply not showing up..strange thing is that there is no error as well...so plz kindly guide me how to get clientinfo hostname or ipaddress using that library function.
    thanks

  • How to check client size in SAP

    Hi All,
    I would like to check the size of production client so i can do system refresh to QA. I need to know how to check client size only not database size.
    Regards
    Atul-

    Hi
    Yes, there is a report called YSTABSIZ which can calculate the size of the client.
    1. Login to the target client ( for which the client size to be calculated)
    2. Run SE38 , execute YSTABSIZ by selecting the table *
    3. Execute the report in background
    Once the client is deleted, the space which is free can be used to fill in with newly added data
    but if you want to see the actual space reduction in DB02,it can be acheived only with DB reorganization
    OSS notes 118823 and  for this purpose
    Hope ths helps
    Please reward points
    Sunil

  • How to find the machine name

    How to find the machine name from which the table is created ?
    Yogesh

    Turn on DDL auditing.
    http://www.oracle-base.com/articles/10g/Auditing_10gR2.php outlines some uses ... i'm sure you can find more with a google search.

  • Want to get the Client Machine name from Oracle Forms

    Hi,
    I want to get the Client machine name from the Oracle Forms.
    I have attached web_util.pll.
    I use user_name := webutil_clientinfo.get_host_name;
    but i am getting following error - WebUtil Error:WUC-015: Your form must contain the following Bean for this function to be available: oracle.forms.webutil.clientinfo.GetClientInfo.
    Can any one help me in this!
    Thanks & Regards,
    Avinash Bhamare.
    Pune.

    Hi,
    I have written the code on when-button-pressed trigger of a push button -
    DECLARE
         user_name VARCHAR2(50);
    BEGIN
    user_name := client_win_api_environment.get_computer_name;
    message('user_name is :'||user_name);
    message('user_name is :'||user_name);
    END;
    And on clicking on this button i am getting error -
    frm-40734:Internal Error:PL/SQL error occurred
    Can any one help in this asap please!
    Thanks & Regards,
    Avinash.

  • Can u tell me how to check my computer ip address in java (please help me)

    hi to all, can u tell me how to check my computer ip adress in java, what is the command for that

    import java.net package in your code.
    Then where you need to find the IP, please insert the following code.
    InetAddress inAddr = InetAddress.getLocalHost();
    String ipAddr = inAddr.getHostAddress();
    That should do it.
    Best Wishes,
    Ramanujam

  • HT201493 How do I change an email address to a name for friends I am following?

    Does anyone know how I can update email addresses to actual names? I have deleted and reinstalled the app with no luck.

    If you remeber the password to that Apple ID then follow these steps
    1 - Make sure you have an email address that is NOT an Apple ID
    2 - Go to AppleID.Apple.com
    3 - Where it reads Manage Apple ID - Sign in
    Once you are signed in want to make sure the email address you are wanting to use is NOT set up as a "Recovery/Rescue" email for this account.
    [To check this - Main page where you see Primary ID - below do you see the email address you want to use listed towards the bottom? Yes - Delete / No - Good ./. If made any adjustments "Save" Next on the left select "Password & Security" - Answer your security questions you set up "if you have any" then scroll towards the bottom and check to see if you see the email address you want to use. Yes - Delete / No - Good] <-> Also you can change your password on this page as well. Any adjustments made "Save"
    Once this is done go back to the main page where you should read "Primary ID" and change the email address that is showing to the new email address youo want. "Save" Done
    I learned this not to long ago and worked for me. Hope this helps you!

  • How to change the machine name for the admin server?

    Hi, I've incorrectly set the machine name for my admin server. I now need to change this, but it's not editable (WLS 10.3.3).
    Is there a way to edit configuration files to get it changed?
    Thanks
    Jason

    Seems all I needed to do was edit config/config.xml (under my domain's path) and change the machine name manually (before shutting the admin server down).
    Regards
    Jason

  • How Get the users machine name

    I need to develop the intranet ticketing system on SharePoint. When user create the ticket I need to fetch their machine name as well. I have search that lot of solution given for ASP. Net with c#. But I have use JavaScript for the application. if any
    possibility to achieve this on JavaScript if it's not possible means what is the possible way to fetch user machine name in sharepoint
    Ravin Singh D

    Hi,
    the below link I got answer. Thanks sagar
    http://forums.codeguru.com/showthread.php?495819-Getting-windows-machine-name-via-the-browser
    <BODY>
    <Script Type = "text/JavaScript">
    try
    var ax = new ActiveXObject("WScript.Network");
    document.write('User: ' + ax.UserName + '<br />');
    document.write('Computer: ' + ax.ComputerName + '<br />');
    catch (e)
    document.write('Permission to access computer name is denied' + '<br />');
    </Script>
    </Body>
    Above code do that. But we need change browser security level to low. And it showing one warning also. I have tested with IE. other browser I need to test.
    Ravin Singh D

  • How to retrieve client's IP address in servlet

    thanks

    According to the API documentation for ServletRequest, it has this method:
    getRemoteAddr()
    Returns the Internet Protocol (IP) address of the client that sent the request.
    Was that what you wanted?

  • How to Test if an Email Address Exists?

    So we have all been doing email address validation for awhile which I know how to do, but validation only tests if an email address is entered in the right format.  It doesn't verify if an email address actually exists.  I am creating an application  where there will be membership fees, and so an email has to be in more than the right format, I must be positive that it actually exists when the account is created before any money changes hands.  This is critical.  Unfortunately, all of my searching for this relating to Flex or Flash Builder has yielded no results.  Does anyone know of any tutorials or blogs or articles that discuss how to test if an email address entered by a user actually exists using Flex?  or does anyone here have any suggestions on how to approach this problem?
    Thanks!

    The only definitive way is to send the user an e-mail, and have them verify the email address.
    In the past I remember researching options.  Depending on how mail servers were set up; I thought there was some way to ping a mail server and ask if the e-mail address was valid.  This functionality was turned off on most mail servers to prevent spammers from harvesting email addresses.
    Here are some good info on the general approach:
    http://stackoverflow.com/questions/565504/how-to-check-if-an-email-address-exists-without- sending-an-email

  • How to check-in multiple files with same name having different revision num

    Hi
    Can anyone please tell me, how to check-in multiple files with the same name with different revision number using RIDC API.
    For eg:
    First I will check-in a file(TestFile.txt) into a content server with revision number 1 using RIDC API in ADF application. Then after some time, will modify the same file(TestFile.txt) and check-in again. I tried to check-in same file multiple times, however first time its checking-in correctly into server showing revision as 1, while checking-in same file again, its not giving any errror message, and also its not reflecting in server. Only one file(TestFile.txt) is reflecting in server.
    How to implement this functinality using RIDC API? Any suggestions would be helpful.
    Regards
    Raj
    Edited by: 887680 on Mar 6, 2013 10:48 AM

    Hi Srinath
    Thanks for your response. Its not cloning, its like check-in file first, then check-out the file and do some editing and then again upload the same file with different revision number using RIDC. I got the solution now.
    Regards
    Raj

  • Get ip address or computer name

    hi all,
    please tell me how i can get the ip address or computer name of a machine running a form.
    Besr Regards,
    hany

    A simple way to get the computer name on the Windows platform in client/server mode is
    tool_env.getvar('COMPUTERNAME', l_str);
    The similar technic should be possible on other platforms.
    Another possibility is to use the database session information:
    select sys_context('userenv', 'host'), sys_context('userenv', 'ip_address') from dual;
    I suppose this will give the name and address of the application server in web-mode.

  • 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.

  • How to get MAC address from client machine ?

    Hi dear,
    We are implementing security measures for a banking system, so it is required that we track the MAC address of the registered clients along with other parameters. How do we get the MAC address from client machine using ADF or running scripts in client side?
    thanks all

    Hi,
    Welcome to OTN.
    Your question has nothing to do with ADF as such. Googling would give you plenty of such topics.
    -Arun

Maybe you are looking for

  • Retrieving deleted mail from trash folder

    Hi, Can anyone please tell me how to retrieve emails from last year, that I deleted from 'trash' in my mail folder? Thanks

  • SAP HR- Project Preparation- ECC6

    Hi Gurus, Please can you help. My company already have ecc5, and now want to upgrade to Ecc6. What issues do I have to look into for this? technical and business minded. Will the be anything to consider, discuss, change? I am a junior, and have been

  • Preview won't open.  It will open when in test mode but not in my user mode.\

    I'm running Yosemite 10.10.2.  My Preview won't open.  I followed Linc's advice and removed many files but Preview still won't open.  I have tried cold booting to no avail. 

  • Caller id function

    Hi, I have a problem with the caller id function for my iphone 6, its not functioning. The software has been updated but still not functioning. It's light green not pure green as normal. can someone assist with this problem or I should sent it for a

  • Ip ospf cost

    I will implement using OSPF cost higher for the best path, How does impact the OSPF network if increased value ip ospf cost, effect on latency & bandwidth?? below existing configuration. All interface Gigabits default cost "1", what is recommended co