IP Address/ Machine Name

Is the IP Address / Machine Name of the machine on which Oracle is installed is stored somewhere in the database also so that we can query it get it.
If yes where.
Thanks in Advance

short answer is no.
But you can query it from the OS. I answered a similar question about querying the OS variable on
thread. Just replace "env" by "hostname" in
Re: Using Operating System Environment Variables in SQLPLUS
To get the IP, you can then do something like "host <hostname>".
If you run the sqlplus script on the server, you can use my second method on the same thread, that is :
SQL> host echo def ip=`sed -n "s/^\([0-9.]*\)[^0-9.].*\`hostname\`.*/\1/p" /etc/hosts` > /tmp/320367.sql
SQL> host echo def hostname=`hostname` >> /tmp/320367.sql
SQL> @/tmp/320367
SQL> prompt hostname=&hostname ip=&ip
hostname=dbsrv85a.ex.zkb.ch ip=147.50.59.167
Regards
Laurent

Similar Messages

  • Ping machine name returns machine.Home and incorrect IP address

    I have a small home network (5 machines) with the E8350 (AC2400) and an ActionTec modem PK5001A from Centurylink.  I put the router in Automatic Configuration - DHCP mode.  The modem WiFi is disabled.  The network appears to function properly except for the fact that when I ping some machines on my network they return an incorrect IP address like below.  All machines are running Windows 8.1 Pro and have all the latest updates. As you can see the machine name is suffixed with .Home and the IP address is to somewhere in Colorado; I'm in Washington state.
    C:\>ping machinename
    Pinging machinename.Home [198.105.244.23] with 32 bytes of data&colon;
    Request timed out.
    Request timed out.
    Request timed out.
    Request timed out.
    Ping statistics for 198.105.244.23:
    Packets: Sent = 4, Received = 0, Lost = 4 (100% loss),
    C:\>
    IP address is actually 192.168.1.100
    What can cause this problem and how do I correct it?

    Below is a list of some things that stick out after analyzing you ipconfig post:
    Your adapter is set to bridging "Ethernet adapter Network Bridge"; why?
    The adapter has a DNS server "205.171.3.25"
    The DNS Suffix Search List is set to: Home; which in itself isn't an issue useless a DNS server has that domain in it's records
    The DNS server "205.171.3.25" actual responds for the domain "home":
    The nslookup command below:
    C:\Users\chad>nslookup
    Default Server:  OpenWrt.lan
    Address:  192.168.200.1
    > server 205.171.3.25
    Default Server:  redirect1.qwest.net
    Address:  205.171.3.25
    > home
    Server:  redirect1.qwest.net
    Address:  205.171.3.25
    Non-authoritative answer:
    Name:    home
    Addresses:  198.105.254.23
              198.105.244.23
    >
    Solutions:
    Remove DNS entry for 205.171.3.25
    Disable bridging on the adapter (AFAIK it's not required or recommended)
    Please remember to Kudo those that help you.
    Linksys
    Communities Technical Support

  • Finding Session Info (Machine name and IP address)

    All,
    I have a procedure that was called by an applition about three days ago. The issue is I want to determine the IP address of the application server that called the procedure.
    We did not turn on auditing but the issue looks more like an unautorised call to the procedure and thats why we are more interested in th IP / machine name.

    Perhaps you are looking something like this ->
    satyaki>
    satyaki>select * from v$version;
    BANNER
    Oracle Database 10g Enterprise Edition Release 10.2.0.3.0 - Prod
    PL/SQL Release 10.2.0.3.0 - Production
    CORE    10.2.0.3.0      Production
    TNS for 32-bit Windows: Version 10.2.0.3.0 - Production
    NLSRTL Version 10.2.0.3.0 - Production
    Elapsed: 00:00:00.06
    satyaki>
    satyaki>
    satyaki>select * from emp;
         EMPNO ENAME      JOB              MGR HIREDATE         SAL       COMM     DEPTNO
          7777 SOURAV     SLS                  14-SEP-08      45000       3400         10
          7499 ALLEN      SALESMAN        7698 20-FEB-81       1600        300         30
          7521 WARD       SALESMAN        7698 22-FEB-81       1250        500         30
          7566 JONES      MANAGER         7839 02-APR-81       2975                    20
          7654 MARTIN     SALESMAN        7698 28-SEP-81       1250       1400         30
          7698 BLAKE      MANAGER         7839 01-MAY-81       2850                    30
          7782 CLARK      MANAGER         7839 09-JUN-81       4450                    10
          7788 SCOTT      ANALYST         7566 19-APR-87       3000                    20
          7839 KING       PRESIDENT            17-NOV-81       7000                    10
          7844 TURNER     SALESMAN        7698 08-SEP-81       1500          0         30
          7876 ADAMS      CLERK           7788 23-MAY-87       1100                    20
         EMPNO ENAME      JOB              MGR HIREDATE         SAL       COMM     DEPTNO
          7900 JAMES      CLERK           7698 03-DEC-81        950                    30
          7902 FORD       ANALYST         7566 03-DEC-81       3000                    20
    13 rows selected.
    Elapsed: 00:00:00.03
    satyaki>
    satyaki>set autotrace on
    satyaki>
    satyaki>
    satyaki>update /*+ Satyaki_De_On_22_Sep_2008_8_25_PM*/emp
      2  set ename = 'Travor'
      3  where empno = 7499;
    1 row updated.
    Elapsed: 00:00:00.95
    Execution Plan
    Plan hash value: 3659136155
    | Id  | Operation          | Name   | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | UPDATE STATEMENT   |        |     1 |    10 |     1   (0)| 00:00:01 |
    |   1 |  UPDATE            | EMP    |       |       |            |          |
    |*  2 |   INDEX UNIQUE SCAN| PK_EMP |     1 |    10 |     0   (0)| 00:00:01 |
    Predicate Information (identified by operation id):
       2 - access("EMPNO"=7499)
    Statistics
            145  recursive calls
              3  db block gets
             35  consistent gets
              3  physical reads
              0  redo size
            659  bytes sent via SQL*Net to client
            618  bytes received via SQL*Net from client
              3  SQL*Net roundtrips to/from client
              4  sorts (memory)
              0  sorts (disk)
              1  rows processed
    satyaki>
    satyaki>
    satyaki>commit;
    Commit complete.
    Elapsed: 00:00:00.03
    satyaki>
    satyaki>select * from emp;
         EMPNO ENAME      JOB              MGR HIREDATE         SAL       COMM     DEPTNO
          7777 SOURAV     SLS                  14-SEP-08      45000       3400         10
          7499 Travor     SALESMAN        7698 20-FEB-81       1600        300         30
          7521 WARD       SALESMAN        7698 22-FEB-81       1250        500         30
          7566 JONES      MANAGER         7839 02-APR-81       2975                    20
          7654 MARTIN     SALESMAN        7698 28-SEP-81       1250       1400         30
          7698 BLAKE      MANAGER         7839 01-MAY-81       2850                    30
          7782 CLARK      MANAGER         7839 09-JUN-81       4450                    10
          7788 SCOTT      ANALYST         7566 19-APR-87       3000                    20
          7839 KING       PRESIDENT            17-NOV-81       7000                    10
          7844 TURNER     SALESMAN        7698 08-SEP-81       1500          0         30
          7876 ADAMS      CLERK           7788 23-MAY-87       1100                    20
         EMPNO ENAME      JOB              MGR HIREDATE         SAL       COMM     DEPTNO
          7900 JAMES      CLERK           7698 03-DEC-81        950                    30
          7902 FORD       ANALYST         7566 03-DEC-81       3000                    20
    13 rows selected.
    Elapsed: 00:00:00.21
    Execution Plan
    Plan hash value: 3956160932
    | Id  | Operation         | Name | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT  |      |    13 |   481 |     3   (0)| 00:00:01 |
    |   1 |  TABLE ACCESS FULL| EMP  |    13 |   481 |     3   (0)| 00:00:01 |
    Statistics
              0  recursive calls
              0  db block gets
              7  consistent gets
              0  physical reads
              0  redo size
           1323  bytes sent via SQL*Net to client
            396  bytes received via SQL*Net from client
              2  SQL*Net roundtrips to/from client
              0  sorts (memory)
              0  sorts (disk)
             13  rows processed
    satyaki>
    satyaki>set long 40000
    satyaki>
    satyaki>select *
      2  from v$sqltext
      3  where instr(sql_text,'Satyaki_De_On_22_Sep_2008_8_25_PM')> 0;
    ADDRESS  HASH_VALUE SQL_ID        COMMAND_TYPE      PIECE SQL_TEXT
    1D578E00 2499086422 ddfyupqaga22q            6          0 update /*+ Satyaki_De_On_22_Sep_2008_8_25_PM*/emp set en
    Elapsed: 00:00:00.18
    Execution Plan
    Plan hash value: 1787836842
    | Id  | Operation        | Name    | Rows  | Bytes | Cost (%CPU)| Time     |
    |   0 | SELECT STATEMENT |         |     1 |    98 |     0   (0)| 00:00:01 |
    |*  1 |  FIXED TABLE FULL| X$KGLNA |     1 |    98 |     0   (0)| 00:00:01 |
    Predicate Information (identified by operation id):
       1 - filter("KGLOBOCT"<>0 AND INSTR("NAME",'Satyaki_De_On_22_Sep_2008_
                  8_25_PM')>0 AND "INST_ID"=USERENV('INSTANCE'))
    Statistics
              0  recursive calls
              0  db block gets
              0  consistent gets
              0  physical reads
              0  redo size
            794  bytes sent via SQL*Net to client
            396  bytes received via SQL*Net from client
              2  SQL*Net roundtrips to/from client
              0  sorts (memory)
              0  sorts (disk)
              1  rows processed
    satyaki>You have to execute -> set autotrace on as i have shown in my example.
    Regards.
    Satyaki De.

  • Get Machine Name and IP Address from Air Flex App

    New to Air..... Is there a way to get the name of the machine
    and the ip address for the client running the Air application? Not
    that this matters, but the applcation would be a Flex 3 application
    built specifically to be deployed to the Air runtime. I need to be
    able to have the Air/Flex application know what the client's
    machine name and ip address is. Can this be done?
    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 change All Human workflows urls in from machine name to IP Address

    I've installed oracle BPM server and when I've deployed my bpm processes i've found that all human workflows URLs are maaped by machine name.
    Hostname = "Machine Name" not the ip.
    I know that i can go inside each task and replace the name with the ip but i have a lot of processes and a lot of human workflows.
    is there any way to replace all machine name in these human workflows URLs with the server ip address. and I need the new deployments to be with the ip not machine name.

    Wouldn't it be easier to add the machine name to the dns server or the servers hosts file?
    What do you do if the IP of the host changes?
    Have you looked into the deployment plan? That's the location to change such things when deploying applications.
    Timo

  • Database creation: use machine name instead of ip address.

    I am creating a new database using the Database Configuration Assistant. After the install, it tells me that the EM can be approached through http://192.168.198.128:1158/em. However, since the ip-address is dynamic, i'd prefer to refer to the machine name instead of the ip address. During the setup I could not see where to change this.
    Regards,
    Rick

    user10064100 wrote:
    Thanks for your replies, I will try that. Version info: 10.2.0, on a Windows Server 2k3. The server runs in a virtual machine, which is pretty much the root of the problem: it tends to change ip addresses when restarting it. I will now install the loopback adapter and see what happens.
    Edited by: user10064100 on 8-dec-2008 7:48Ah, a server on a virtual machine. Why didn't you say that in your initial posting? I would think that would be much different situation than the usual 'changing ip' configuration of placing a sandbox database on a DHCP desktop or laptop machine...
    I don't have any experience with VM's, so I'll leave that to those that do. At the least, I'd expect the loopback adapter to not necessarily be your solution. That's for the assumptions that I clearly stated in my first response. If those assumptions don't match your situation (and it is now clear that they don't) then you need consider that before taking any advice based on those assumptions.

  • 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

  • Resolving client IP-address or machine name

    In Tree Tier Configuration, how to resolve client IP address or machine name.
    Database and App server are on same unix box, but clients are Windows PC's.
    Configuration:
         Oracle RDBMS 8.1.7.3 on HP-UX 11.11
         Oracle Application Server Rel.1 (1.0.2.2.2) on HP-UX 11.11 (same as above)
         Oracle Application R11i

    I don't have general answer, but I create small perl script for reading Forms server log file.
    ===========START readfrmlog.pl=========================
    #!/usr/contrib/bin/perl
    # Read FORMS6i Server logfile
    # Autor: Mastakov Konstantin
    if ((@ARGV!=2) || (($ARGV[0] ne '-d')&&($ARGV[0] ne '-a')&&($ARGV[0] ne '-x'))) {
    &usage;
    exit;
    if ($ARGV[1] eq 'TEST') {
    $logfile='/oracle/test/testora/8.0.6/forms60/log/TEST/frmlsnr.log';
    $ORACLE_HOME='/oracle/test/testdb/8.1.7';
    else {
    $logfile='/oracle/prod1/prodora/8.0.6/forms60/log/PROD/frmlsnr.log';
    $ORACLE_HOME='/oracle/prod1/proddb/8.1.7';
    $ORACLE_SID=$ARGV[1];
    $startread=false;
    $vrati=-1;
    if (open(FRMLOG,$logfile)) {
    $poz=tell(FRMLOG);
    while ($linija=<FRMLOG>) {
    if (substr($linija,0,1) eq '[') {
    $startread=$linija=~/::Server Start-up Data:/;
    if ($startread) {
    $serverData=&userDT(substr($linija,1,28));
    $vrati=$poz;
    $poz=tell(FRMLOG);
    if ($poz>=0) {
    seek(FRMLOG,$vrati,0);
    while ($linija=<FRMLOG>) {
    if (substr($linija,0,1) eq '[') {
    $data=&userDT(substr($linija,1,28));
    if ($linija=~/::LISTN: Connection Request/) {
    $vtordel=$';
    $vtordel=~/ConnId=/;
    $tretdel=$';
    $tretdel=~/,/;
    $connId=$`;
    $cetdel=$';
    $cetdel=~/Addr=/;
    $petdel=$';
    $petdel=~/]/;
    $ipAddr=$`;
    $lsnr{$connId}->[0]=$data;
    $lsnr{$connId}->[1]=$ipAddr;
    if ($linija=~/::RUNFORM Client Connected/) {
    $vtordel=$';
    $vtordel=~/ConnId=/;
    $tretdel=$';
    $tretdel=~/,/;
    $connId=$`;
    $cetdel=$';
    $cetdel=~/PID=/;
    $petdel=$';
    $petdel=~/]/;
    $procId=$`;
    $lsnr{$connId}->[2]=$procId;
    if ($linija=~/::Client Status/) {
    $vtordel=$';
    $vtordel=~/ConnId=/;
    $tretdel=$';
    $tretdel=~/,/;
    $connId=$`;
    $cetdel=$';
    $cetdel=~/PID=/;
    $petdel=$';
    $petdel=~/]/;
    $procId=$`;
    $lsnr{$connId}->[3]=$data;
    if ($linija=~/::RUNFORM Client Disconnected/) {
    $vtordel=$';
    $vtordel=~/ConnId=/;
    $tretdel=$';
    $tretdel=~/,/;
    $connId=$`;
    $cetdel=$';
    $cetdel=~/PID=/;
    $petdel=$';
    $petdel=~/]/;
    $procId=$`;
    $lsnr{$connId}->[3]=$data;
    close FRMLOG;
    if ($ARGV[0] eq '-a') {
    @progList = ("ORACLE_HOME=$ORACLE_HOME; export ORACLE_HOME;".
    "ORACLE_SID=$ORACLE_SID; export ORACLE_SID;".
    "TNS_ADMIN=/oracle/etc/network; export TNS_ADMIN;".
    "$ORACLE_HOME/bin/sqlplus ".'-s apps/apps@$ORACLE_SID @spid_to_forms2.sql >frmlog.lst');
    system(@progList);
    if (open(SQLLOG,'frmlog.lst')) {
    while ($linija=<SQLLOG>) {
    chop($linija);
    @cpole=split(/\s+/,$linija);
    $userList{$cpole[1]}=$cpole[0];
    close SQLLOG;
    unlink('frmlog.lst');
    foreach $kluc (keys(%lsnr)) {
    $lsnr{$kluc}->[4]=$userList{$lsnr{$kluc}->[2]};
    $what="All" if ($ARGV[0] eq '-x');
    $what="Disconnected" if ($ARGV[0] eq '-d');
    $what="Active" if ($ARGV[0] eq '-a');
    print("Print $what Connections\n");
    print("Forms Server Up from: $serverData\n\n");
    print("Connection Start Who ProcID Connection Ended User\n");
    print("------------------- --------------------- ------- ------------------- ----------\n");
    foreach $kluc (sort {$lsnr{$a}->[0] cmp $lsnr{$b}->[0]} keys(%lsnr)) {
    $iP=substr($lsnr{$kluc}->[1]." ",0,21);
    $pRoc=substr($lsnr{$kluc}->[2]." ",0,7);
    $endTime=substr($lsnr{$kluc}->[3]." ",0,19);
    if (($ARGV[0] eq '-x') || (($ARGV[0] eq '-a') && (length($lsnr{$kluc}->[3])<5)) ||
    (($ARGV[0] eq '-d') && (length($lsnr{$kluc}->[3])>5))) {
    print($lsnr{$kluc}->[0].' '.$iP.' '.$pRoc.' '.$endTime.' '.$lsnr{$kluc}->[4]."\n");
    else {
    print("Error reading Forms-log file: $logfile\n");
    sub userDT {
    my ($sto) = @_;
    $mesec{'Jan'}='01';
    $mesec{'Feb'}='02';
    $mesec{'Mar'}='03';
    $mesec{'Apr'}='04';
    $mesec{'May'}='05';
    $mesec{'Jun'}='06';
    $mesec{'Jul'}='07';
    $mesec{'Aug'}='08';
    $mesec{'Sep'}='09';
    $mesec{'Oct'}='10';
    $mesec{'Nov'}='11';
    $mesec{'Dec'}='12';
    return substr($sto,20,4).".".$mesec{substr($sto,4,3)}.".".substr($sto,8,2)." ".substr($sto,11,8);
    sub usage {
    print("Usage: readfrmlog -x|-a|-d ORACLE_SID\n");
    print(" -x all (Active and Disconnected) connection\n");
    print(" -a only Active connection\n");
    print(" -d only Disconnected connection\n");
    ===========END readfrmlog.pl=========================
    ===========START spid_to_forms2.sql==================
    set lines 120
    column user_name format a20
    column user_form_name format a25
    column time format a8
    column pid format 99999
    column spid format 99999
    set pages 0
    set feedb off
    select distinct user_name,process
    from fnd_signon_audit_view, v$process, v$session
    where fnd_signon_audit_view.pid = v$process.pid and
    v$session.paddr = v$process.addr
    and user_form_name is not null
    exit;
    ===========END spid_to_forms2.sql==================
    Modify all hardcoded variables: ORACLE_SID, ORACLE_HOME, TNS_ADMIN, logfile, password of App R11, location of perl exe, ...
    Regards,

  • 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 use "machine name" in new report vi?

    I have a computer on a network that has Microsoft excel installed. On another computer I have an application that will take an excel file and stuff a bunch of data from a database into specific cells to generate a report. The vi works fine on my computer (where excel is loaded locally) but when I try and run the VI and access excel remotely I get an error message as follows:
    Error -41106 occurred at NI_Excel.lvclass:new report subVI.vi -> NI_report.lvclass:New Report.vi -> printTestSheet.vi
    Possible reason(s):
    Report Generation Toolkit: Microsoft Word or Excel did not open. Make sure Microsoft Word or Excel is installed.
    Error -41106 occurred at NI_Excel.lvclass:new report subVI.vi -> NI_report.lvclass:New Report.vi -> printTestSheet.vi
    Possible reason(s):
    Report Generation Toolkit: Microsoft Word or Excel did not open. Make sure Microsoft Word or Excel is installed.
    I have included the ip address of the remote machine to the "machine name" input of the "New Report" vi.
    Any suggestions/solutions?
    Gerry Thompson

    Hi Gerry,
    One reason that you may get this error is if Distributed COM wasn't enabled on the remote machine. See this Microsoft KB for how to check or enable that functionality.
    If that doesn't help; let me know, and I'll try to setup a similar test case on my end. The process isn't well documented, and I haven't seen any existing examples, so I'd like to see what it takes to get it running.
    All the best,
    Fred V -- Product Support Engineer -- LabVIEW R&D -- National Instruments

  • Help me in creating a Device Collection - i have a list of machine name (in a excel or CSV file)

    Hello Guys,
    I have created a Device collection for UK region (2000+ machines)
    Now i have been given a list of 1000 machines to which i need to deploy an application.
    I have to create a device collection for this 1000+ machines. as an input i have a excel or CSV file with a list of machine names.
    Please suggest me how can i create a device collection with CSV file as input. Is my CSV file should be in particular format.
    Or is there any other way i can create a collection for this 1000 specific machines.
    Please suggest.

    My previous post was for sccm 2012.
    here its for 2007
    In the Operating System Deployment section of SCCM right click on Computer Association and choose
    Import Computer Information
    when the wizard appears select Import Computers using a file
    The file itself must contain the information we need in this (CSV) format
    COMPUTERNAME,GUID,MACADDRESS
    (sample below)
    Quote
    deployvista,3ED92460-0448-6C45-8FB8-A60002A5B52F,00:03:FF:71:7D:76
    NEWCOMP1,55555555-5555-5555-5555-555555555555,05:06:07:08:09:0A
    NEWPXE,23CA788C-AF62-6246-9923-816CFB6DD39F,00:03:FF:72:7D:76
    w2k8deploy,BFAD6FF2-A04E-6E41-9060-C6FB9EDD4C54,00:03:FF:77:7D:76
    if we look at the last line, I've marked the computer name in Red, the GUID in BLUE and the MAC address in GREEN, separate these values with commas as above.
    w2k8deploy,BFAD6FF2-A04E-6E41-9060-C6FB9EDD4C54,00:03:FF:77:7D:76
    the file can be a standard TEXT file that you create in notepad, and you can rename it to CSV for easier importing into our wizard...
    so, click on Browse and browse to where you've got your CSV file
    on the Choose Mapping screen, you can select columns and define what to do with that mapping, eg: you could tell it to ignore the GUID value (we won't however)
    on the next screen you'll see a Data Preview, and this is useful as it will highlight any errors it finds with a red exclamation mark, in the example below a typo meant that it correctly flagged the MAC address as invalid
    so edit your CSV file again and fix the error, click previous (back) and try again
    Next choose the target collection where you want these computers to end up in
    review the summary
    in SCCM collections, we can now see the computers we've just imported from File,
    Enjoy
    Nikkoscy

  • Custom Prompt sometimes shows wrong Machine Name

    I set up a custom command prompt in my .bash_profile to show the machine name. Sometimes it works, sometimes it doesn't.
    The command:
    export PS1='\[\033[0;32m\]\h \W\$ \[\033[0m\]'
    Sometimes it shows
    lud610wxp-sales rfreedman$
    Sometimes it shows
    qaimac rfreedman$
    This is correct
    I see the same behavior on other systems although the wrong machine name is different.

    If you're on a network, the hostname for the prompt is set by performing a reverse DNS lookup of your IP address. Often an old entry will be listed in the reverse DNS table before the current one, and its name will be used instead of the correct one. You can manually edit /etc/hostconfig if this bothers you, but it generally does not affect anything because forward DNS queries will be correct.

  • How to configure address-2-name mappings in Tiger Server ?

    Our primary name server is Debian Linux (thank God). On this box we have address-2-name mappings file. We are using Tiger server as secondary(slave) name server. In the Secondary Zones tab, I entered zone names and their primary name server (debian). Tiger server is acting as secondary name server. But we want to create address-2-name mappings also on this server. How to do this on Tiger Server ? I tried manually creating the file. Everything worked fine. But when I open DNS GUI and added a new Secondary Zone, manually added file is gone. Appreciate any help.

    Secondary zones are pulled from a master server.
    If you want this machine to have its own zone of hostnames you need to create a primary zone entry, not a secondary zone.
    For the primary zone you define the zone name then add the appropriate hostname entries with their corresponding IP addresses.

  • OBIEE Analytics URL with fully qualified machine name

    Hi All,
    I have issue with analytics URL, Analytics URL works fine if it is in this form: [<machine-name>:9704/analytics], but for EBS integration purpose, i need to give fully qualified name like:
    [<machine-name>.<domain-name>.<com>:9704/analytics]. It is displaying a note saying:
    "you are not currently signed in to Oracle BI Server
      If you have already signed in, your connection might have timed out, or a communications or server error may have occured"
    Should i do anything extra, to access analytics via fully qualified machine name.
    Thanks,
    Sreekanth Jala

    Hi,
    Thanks for the reply, the problem was with IP Address entry i gave in hosts file.
    For linux the convention was: <IP Address> <space> <host-name.domain-name.com> <space> <host-name>
    I followed the same convention for windows which resulted in this error, for windows it is simply:
    <IP Address> <space> <host-name.domain-name.com>
    After i corrected this in hosts file, this error was not coming.
    Thanks,
    Sreekanth Jala

  • To choose IP address OR Name OR anything else

    There are several options to choose from drop down menu.
    Which is better ? Why?
    Thanks,

    Hi user,
    to choose IP address OR Name OR anything else
    127.0.0.1
    More IP addressesare you looking for instead of this IP?. your application want to listen/use your IP address.? you want to use machine name?I dont understand your question. so drive you step by step. please give me enough info.

Maybe you are looking for