Why do we create multiple aliases to a single table?

<h4>{color:#0000ff}Hi,{color}</h4>
<h4></h4>
<h4></h4>
<h4>{color:#0000ff} Why do we create multiple aliases to a single table in the same query?{color}</h4>
<h4></h4>
<h4></h4>
<h4>{color:#0000ff}{color:#000000}For Ex: {color}{color}</h4>
<h4>
{color:#000000}select name,address,phone, from emp e, emp e1{color}</h4>
<h4></h4>
<h4>{color:#000000}where e.empid = e1.empid;{color}</h4>
<h4>
{color:#0000ff}ofcourse the above query's where condition is not correct, but i am giving as an example only{color}</h4>
<h4>{color:#0000ff}I have seen similar kind of queries where a single table name is aliased 10 times in the same query{color}</h4>
<h4>{color:#0000ff}can someone help me to understand the logic behind it?{color}</h4>
<h4>{color:#0000ff}Thanks in advance{color}</h4>
<h4>{color:#0000ff}greddy.{color}</h4>
Edited by: greddy on Oct 24, 2008 2:46 AM

Hi,
When you say
FROM    emp  e
,       emp  e1you are using two copies of the same table.
Can you imagine using two copies of the same book at the same time?
Say you see a word (like "hyrax") that you don't know. You might look up that word in the dictionary.
The English sentence "Open the dictionary to the page containing the new word." is like this SQL query:
FROM    dictionary
WHERE   :unknown_word  BETWEEN low_guide_word and high_guide_wordWhat if you saw that word while reading a book (let's call it book_a).
You might want to leave book_a open, and place the dictionary beside book_a, so you can easily compare how the word is used in book_a with the definition in the dictionary.
This corresponds to joining two tables in SQL:
FROM    book_a     
JOIN    dictionary  ON unknown_word BETWEEN low_guide_word AND high_guide_word
WHERE   book_a.page  = whatever  -- NOTE: both tables have a column called pageor you can use aliases for one or both of the tables
FROM    book_a      a
JOIN    dictionary  d  ON a.unknown_word BETWEEN d.low_guide_word AND d.high_guide_word
WHERE   a.page  = whatever  -- NOTE: both tables have a column called pageNow, imagine that book_a is itself the dictionary. Say you saw the word "hyrax" while you were looking up another word, "ibex".
You can do a side-by-side comparison, as above, if you have two copies of the dictionary. Leave one copy open to "ibex", and open the other copy to "hyrax".
This corresponds to a self-join in SQL:
FROM    dictionary  a
JOIN    dictionary  d  ON a.unknown_word BETWEEN d.low_guide_word AND d.high_guide_word
WHERE   a.page  = whatever  -- NOTE: both tables have a column called pageNotice that this last bit of code is identical to the previous one, except that book_a is replaced with dictionary.
In this case, you must you a table alias, at least for one copy. It wouldn't make any sense to say "Leave the dictionary open to "ibex" and open the dictionary to "hyrax". You have to have some unique way of referring to each copy, such as "Leave the dictionary on my left open to "ibex" and open the dictionary on my right to "hyrax"."

Similar Messages

  • My macbook pro has a virus/trojan that is resetting the EFI via apci and it is getting root access privileges. It seems to be creating multiple aliases that bundle with rogue apps and preferences so it is very difficult to control or fix. Please help..

    My macbook pro has a virus/trojan that is resetting the EFI via apci and it is getting root access privileges. It seems to be creating multiple aliases that bundle with rogue apps and preferences so it is very difficult to control or fix. Please help..It all stems from the "about donwloads" PDF which kicks off the restructuring of the OS..

    Well given the fact that it is not just myself who is infected and also that this is my 3rd macbook in 1 year because the other 2 efi's were compromised to the point where they were unusable, and also that I must've been to the mac store no less than 100 times in a year for these issues, I beg to differ. Here is what I can show you. This has been ongoing for over a year now.
    I will try and show you as much as I can.
    1) Here is what I see when I run mount from terminal:
    /dev/disk0s2 on / (hfs, local, journaled)
    devfs on /dev (devfs, local, nobrowse)
    map -hosts on /net (autofs, nosuid, automounted, nobrowse)
    map auto_home on /home (autofs, automounted, nobrowse)
    localhost:/4zOta2Q9FMiMnRjTROIbhU on /Volumes/MobileBackups (mtmfs, nosuid, read-only, nobrowse)
    Why on earth is /Volumes/MobildBackups my localhost is beyond me. I don't use iCloud and Mobile me is obsolete.
    2) Here is what I show when I run ls -al /*/*/*/*.efi from root
    -rw-r--r--  1 root  wheel  994464 May  1 00:33 /System/Library/CoreServices/boot.efi
    -rw-r--r--  1 root  wheel  994464 Oct  2  2012 /usr/standalone/i386/boot.efi
    -rwxr-xr-x  1 root  wheel  115716 Dec 13 14:08 /usr/standalone/i386/tmbootpicker.efi
    As far as I know my boot.efi should not change everytime I boot my machine.
    3) Here is something very interesting. When I run cd /dev followed by ls -al look what I have;
    total 9
    dr-xr-xr-x   3 root  wheel         4597 May  6 08:48 .
    drwxrwxr-t  32 root  admin         1156 May  6 01:20 ..
    crw-------   1 root  wheel      14,   1 May  6 08:48 afsc_type5
    crw-------   1 root  wheel       8,   0 May  6 08:48 auditpipe
    crw-r--r--   1 root  wheel       7,   1 May  6 08:48 auditsessions
    crw-------   1 root  wheel      18,   0 May  6 08:48 autofs
    crw-------   1 root  wheel      31,   0 May  6 08:48 autofs_control
    crw-rw-rw-   1 root  wheel      22,   0 May  6 08:48 autofs_homedirmounter
    crw-rw-rw-   1 root  wheel      21,   0 May  6 08:48 autofs_notrigger
    crw-rw-rw-   1 root  wheel      19,  13 May  6 08:48 autofs_nowait
    crw-------   1 root  wheel      23,   0 May  6 08:48 bpf0
    crw-------   1 root  wheel      23,   1 May  7 13:16 bpf1
    crw-------   1 root  wheel      23,   2 May  7 13:16 bpf2
    crw-------   1 root  wheel      23,   3 May  6 08:48 bpf3
    crw-------   1 MP    staff       0,   0 May  7 13:16 console
    crw-rw-rw-   1 root  wheel      33,   1 May  6 08:49 cu.Bluetooth-Modem
    crw-rw-rw-   1 root  wheel      33,   3 May  6 08:49 cu.SerialPort
    brw-r-----   1 root  operator    1,   0 May  6 08:48 disk0
    brw-r-----   1 root  operator    1,   2 May  6 08:48 disk0s1
    brw-r-----   1 root  operator    1,   1 May  6 08:48 disk0s2
    brw-r-----   1 root  operator    1,   3 May  6 08:48 disk0s3
    crw-rw-rw-   1 root  wheel      24,   2 May  6 08:48 dtrace
    crw-rw-rw-   1 root  wheel      25,   0 May  6 08:48 dtracehelper
    crw-rw-rw-   1 root  wheel       0,   0 May  6 08:48 fbt
    dr-xr-xr-x   1 root  wheel            0 May  6 08:48 fd
    crw-r--r--   1 root  wheel      11,   0 May  6 08:48 fsevents
    crw-rw-rw-   1 root  wheel      17,   7 May  7 13:16 io8log
    cr--r--r--   1 root  wheel      17,   2 May  6 08:48 io8logmt
    crw-------   1 root  wheel       6,   0 May  6 08:48 klog
    crw-rw-rw-   1 root  wheel       0,   0 May  6 08:48 lockstat
    crw-rw-rw-   1 root  wheel       0,   0 May  6 08:48 machtrace
    crw-rw-rw-   1 root  wheel       3,   2 May  7 13:16 null
    crw-------   1 root  wheel       9,   0 May  6 08:48 pf
    crw-------   1 root  wheel       9,   1 May  6 08:48 pfm
    crw-------   1 root  operator   20,   0 May  6 08:48 pmCPU
    crw-rw-rw-   1 root  wheel       0,   0 May  6 08:48 profile
    crw-rw-rw-   1 root  tty        15,   3 May  7 13:35 ptmx
    crw-rw-rw-   1 root  wheel       5,   0 May  6 08:48 ptyp0
    crw-rw-rw-   1 root  wheel       5,   1 May  6 08:48 ptyp1
    crw-rw-rw-   1 root  wheel       5,   2 May  6 08:48 ptyp2
    crw-rw-rw-   1 root  wheel       5,   3 May  6 08:48 ptyp3
    crw-rw-rw-   1 root  wheel       5,   4 May  6 08:48 ptyp4
    crw-rw-rw-   1 root  wheel       5,   5 May  6 08:48 ptyp5
    crw-rw-rw-   1 root  wheel       5,   6 May  6 08:48 ptyp6
    crw-rw-rw-   1 root  wheel       5,   7 May  6 08:48 ptyp7
    crw-rw-rw-   1 root  wheel       5,   8 May  6 08:48 ptyp8
    crw-rw-rw-   1 root  wheel       5,   9 May  6 08:48 ptyp9
    crw-rw-rw-   1 root  wheel       5,  10 May  6 08:48 ptypa
    crw-rw-rw-   1 root  wheel       5,  11 May  6 08:48 ptypb
    crw-rw-rw-   1 root  wheel       5,  12 May  6 08:48 ptypc
    crw-rw-rw-   1 root  wheel       5,  13 May  6 08:48 ptypd
    crw-rw-rw-   1 root  wheel       5,  14 May  6 08:48 ptype
    crw-rw-rw-   1 root  wheel       5,  15 May  6 08:48 ptypf
    crw-rw-rw-   1 root  wheel       5,  16 May  6 08:48 ptyq0
    crw-rw-rw-   1 root  wheel       5,  17 May  6 08:48 ptyq1
    crw-rw-rw-   1 root  wheel       5,  18 May  6 08:48 ptyq2
    crw-rw-rw-   1 root  wheel       5,  19 May  6 08:48 ptyq3
    crw-rw-rw-   1 root  wheel       5,  20 May  6 08:48 ptyq4
    crw-rw-rw-   1 root  wheel       5,  21 May  6 08:48 ptyq5
    crw-rw-rw-   1 root  wheel       5,  22 May  6 08:48 ptyq6
    crw-rw-rw-   1 root  wheel       5,  23 May  6 08:48 ptyq7
    crw-rw-rw-   1 root  wheel       5,  24 May  6 08:48 ptyq8
    crw-rw-rw-   1 root  wheel       5,  25 May  6 08:48 ptyq9
    crw-rw-rw-   1 root  wheel       5,  26 May  6 08:48 ptyqa
    crw-rw-rw-   1 root  wheel       5,  27 May  6 08:48 ptyqb
    crw-rw-rw-   1 root  wheel       5,  28 May  6 08:48 ptyqc
    crw-rw-rw-   1 root  wheel       5,  29 May  6 08:48 ptyqd
    crw-rw-rw-   1 root  wheel       5,  30 May  6 08:48 ptyqe
    crw-rw-rw-   1 root  wheel       5,  31 May  6 08:48 ptyqf
    crw-rw-rw-   1 root  wheel       5,  32 May  6 08:48 ptyr0
    crw-rw-rw-   1 root  wheel       5,  33 May  6 08:48 ptyr1
    crw-rw-rw-   1 root  wheel       5,  34 May  6 08:48 ptyr2
    crw-rw-rw-   1 root  wheel       5,  35 May  6 08:48 ptyr3
    crw-rw-rw-   1 root  wheel       5,  36 May  6 08:48 ptyr4
    crw-rw-rw-   1 root  wheel       5,  37 May  6 08:48 ptyr5
    crw-rw-rw-   1 root  wheel       5,  38 May  6 08:48 ptyr6
    crw-rw-rw-   1 root  wheel       5,  39 May  6 08:48 ptyr7
    crw-rw-rw-   1 root  wheel       5,  40 May  6 08:48 ptyr8
    crw-rw-rw-   1 root  wheel       5,  41 May  6 08:48 ptyr9
    crw-rw-rw-   1 root  wheel       5,  42 May  6 08:48 ptyra
    crw-rw-rw-   1 root  wheel       5,  43 May  6 08:48 ptyrb
    crw-rw-rw-   1 root  wheel       5,  44 May  6 08:48 ptyrc
    crw-rw-rw-   1 root  wheel       5,  45 May  6 08:48 ptyrd
    crw-rw-rw-   1 root  wheel       5,  46 May  6 08:48 ptyre
    crw-rw-rw-   1 root  wheel       5,  47 May  6 08:48 ptyrf
    crw-rw-rw-   1 root  wheel       5,  48 May  6 08:48 ptys0
    crw-rw-rw-   1 root  wheel       5,  49 May  6 08:48 ptys1
    crw-rw-rw-   1 root  wheel       5,  50 May  6 08:48 ptys2
    crw-rw-rw-   1 root  wheel       5,  51 May  6 08:48 ptys3
    crw-rw-rw-   1 root  wheel       5,  52 May  6 08:48 ptys4
    crw-rw-rw-   1 root  wheel       5,  53 May  6 08:48 ptys5
    crw-rw-rw-   1 root  wheel       5,  54 May  6 08:48 ptys6
    crw-rw-rw-   1 root  wheel       5,  55 May  6 08:48 ptys7
    crw-rw-rw-   1 root  wheel       5,  56 May  6 08:48 ptys8
    crw-rw-rw-   1 root  wheel       5,  57 May  6 08:48 ptys9
    crw-rw-rw-   1 root  wheel       5,  58 May  6 08:48 ptysa
    crw-rw-rw-   1 root  wheel       5,  59 May  6 08:48 ptysb
    crw-rw-rw-   1 root  wheel       5,  60 May  6 08:48 ptysc
    crw-rw-rw-   1 root  wheel       5,  61 May  6 08:48 ptysd
    crw-rw-rw-   1 root  wheel       5,  62 May  6 08:48 ptyse
    crw-rw-rw-   1 root  wheel       5,  63 May  6 08:48 ptysf
    crw-rw-rw-   1 root  wheel       5,  64 May  6 08:48 ptyt0
    crw-rw-rw-   1 root  wheel       5,  65 May  6 08:48 ptyt1
    crw-rw-rw-   1 root  wheel       5,  66 May  6 08:48 ptyt2
    crw-rw-rw-   1 root  wheel       5,  67 May  6 08:48 ptyt3
    crw-rw-rw-   1 root  wheel       5,  68 May  6 08:48 ptyt4
    crw-rw-rw-   1 root  wheel       5,  69 May  6 08:48 ptyt5
    crw-rw-rw-   1 root  wheel       5,  70 May  6 08:48 ptyt6
    crw-rw-rw-   1 root  wheel       5,  71 May  6 08:48 ptyt7
    crw-rw-rw-   1 root  wheel       5,  72 May  6 08:48 ptyt8
    crw-rw-rw-   1 root  wheel       5,  73 May  6 08:48 ptyt9
    crw-rw-rw-   1 root  wheel       5,  74 May  6 08:48 ptyta
    crw-rw-rw-   1 root  wheel       5,  75 May  6 08:48 ptytb
    crw-rw-rw-   1 root  wheel       5,  76 May  6 08:48 ptytc
    crw-rw-rw-   1 root  wheel       5,  77 May  6 08:48 ptytd
    crw-rw-rw-   1 root  wheel       5,  78 May  6 08:48 ptyte
    crw-rw-rw-   1 root  wheel       5,  79 May  6 08:48 ptytf
    crw-rw-rw-   1 root  wheel       5,  80 May  6 08:48 ptyu0
    crw-rw-rw-   1 root  wheel       5,  81 May  6 08:48 ptyu1
    crw-rw-rw-   1 root  wheel       5,  82 May  6 08:48 ptyu2
    crw-rw-rw-   1 root  wheel       5,  83 May  6 08:48 ptyu3
    crw-rw-rw-   1 root  wheel       5,  84 May  6 08:48 ptyu4
    crw-rw-rw-   1 root  wheel       5,  85 May  6 08:48 ptyu5
    crw-rw-rw-   1 root  wheel       5,  86 May  6 08:48 ptyu6
    crw-rw-rw-   1 root  wheel       5,  87 May  6 08:48 ptyu7
    crw-rw-rw-   1 root  wheel       5,  88 May  6 08:48 ptyu8
    crw-rw-rw-   1 root  wheel       5,  89 May  6 08:48 ptyu9
    crw-rw-rw-   1 root  wheel       5,  90 May  6 08:48 ptyua
    crw-rw-rw-   1 root  wheel       5,  91 May  6 08:48 ptyub
    crw-rw-rw-   1 root  wheel       5,  92 May  6 08:48 ptyuc
    crw-rw-rw-   1 root  wheel       5,  93 May  6 08:48 ptyud
    crw-rw-rw-   1 root  wheel       5,  94 May  6 08:48 ptyue
    crw-rw-rw-   1 root  wheel       5,  95 May  6 08:48 ptyuf
    crw-rw-rw-   1 root  wheel       5,  96 May  6 08:48 ptyv0
    crw-rw-rw-   1 root  wheel       5,  97 May  6 08:48 ptyv1
    crw-rw-rw-   1 root  wheel       5,  98 May  6 08:48 ptyv2
    crw-rw-rw-   1 root  wheel       5,  99 May  6 08:48 ptyv3
    crw-rw-rw-   1 root  wheel       5, 100 May  6 08:48 ptyv4
    crw-rw-rw-   1 root  wheel       5, 101 May  6 08:48 ptyv5
    crw-rw-rw-   1 root  wheel       5, 102 May  6 08:48 ptyv6
    crw-rw-rw-   1 root  wheel       5, 103 May  6 08:48 ptyv7
    crw-rw-rw-   1 root  wheel       5, 104 May  6 08:48 ptyv8
    crw-rw-rw-   1 root  wheel       5, 105 May  6 08:48 ptyv9
    crw-rw-rw-   1 root  wheel       5, 106 May  6 08:48 ptyva
    crw-rw-rw-   1 root  wheel       5, 107 May  6 08:48 ptyvb
    crw-rw-rw-   1 root  wheel       5, 108 May  6 08:48 ptyvc
    crw-rw-rw-   1 root  wheel       5, 109 May  6 08:48 ptyvd
    crw-rw-rw-   1 root  wheel       5, 110 May  6 08:48 ptyve
    crw-rw-rw-   1 root  wheel       5, 111 May  6 08:48 ptyvf
    crw-rw-rw-   1 root  wheel       5, 112 May  6 08:48 ptyw0
    crw-rw-rw-   1 root  wheel       5, 113 May  6 08:48 ptyw1
    crw-rw-rw-   1 root  wheel       5, 114 May  6 08:48 ptyw2
    crw-rw-rw-   1 root  wheel       5, 115 May  6 08:48 ptyw3
    crw-rw-rw-   1 root  wheel       5, 116 May  6 08:48 ptyw4
    crw-rw-rw-   1 root  wheel       5, 117 May  6 08:48 ptyw5
    crw-rw-rw-   1 root  wheel       5, 118 May  6 08:48 ptyw6
    crw-rw-rw-   1 root  wheel       5, 119 May  6 08:48 ptyw7
    crw-rw-rw-   1 root  wheel       5, 120 May  6 08:48 ptyw8
    crw-rw-rw-   1 root  wheel       5, 121 May  6 08:48 ptyw9
    crw-rw-rw-   1 root  wheel       5, 122 May  6 08:48 ptywa
    crw-rw-rw-   1 root  wheel       5, 123 May  6 08:48 ptywb
    crw-rw-rw-   1 root  wheel       5, 124 May  6 08:48 ptywc
    crw-rw-rw-   1 root  wheel       5, 125 May  6 08:48 ptywd
    crw-rw-rw-   1 root  wheel       5, 126 May  6 08:48 ptywe
    crw-rw-rw-   1 root  wheel       5, 127 May  6 08:48 ptywf
    crw-rw-rw-   1 root  wheel      13,   0 May  7 13:26 random
    crw-r-----   1 root  operator    1,   0 May  6 08:48 rdisk0
    crw-r-----   1 root  operator    1,   2 May  6 08:48 rdisk0s1
    crw-r-----   1 root  operator    1,   1 May  6 08:48 rdisk0s2
    crw-r-----   1 root  operator    1,   3 May  6 08:48 rdisk0s3
    crw-rw-rw-   1 root  wheel       0,   0 May  6 08:48 sdt
    lr-xr-xr-x   1 root  wheel            0 May  6 08:48 stderr -> fd/2
    lr-xr-xr-x   1 root  wheel            0 May  6 08:48 stdin -> fd/0
    lr-xr-xr-x   1 root  wheel            0 May  6 08:48 stdout -> fd/1
    crw-rw-rw-   1 root  wheel       0,   0 May  6 08:48 systrace
    crw-rw----   1 root  wheel      34,   0 May  7 06:18 tap0
    crw-rw----   1 root  wheel      34,   1 May  7 06:18 tap1
    crw-rw----   1 root  wheel      34,  10 May  7 06:18 tap10
    crw-rw----   1 root  wheel      34,  11 May  7 06:18 tap11
    crw-rw----   1 root  wheel      34,  12 May  7 06:18 tap12
    crw-rw----   1 root  wheel      34,  13 May  7 06:18 tap13
    crw-rw----   1 root  wheel      34,  14 May  7 06:18 tap14
    crw-rw----   1 root  wheel      34,  15 May  7 06:18 tap15
    crw-rw----   1 root  wheel      34,   2 May  7 06:18 tap2
    crw-rw----   1 root  wheel      34,   3 May  7 06:18 tap3
    crw-rw----   1 root  wheel      34,   4 May  7 06:18 tap4
    crw-rw----   1 root  wheel      34,   5 May  7 06:18 tap5
    crw-rw----   1 root  wheel      34,   6 May  7 06:18 tap6
    crw-rw----   1 root  wheel      34,   7 May  7 06:18 tap7
    crw-rw----   1 root  wheel      34,   8 May  7 06:18 tap8
    crw-rw----   1 root  wheel      34,   9 May  7 06:18 tap9
    crw-rw-rw-   1 root  wheel       2,   0 May  6 08:48 tty
    crw-rw-rw-   1 root  wheel      33,   0 May  6 08:49 tty.Bluetooth-Modem
    crw-rw-rw-   1 root  wheel      33,   2 May  6 08:49 tty.SerialPort
    crw-rw-rw-   1 root  wheel       4,   0 May  6 08:48 ttyp0
    crw-rw-rw-   1 root  wheel       4,   1 May  6 08:48 ttyp1
    crw-rw-rw-   1 root  wheel       4,   2 May  6 08:48 ttyp2
    crw-rw-rw-   1 root  wheel       4,   3 May  6 08:48 ttyp3
    crw-rw-rw-   1 root  wheel       4,   4 May  6 08:48 ttyp4
    crw-rw-rw-   1 root  wheel       4,   5 May  6 08:48 ttyp5
    crw-rw-rw-   1 root  wheel       4,   6 May  6 08:48 ttyp6
    crw-rw-rw-   1 root  wheel       4,   7 May  6 08:48 ttyp7
    crw-rw-rw-   1 root  wheel       4,   8 May  6 08:48 ttyp8
    crw-rw-rw-   1 root  wheel       4,   9 May  6 08:48 ttyp9
    crw-rw-rw-   1 root  wheel       4,  10 May  6 08:48 ttypa
    crw-rw-rw-   1 root  wheel       4,  11 May  6 08:48 ttypb
    crw-rw-rw-   1 root  wheel       4,  12 May  6 08:48 ttypc
    crw-rw-rw-   1 root  wheel       4,  13 May  6 08:48 ttypd
    crw-rw-rw-   1 root  wheel       4,  14 May  6 08:48 ttype
    crw-rw-rw-   1 root  wheel       4,  15 May  6 08:48 ttypf
    crw-rw-rw-   1 root  wheel       4,  16 May  6 08:48 ttyq0
    crw-rw-rw-   1 root  wheel       4,  17 May  6 08:48 ttyq1
    crw-rw-rw-   1 root  wheel       4,  18 May  6 08:48 ttyq2
    crw-rw-rw-   1 root  wheel       4,  19 May  6 08:48 ttyq3
    crw-rw-rw-   1 root  wheel       4,  20 May  6 08:48 ttyq4
    crw-rw-rw-   1 root  wheel       4,  21 May  6 08:48 ttyq5
    crw-rw-rw-   1 root  wheel       4,  22 May  6 08:48 ttyq6
    crw-rw-rw-   1 root  wheel       4,  23 May  6 08:48 ttyq7
    crw-rw-rw-   1 root  wheel       4,  24 May  6 08:48 ttyq8
    crw-rw-rw-   1 root  wheel       4,  25 May  6 08:48 ttyq9
    crw-rw-rw-   1 root  wheel       4,  26 May  6 08:48 ttyqa
    crw-rw-rw-   1 root  wheel       4,  27 May  6 08:48 ttyqb
    crw-rw-rw-   1 root  wheel       4,  28 May  6 08:48 ttyqc
    crw-rw-rw-   1 root  wheel       4,  29 May  6 08:48 ttyqd
    crw-rw-rw-   1 root  wheel       4,  30 May  6 08:48 ttyqe
    crw-rw-rw-   1 root  wheel       4,  31 May  6 08:48 ttyqf
    crw-rw-rw-   1 root  wheel       4,  32 May  6 08:48 ttyr0
    crw-rw-rw-   1 root  wheel       4,  33 May  6 08:48 ttyr1
    crw-rw-rw-   1 root  wheel       4,  34 May  6 08:48 ttyr2
    crw-rw-rw-   1 root  wheel       4,  35 May  6 08:48 ttyr3
    crw-rw-rw-   1 root  wheel       4,  36 May  6 08:48 ttyr4
    crw-rw-rw-   1 root  wheel       4,  37 May  6 08:48 ttyr5
    crw-rw-rw-   1 root  wheel       4,  38 May  6 08:48 ttyr6
    crw-rw-rw-   1 root  wheel       4,  39 May  6 08:48 ttyr7
    crw-rw-rw-   1 root  wheel       4,  40 May  6 08:48 ttyr8
    crw-rw-rw-   1 root  wheel       4,  41 May  6 08:48 ttyr9
    crw-rw-rw-   1 root  wheel       4,  42 May  6 08:48 ttyra
    crw-rw-rw-   1 root  wheel       4,  43 May  6 08:48 ttyrb
    crw-rw-rw-   1 root  wheel       4,  44 May  6 08:48 ttyrc
    crw-rw-rw-   1 root  wheel       4,  45 May  6 08:48 ttyrd
    crw-rw-rw-   1 root  wheel       4,  46 May  6 08:48 ttyre
    crw-rw-rw-   1 root  wheel       4,  47 May  6 08:48 ttyrf
    crw-rw-rw-   1 root  wheel       4,  48 May  6 08:48 ttys0
    crw--w----   1 MP    tty        16,   0 May  7 13:34 ttys000
    crw--w----   1 MP    tty        16,   1 May  7 13:34 ttys001
    crw--w----   1 MP    tty        16,   2 May  7 13:35 ttys002
    crw-rw-rw-   1 root  wheel       4,  49 May  6 08:48 ttys1
    crw-rw-rw-   1 root  wheel       4,  50 May  6 08:48 ttys2
    crw-rw-rw-   1 root  wheel       4,  51 May  6 08:48 ttys3
    crw-rw-rw-   1 root  wheel       4,  52 May  6 08:48 ttys4
    crw-rw-rw-   1 root  wheel       4,  53 May  6 08:48 ttys5
    crw-rw-rw-   1 root  wheel       4,  54 May  6 08:48 ttys6
    crw-rw-rw-   1 root  wheel       4,  55 May  6 08:48 ttys7
    crw-rw-rw-   1 root  wheel       4,  56 May  6 08:48 ttys8
    crw-rw-rw-   1 root  wheel       4,  57 May  6 08:48 ttys9
    crw-rw-rw-   1 root  wheel       4,  58 May  6 08:48 ttysa
    crw-rw-rw-   1 root  wheel       4,  59 May  6 08:48 ttysb
    crw-rw-rw-   1 root  wheel       4,  60 May  6 08:48 ttysc
    crw-rw-rw-   1 root  wheel       4,  61 May  6 08:48 ttysd
    crw-rw-rw-   1 root  wheel       4,  62 May  6 08:48 ttyse
    crw-rw-rw-   1 root  wheel       4,  63 May  6 08:48 ttysf
    crw-rw-rw-   1 root  wheel       4,  64 May  6 08:48 ttyt0
    crw-rw-rw-   1 root  wheel       4,  65 May  6 08:48 ttyt1
    crw-rw-rw-   1 root  wheel       4,  66 May  6 08:48 ttyt2
    crw-rw-rw-   1 root  wheel       4,  67 May  6 08:48 ttyt3
    crw-rw-rw-   1 root  wheel       4,  68 May  6 08:48 ttyt4
    crw-rw-rw-   1 root  wheel       4,  69 May  6 08:48 ttyt5
    crw-rw-rw-   1 root  wheel       4,  70 May  6 08:48 ttyt6
    crw-rw-rw-   1 root  wheel       4,  71 May  6 08:48 ttyt7
    crw-rw-rw-   1 root  wheel       4,  72 May  6 08:48 ttyt8
    crw-rw-rw-   1 root  wheel       4,  73 May  6 08:48 ttyt9
    crw-rw-rw-   1 root  wheel       4,  74 May  6 08:48 ttyta
    crw-rw-rw-   1 root  wheel       4,  75 May  6 08:48 ttytb
    crw-rw-rw-   1 root  wheel       4,  76 May  6 08:48 ttytc
    crw-rw-rw-   1 root  wheel       4,  77 May  6 08:48 ttytd
    crw-rw-rw-   1 root  wheel       4,  78 May  6 08:48 ttyte
    crw-rw-rw-   1 root  wheel       4,  79 May  6 08:48 ttytf
    crw-rw-rw-   1 root  wheel       4,  80 May  6 08:48 ttyu0
    crw-rw-rw-   1 root  wheel       4,  81 May  6 08:48 ttyu1
    crw-rw-rw-   1 root  wheel       4,  82 May  6 08:48 ttyu2
    crw-rw-rw-   1 root  wheel       4,  83 May  6 08:48 ttyu3
    crw-rw-rw-   1 root  wheel       4,  84 May  6 08:48 ttyu4
    crw-rw-rw-   1 root  wheel       4,  85 May  6 08:48 ttyu5
    crw-rw-rw-   1 root  wheel       4,  86 May  6 08:48 ttyu6
    crw-rw-rw-   1 root  wheel       4,  87 May  6 08:48 ttyu7
    crw-rw-rw-   1 root  wheel       4,  88 May  6 08:48 ttyu8
    crw-rw-rw-   1 root  wheel       4,  89 May  6 08:48 ttyu9
    crw-rw-rw-   1 root  wheel       4,  90 May  6 08:48 ttyua
    crw-rw-rw-   1 root  wheel       4,  91 May  6 08:48 ttyub
    crw-rw-rw-   1 root  wheel       4,  92 May  6 08:48 ttyuc
    crw-rw-rw-   1 root  wheel       4,  93 May  6 08:48 ttyud
    crw-rw-rw-   1 root  wheel       4,  94 May  6 08:48 ttyue
    crw-rw-rw-   1 root  wheel       4,  95 May  6 08:48 ttyuf
    crw-rw-rw-   1 root  wheel       4,  96 May  6 08:48 ttyv0
    crw-rw-rw-   1 root  wheel       4,  97 May  6 08:48 ttyv1
    crw-rw-rw-   1 root  wheel       4,  98 May  6 08:48 ttyv2
    crw-rw-rw-   1 root  wheel       4,  99 May  6 08:48 ttyv3
    crw-rw-rw-   1 root  wheel       4, 100 May  6 08:48 ttyv4
    crw-rw-rw-   1 root  wheel       4, 101 May  6 08:48 ttyv5
    crw-rw-rw-   1 root  wheel       4, 102 May  6 08:48 ttyv6
    crw-rw-rw-   1 root  wheel       4, 103 May  6 08:48 ttyv7
    crw-rw-rw-   1 root  wheel       4, 104 May  6 08:48 ttyv8
    crw-rw-rw-   1 root  wheel       4, 105 May  6 08:48 ttyv9
    crw-rw-rw-   1 root  wheel       4, 106 May  6 08:48 ttyva
    crw-rw-rw-   1 root  wheel       4, 107 May  6 08:48 ttyvb
    crw-rw-rw-   1 root  wheel       4, 108 May  6 08:48 ttyvc
    crw-rw-rw-   1 root  wheel       4, 109 May  6 08:48 ttyvd
    crw-rw-rw-   1 root  wheel       4, 110 May  6 08:48 ttyve
    crw-rw-rw-   1 root  wheel       4, 111 May  6 08:48 ttyvf
    crw-rw-rw-   1 root  wheel       4, 112 May  6 08:48 ttyw0
    crw-rw-rw-   1 root  wheel       4, 113 May  6 08:48 ttyw1
    crw-rw-rw-   1 root  wheel       4, 114 May  6 08:48 ttyw2
    crw-rw-rw-   1 root  wheel       4, 115 May  6 08:48 ttyw3
    crw-rw-rw-   1 root  wheel       4, 116 May  6 08:48 ttyw4
    crw-rw-rw-   1 root  wheel       4, 117 May  6 08:48 ttyw5
    crw-rw-rw-   1 root  wheel       4, 118 May  6 08:48 ttyw6
    crw-rw-rw-   1 root  wheel       4, 119 May  6 08:48 ttyw7
    crw-rw-rw-   1 root  wheel       4, 120 May  6 08:48 ttyw8
    crw-rw-rw-   1 root  wheel       4, 121 May  6 08:48 ttyw9
    crw-rw-rw-   1 root  wheel       4, 122 May  6 08:48 ttywa
    crw-rw-rw-   1 root  wheel       4, 123 May  6 08:48 ttywb
    crw-rw-rw-   1 root  wheel       4, 124 May  6 08:48 ttywc
    crw-rw-rw-   1 root  wheel       4, 125 May  6 08:48 ttywd
    crw-rw-rw-   1 root  wheel       4, 126 May  6 08:48 ttywe
    crw-rw-rw-   1 root  wheel       4, 127 May  6 08:48 ttywf
    crw-rw----   1 root  wheel      35,   0 May  7 13:35 tun0
    crw-rw----   1 root  wheel      35,   1 May  7 06:18 tun1
    crw-rw----   1 root  wheel      35,  10 May  7 06:18 tun10
    crw-rw----   1 root  wheel      35,  11 May  7 06:18 tun11
    crw-rw----   1 root  wheel      35,  12 May  7 06:18 tun12
    crw-rw----   1 root  wheel      35,  13 May  7 06:18 tun13
    crw-rw----   1 root  wheel      35,  14 May  7 06:18 tun14
    crw-rw----   1 root  wheel      35,  15 May  7 06:18 tun15
    crw-rw----   1 root  wheel      35,   2 May  7 06:18 tun2
    crw-rw----   1 root  wheel      35,   3 May  7 06:18 tun3
    crw-rw----   1 root  wheel      35,   4 May  7 06:18 tun4
    crw-rw----   1 root  wheel      35,   5 May  7 06:18 tun5
    crw-rw----   1 root  wheel      35,   6 May  7 06:18 tun6
    crw-rw----   1 root  wheel      35,   7 May  7 06:18 tun7
    crw-rw----   1 root  wheel      35,   8 May  7 06:18 tun8
    crw-rw----   1 root  wheel      35,   9 May  7 06:18 tun9
    crw-rw-rw-   1 root  wheel      13,   1 May  6 08:48 urandom
    brw-------   1 root  operator    2,   0 May  6 08:48 vn0
    brw-------   1 root  operator    2,   1 May  6 08:48 vn1
    brw-------   1 root  operator    2,   2 May  6 08:48 vn2
    brw-------   1 root  operator    2,   3 May  6 08:48 vn3
    crw-rw-rw-   1 root  wheel       3,   3 May  6 08:48 zero
    4) ioreg -w 120
    Please take note of everything that is unregistered (!registered)
    +-o Root  <class IORegistryEntry, id 0x100000100, retain 12>
      +-o MacBookPro9,1  <class IOPlatformExpertDevice, id 0x100000110, registered, matched, active, busy 0 (16654 ms), ret$
        +-o AppleACPIPlatformExpert  <class AppleACPIPlatformExpert, id 0x100000111, registered, matched, active, busy 0 (5$
        | +-o IOPMrootDomain  <class IOPMrootDomain, id 0x100000114, registered, matched, active, busy 0 (14 ms), retain 47$
        | | +-o IORootParent  <class IORootParent, id 0x100000115, !registered, !matched, active, busy 0, retain 7>
        | | +-o RootDomainUserClient  <class RootDomainUserClient, id 0x1000002e3, !registered, !matched, active, busy 0, r$
        | | +-o RootDomainUserClient  <class RootDomainUserClient, id 0x1000002e4, !registered, !matched, active, busy 0, r$
        | | +-o RootDomainUserClient  <class RootDomainUserClient, id 0x1000002e5, !registered, !matched, active, busy 0, r$
        | | +-o RootDomainUserClient  <class RootDomainUserClient, id 0x1000002e6, !registered, !matched, active, busy 0, r$
        | | +-o RootDomainUserClient  <class RootDomainUserClient, id 0x1000002e8, !registered, !matched, active, busy 0, r$
        | | +-o RootDomainUserClient  <class RootDomainUserClient, id 0x1000002eb, !registered, !matched, active, busy 0, r$
        | | +-o RootDomainUserClient  <class RootDomainUserClient, id 0x1000002ee, !registered, !matched, active, busy 0, r$
        | | +-o RootDomainUserClient  <class RootDomainUserClient, id 0x1000002f2, !registered, !matched, active, busy 0, r$
        | | +-o RootDomainUserClient  <class RootDomainUserClient, id 0x1000003df, !registered, !matched, active, busy 0, r$
        | | +-o RootDomainUserClient  <class RootDomainUserClient, id 0x100000428, !registered, !matched, active, busy 0, r$
        | | +-o RootDomainUserClient  <class RootDomainUserClient, id 0x100000448, !registered, !matched, active, busy 0, r$
        | | +-o RootDomainUserClient  <class RootDomainUserClient, id 0x10000058f, !registered, !matched, active, busy 0, r$
        | | +-o RootDomainUserClient  <class RootDomainUserClient, id 0x100002cef, !registered, !matched, active, busy 0, r$
        | | +-o RootDomainUserClient  <class RootDomainUserClient, id 0x100002cf7, !registered, !matched, active, busy 0, r$
        | | +-o RootDomainUserClient  <class RootDomainUserClient, id 0x100002d1d, !registered, !matched, active, busy 0, r$
        | | +-o RootDomainUserClient  <class RootDomainUserClient, id 0x100002d1e, !registered, !matched, active, busy 0, r$
        | | +-o RootDomainUserClient  <class RootDomainUserClient, id 0x100002d24, !registered, !matched, active, busy 0, r$
        | | +-o RootDomainUserClient  <class RootDomainUserClient, id 0x100002d25, !registered, !matched, active, busy 0, r$
        | | +-o RootDomainUserClient  <class RootDomainUserClient, id 0x100002d26, !registered, !matched, active, busy 0, r$
        | | +-o RootDomainUserClient  <class RootDomainUserClient, id 0x100002d29, !registered, !matched, active, busy 0, r$
        | | +-o RootDomainUserClient  <class RootDomainUserClient, id 0x100002d2a, !registered, !matched, active, busy 0, r$
        | | +-o RootDomainUserClient  <class RootDomainUserClient, id 0x100002d2b, !registered, !matched, active, busy 0, r$
        | | +-o RootDomainUserClient  <class RootDomainUserClient, id 0x100002d2d, !registered, !matched, active, busy 0, r$
        | | +-o RootDomainUserClient  <class RootDomainUserClient, id 0x100002d2f, !registered, !matched, active, busy 0, r$
        | | +-o RootDomainUserClient  <class RootDomainUserClient, id 0x100002d39, !registered, !matched, active, busy 0, r$
        | | +-o RootDomainUserClient  <class RootDomainUserClient, id 0x100002d3a, !registered, !matched, active, busy 0, r$
        | | +-o RootDomainUserClient  <class RootDomainUserClient, id 0x100002d42, !registered, !matched, active, busy 0, r$
        | | +-o RootDomainUserClient  <class RootDomainUserClient, id 0x100002d59, !registered, !matched, active, busy 0, r$
        | | +-o RootDomainUserClient  <class RootDomainUserClient, id 0x100002d5b, !registered, !matched, active, busy 0, r$
        | +-o cpus  <class IOPlatformDevice, id 0x100000117, registered, matched, active, busy 0 (0 ms), retain 14>
        | +-o CPU0@0  <class IOACPIPlatformDevice, id 0x100000118, registered, matched, active, busy 0 (412 ms), retain 8>
        | | +-o AppleACPICPU  <class AppleACPICPU, id 0x100000125, registered, matched, active, busy 0 (406 ms), retain 8>
        | |   +-o AppleACPICPUInterruptController  <class AppleACPICPUInterruptController, id 0x10000012d, registered, matc$
        | |   +-o X86PlatformPlugin  <class X86PlatformPlugin, id 0x100000301, registered, matched, active, busy 0 (309 ms)$
        | |     +-o IOPlatformEnabler  <class IOPlatformPluginDevice, id 0x10000036f, registered, matched, active, busy 0 ($
        | |     +-o AGPMEnabler  <class IOPlatformPluginDevice, id 0x100000370, registered, matched, active, busy 0 (8 ms),$
        | |     | +-o AGPMController  <class AGPMController, id 0x100000373, !registered, !matched, active, busy 0, retain $
        | |     +-o X86PlatformShim  <class X86PlatformShim, id 0x100000371, !registered, !matched, active, busy 0, retain $
        | +-o CPU1@2  <class IOACPIPlatformDevice, id 0x100000119, registered, matched, active, busy 0 (6 ms), retain 8>
        | | +-o AppleACPICPU  <class AppleACPICPU, id 0x100000126, registered, matched, active, busy 0 (0 ms), retain 6>
        | +-o CPU2@4  <class IOACPIPlatformDevice, id 0x10000011a, registered, matched, active, busy 0 (7 ms), retain 8>
        | | +-o AppleACPICPU  <class AppleACPICPU, id 0x100000127, registered, matched, active, busy 0 (0 ms), retain 6>
        | +-o CPU3@6  <class IOACPIPlatformDevice, id 0x10000011b, registered, matched, active, busy 0 (8 ms), retain 8>
        | | +-o AppleACPICPU  <class AppleACPICPU, id 0x100000128, registered, matched, active, busy 0 (0 ms), retain 6>
        | +-o CPU4@1  <class IOACPIPlatformDevice, id 0x10000011c, registered, matched, active, busy 0 (9 ms), retain 8>
        | | +-o AppleACPICPU  <class AppleACPICPU, id 0x100000129, registered, matched, active, busy 0 (0 ms), retain 6>
        | +-o CPU5@3  <class IOACPIPlatformDevice, id 0x10000011d, registered, matched, active, busy 0 (10 ms), retain 8>
        | | +-o AppleACPICPU  <class AppleACPICPU, id 0x10000012a, registered, matched, active, busy 0 (0 ms), retain 6>
        | +-o CPU6@5  <class IOACPIPlatformDevice, id 0x10000011e, registered, matched, active, busy 0 (11 ms), retain 8>
        | | +-o AppleACPICPU  <class AppleACPICPU, id 0x10000012b, registered, matched, active, busy 0 (0 ms), retain 6>
        | +-o CPU7@7  <class IOACPIPlatformDevice, id 0x10000011f, registered, matched, active, busy 0 (12 ms), retain 8>
        | | +-o AppleACPICPU  <class AppleACPICPU, id 0x10000012c, registered, matched, active, busy 0 (0 ms), retain 6>
        | +-o io-apic@fec00000  <class IOACPIPlatformDevice, id 0x100000120, registered, matched, active, busy 0 (0 ms), re$
        | | +-o AppleAPICInterruptController  <class AppleAPICInterruptController, id 0x10000012f, registered, matched, act$
        | +-o AppleACPIEventController  <class AppleACPIEventController, id 0x100000130, !registered, !matched, active, bus$
        | +-o boot-ec  <class IOACPIPlatformDevice, id 0x100000131, registered, matched, active, busy 0 (1 ms), retain 7>
        | | +-o AppleACPIEC  <class AppleACPIEC, id 0x100000132, !registered, !matched, active, busy 0, retain 5>
        | +-o bios  <class IOPlatformDevice, id 0x100000133, registered, matched, active, busy 0 (0 ms), retain 6>
        | | +-o AppleSMBIOS  <class AppleSMBIOS, id 0x100000134, registered, matched, active, busy 0 (0 ms), retain 5>
        | +-o PCI0@0  <class IOACPIPlatformDevice, id 0x100000138, registered, matched, active, busy 0 (5300 ms), retain 43$
        | | +-o AppleACPIPCI  <class AppleACPIPCI, id 0x1000001d5, registered, matched, active, busy 0 (5288 ms), retain 37$
        | | | +-o MCHC@0  <class IOPCIDevice, id 0x100000196, registered, matched, active, busy 0 (215 ms), retain 10>
        | | | | +-o AppleSMCPDRC  <class AppleSMCPDRC, id 0x100000306, registered, matched, active, busy 0 (0 ms), retain 5$
        | | | +-o P0P2@1  <class IOPCIDevice, id 0x100000197, registered, matched, active, busy 0 (203 ms), retain 13>
        | | | | +-o IOPCI2PCIBridge  <class IOPCI2PCIBridge, id 0x1000001f5, registered, matched, active, busy 0 (198 ms), $
        | | | |   +-o GFX0@0  <class IOPCIDevice, id 0x100000198, registered, matched, active, busy 0 (109 ms), retain 27>
        | | | |   | +-o NVDAHal  <class IOService, id 0x10000032b, registered, matched, active, busy 0 (4 ms), retain 6>
        | | | |   | +-o NVDAgl  <class IOService, id 0x10000032c, registered, matched, active, busy 0 (4 ms), retain 6>
        | | | |   | +-o NVDA,Display-A@0  <class IONDRVDevice, id 0x10000032f, registered, matched, active, busy 0 (47 ms),$
        | | | |   | | +-o NVDA  <class NVDA, id 0x10000033d, registered, matched, active, busy 0 (40 ms), retain 16>
        | | | |   | |   +-o AppleMCCSControlModule  <class AppleMCCSControlModule, id 0x100000341, registered, matched, act$
        | | | |   | |   | +-o AppleMCCSParameterHandler  <class AppleMCCSParameterHandler, id 0x100000343, registered, matc$
        | | | |   | |   +-o AppleUpstreamUserClientDriver  <class AppleUpstreamUserClientDriver, id 0x100000342, registered$
        | | | |   | |   +-o AGPM  <class AGPM, id 0x100000375, registered, matched, active, busy 0 (2 ms), retain 8>
        | | | |   | |   +-o AppleGraphicsControlBacklightNub  <class AppleGraphicsControlBacklightNub, id 0x10000038b, !reg$
        | | | |   | |   +-o gpu-sensor  <class IOService, id 0x1000003b3, registered, matched, active, busy 0 (23 ms), reta$
        | | | |   | |   +-o IOFramebufferI2CInterface  <class IOFramebufferI2CInterface, id 0x1000003b6, registered, matche$
        | | | |   | |   +-o IOFramebufferSharedUserClient  <class IOFramebufferSharedUserClient, id 0x1000003eb, !registere$
        | | | |   | |   +-o IOFramebufferUserClient  <class IOFramebufferUserClient, id 0x100002ce4, !registered, !matched,$
        | | | |   | +-o NVKernel  <class NVKernel, id 0x100000336, registered, matched, active, busy 0 (0 ms), retain 19>
        | | | |   | | +-o NV2DContextTesla  <class NV2DContextTesla, id 0x100002ce9, !registered, !matched, active, busy 0,$
        | | | |   | | +-o NV2DContextTesla  <class NV2DContextTesla, id 0x100002cea, !registered, !matched, active, busy 0,$
        | | | |   | | +-o NV2DContextTesla  <class NV2DContextTesla, id 0x100002ceb, !registered, !matched, active, busy 0,$
        | | | |   | | +-o NV2DContextTesla  <class NV2DContextTesla, id 0x100002cec, !registered, !matched, active, busy 0,$
        | | | |   | | +-o nvDeviceTesla  <class nvDeviceTesla, id 0x100002cf2, !registered, !matched, active, busy 0, retai$
        | | | |   | | +-o nvFermiGLContextTesla  <class nvFermiGLContextTesla, id 0x100002cf4, !registered, !matched, activ$
        | | | |   | | +-o nvDeviceTesla  <class nvDeviceTesla, id 0x100002d47, !registered, !matched, active, busy 0, retai$
        | | | |   | | +-o nvFermiGLContextTesla  <class nvFermiGLContextTesla, id 0x100002d49, !registered, !matched, activ$
        | | | |   | | +-o nvFermiGLContextTesla  <class nvFermiGLContextTesla, id 0x100002d4b, !registered, !matched, activ$
        | | | |   | | +-o nvDeviceTesla  <class nvDeviceTesla, id 0x100002d60, !registered, !matched, active, busy 0, retai$
        | | | |   | | +-o nvFermiGLContextTesla  <class nvFermiGLContextTesla, id 0x100002d62, !registered, !matched, activ$
        | | | |   | | +-o nvFermiGLContextTesla  <class nvFermiGLContextTesla, id 0x100002d64, !registered, !matched, activ$
        | | | |   | | +-o nvFermiGLContextTesla  <class nvFermiGLContextTesla, id 0x100002d6c, !registered, !matched, activ$
        | | | |   | | +-o nvFermiGLContextTesla  <class nvFermiGLContextTesla, id 0x100002d6f, !registered, !matched, activ$
        | | | |   | +-o NVDA,Display-B@1  <class IONDRVDevice, id 0x100000330, registered, matched, active, busy 0 (1 ms), $
        | | | |   | | +-o NVDA  <class NVDA, id 0x100000345, registered, matched, active, busy 0 (1 ms), retain 12>
        | | | |   | |   +-o AppleMCCSControlModule  <class AppleMCCSControlModule, id 0x100000349, registered, matched, act$
        | | | |   | |   | +-o AppleMCCSParameterHandler  <class AppleMCCSParameterHandler, id 0x10000034c, registered, matc$
        | | | |   | |   +-o AppleUpstreamUserClientDriver  <class AppleUpstreamUserClientDriver, id 0x10000034a, registered$
        | | | |   | |   +-o IOFramebufferI2CInterface  <class IOFramebufferI2CInterface, id 0x1000003bb, registered, matche$
        | | | |   | |   +-o IOFramebufferUserClient  <class IOFramebufferUserClient, id 0x100002ce5, !registered, !matched,$
        | | | |   | +-o NVDA,Display-C@2  <class IONDRVDevice, id 0x100000331, registered, matched, active, busy 0 (6 ms), $
        | | | |   | | +-o NVDA  <class NVDA, id 0x10000034e, registered, matched, active, busy 0 (1 ms), retain 12>
        | | | |   | |   +-o AppleMCCSControlModule  <class AppleMCCSControlModule, id 0x100000351, registered, matched, act$
        | | | |   | |   | +-o AppleMCCSParameterHandler  <class AppleMCCSParameterHandler, id 0x100000354, registered, matc$
        | | | |   | |   +-o AppleUpstreamUserClientDriver  <class AppleUpstreamUserClientDriver, id 0x100000352, registered$
        | | | |   | |   +-o IOFramebufferI2CInterface  <class IOFramebufferI2CInterface, id 0x1000003bd, registered, matche$
        | | | |   | |   +-o IOFramebufferUserClient  <class IOFramebufferUserClient, id 0x100002ce6, !registered, !matched,$
        | | | |   | +-o NVDA,Display-D@3  <class IONDRVDevice, id 0x100000332, registered, matched, active, busy 0 (2 ms), $
        | | | |   | | +-o NVDA  <class NVDA, id 0x100000356, registered, matched, active, busy 0 (0 ms), retain 12>
        | | | |   | |   +-o AppleMCCSControlModule  <class AppleMCCSControlModule, id 0x100000359, registered, matched, act$
        | | | |   | |   | +-o AppleMCCSParameterHandler  <class AppleMCCSParameterHandler, id 0x10000035b, registered, matc$
        | | | |   | |   +-o AppleUpstreamUserClientDriver  <class AppleUpstreamUserClientDriver, id 0x10000035a, registered$
        | | | |   | |   +-o IOFramebufferI2CInterface  <class IOFramebufferI2CInterface, id 0x1000003be, registered, matche$
        | | | |   | |   +-o IOFramebufferUserClient  <class IOFramebufferUserClient, id 0x100002ce7, !registered, !matched,$
        | | | |   | +-o NVDAinitgl  <class IOService, id 0x1000003b4, registered, matched, active, busy 0 (0 ms), retain 6>
        | | | |   +-o HDAU@0,1  <class IOPCIDevice, id 0x10000019a, registered, matched, active, busy 0 (159 ms), retain 12$
        | | | |     +-o AppleHDAController@0,1  <class AppleHDAController, id 0x100000307, registered, matched, active, bus$
        | | | |       +-o IOHDACodecDevice@0,1,0  <class IOHDACodecDevice, id 0x100000366, registered, matched, active, bus$
        | | | |         +-o IOHDACodecDriver  <class IOHDACodecDriver, id 0x100000368, !registered, !matched, active, busy $
        | | | |           +-o IOHDACodecFunction@0,1,0,1  <class IOHDACodecFunction, id 0x100000369, registered, matched, a$
        | | | |             +-o AppleHDACodecGeneric  <class AppleHDACodecGeneric, id 0x10000036a, registered, matched, act$
        | | | |               +-o AppleHDADriver  <class AppleHDADriver, id 0x10000036e, registered, matched, active, busy $
        | | | +-o PEG1@1,1  <class IOPCIDevice, id 0x10000019b, registered, matched, active, busy 0 (1133 ms), retain 12>
        | | | | +-o IOPCI2PCIBridge  <class IOPCI2PCIBridge, id 0x1000001f2, registered, matched, active, busy 0 (1129 ms),$
        | | | |   +-o UPSB@0  <class IOPCIDevice, id 0x10000019c, registered, matched, active, busy 0 (1129 ms), retain 16>
        | | | |     +-o IOPCI2PCIBridge  <class IOPCI2PCIBridge, id 0x100000205, registered, matched, active, busy 0 (1122 $
        | | | |       +-o DSB0@0  <class IOPCIDevice, id 0x10000019d, registered, matched, active, busy 0 (1122 ms), retain$
        | | | |       | +-o IOPCI2PCIBridge  <class IOPCI2PCIBridge, id 0x10000022b, registered, matched, active, busy 0 (1$
        | | | |       |   +-o NHI0@0  <class IOPCIDevice, id 0x10000019e, registered, matched, active, busy 0 (1111 ms), re$
        | | | |       |     +-o AppleThunderboltHAL  <class AppleThunderboltHAL, id 0x100000241, registered, matched, activ$
        | | | |       |       +-o AppleThunderboltNHIType1  <class AppleThunderboltNHIType1, id 0x10000024e, registered, ma$
        | | | |       |         +-o IOThunderboltController  <class IOThunderboltController, id 0x10000024f, registered, ma$
        | | | |       |           +-o IOThunderboltLocalNode  <class IOThunderboltLocalNode, id 0x100000252, registered, ma$
        | | | |       |           +-o IOThunderboltPort@6  <class IOThunderboltPort, id 0x100000255, registered, matched, a$
        | | | |       |             +-o IOThunderboltSwitchType1  <class IOThunderboltSwitchType1, id 0x100000257, register$
        | | | |       |               +-o IOThunderboltPort@1  <class IOThunderboltPort, id 0x10000029a, registered, matche$
        | | | |       |               +-o IOThunderboltPort@2  <class IOThunderboltPort, id 0x10000029b, registered, matche$
        | | | |       |               +-o IOThunderboltPort@7  <class IOThunderboltPort, id 0x10000029c, registered, matche$
        | | | |       |               | +-o AppleThunderboltPCIDownAdapter  <class AppleThunderboltPCIDownAdapter, id 0x100$
        | | | |       |               +-o IOThunderboltPort@8  <class IOThunderboltPort, id 0x10000029d, registered, matche$
        | | | |       |               | +-o AppleThunderboltPCIDownAdapter  <class AppleThunderboltPCIDownAdapter, id 0x100$
        | | | |       |               +-o IOThunderboltPort@9  <class IOThunderboltPort, id 0x10000029e, registered, matche$
        | | | |       |               | +-o AppleThunderboltPCIDownAdapter  <class AppleThunderboltPCIDownAdapter, id 0x100$
        | | | |       |               +-o IOThunderboltPort@A  <class IOThunderboltPort, id 0x10000029f, registered, matche$
        | | | |       |               | +-o AppleThunderboltPCIDownAdapter  <class AppleThunderboltPCIDownAdapter, id 0x100$
        | | | |       |               +-o IOThunderboltPort@C  <class IOThunderboltPort, id 0x1000002a0, registered, matche$
        | | | |       |               | +-o AppleThunderboltDPInAdapter  <class AppleThunderboltDPInAdapter, id 0x1000002aa$
        | | | |       |               +-o IOThunderboltPort@D  <class IOThunderboltPort, id 0x1000002a1, registered, matche$
        | | | |       |                 +-o AppleThunderboltDPInAdapter  <class AppleThunderboltDPInAdapter, id 0x1000002ab$
        | | | |       +-o DSB1@3  <class IOPCIDevice, id 0x10000019f, registered, matched, active, busy 0 (10 ms), retain 1$
        | | | |       | +-o IOPCI2PCIBridge  <class IOPCI2PCIBridge, id 0x100000236, registered, matched, active, busy 0 (0$
        | | | |       +-o DSB2@4  <class IOPCIDevice, id 0x1000001a0, registered, matched, active, busy 0 (8 ms), retain 12$
        | | | |       | +-o IOPCI2PCIBridge  <class IOPCI2PCIBridge, id 0x100000228, registered, matched, active, busy 0 (0$
        | | | |       +-o DSB3@5  <class IOPCIDevice, id 0x1000001a2, registered, matched, active, busy 0 (8 ms), retain 12$
        | | | |       | +-o IOPCI2PCIBridge  <class IOPCI2PCIBridge, id 0x100000231, registered, matched, active, busy 0 (0$
        | | | |       +-o DSB4@6  <class IOPCIDevice, id 0x1000001a4, registered, matched, active, busy 0 (7 ms), retain 11$
        | | | |         +-o IOPCI2PCIBridge  <class IOPCI2PCIBridge, id 0x10000022f, registered, matched, active, busy 0 (0$
        | | | +-o IGPU@2  <class IOPCIDevice, id 0x1000001a5, registered, matched, active, busy 0 (1903 ms), retain 22>
        | | | | +-o AppleIntelCapriController  <class AppleIntelCapriController, id 0x100000326, registered, matched, activ$
        | | | | | +-o AppleMEClientController  <class AppleMEClientController, id 0x100000339, registered, matched, active,$
        | | | | +-o AppleIntelFramebuffer@0  <class AppleIntelFramebuffer, id 0x100000334, registered, matched, active, bus$
        | | | | | +-o AppleMCCSControlModule  <class AppleMCCSControlModule, id 0x10000033b, registered, matched, active, b$
        | | | | | | +-o AppleMCCSParameterHandler  <class AppleMCCSParameterHandler, id 0x10000033f, registered, matched, a$
        | | | | | +-o AppleUpstreamUserClientDriver  <class AppleUpstreamUserClientDriver, id 0x10000033c, registered, matc$
        | | | | | +-o AGPM  <class AGPM, id 0x100000374, registered, matched, active, busy 0 (1339 ms), retain 8>
        | | | | | +-o AppleGraphicsControlBacklightNub  <class AppleGraphicsControlBacklightNub, id 0x10000038c, !registere$
        | | | | | +-o IOFramebufferI2CInterface  <class IOFramebufferI2CInterface, id 0x1000003ae, registered, matched, act$
        | | | | | +-o IOFramebufferSharedUserClient  <class IOFramebufferSharedUserClient, id 0x1000003ec, !registered, !ma$
        | | | | | +-o display0  <class IODisplayConnect, id 0x100002774, registered, matched, active, busy 0 (0 ms), retain$
        | | | | | | +-o AppleBacklightDisplay  <class AppleBacklightDisplay, id 0x100002775, registered, matched, active, b$
        | | | | | +-o IOFramebufferUserClient  <class IOFramebufferUserClient, id 0x100002ce3, !registered, !matched, activ$
        | | | | +-o IntelAccelerator  <class IntelAccelerator, id 0x100000328, registered, matched, active, busy 0 (0 ms), $
        | | | |   +-o IGAccel2DContext  <class IGAccel2DContext, id 0x100002ce8, !registered, !matched, active, busy 0, ret$
        | | | |   +-o IGAccelDevice  <class IGAccelDevice, id 0x100002cf1, !registered, !matched, active, busy 0, retain 6>
        | | | |   +-o IOAccelSharedUserClient  <class IOAccelSharedUserClient, id 0x100002cf3, !registered, !matched, activ$
        | | | |   +-o IGAccelGLContext  <class IGAccelGLContext, id 0x100002cf5, !registered, !matched, active, busy 0, ret$
        | | | |   +-o IGAccelSurface  <class IGAccelSurface, id 0x100002d00, !registered, !matched, active, busy 0, retain $
        | | | |   +-o IGAccelSurface  <class IGAccelSurface, id 0x100002d01, !registered, !matched, active, busy 0, retain $
        | | | |   +-o IGAccelDevice  <class IGAccelDevice, id 0x100002d16, !registered, !matched, active, busy 0, retain 6>
        | | | |   +-o IGAccelSurface  <class IGAccelSurface, id 0x100002d2e, !registered, !matched, active, busy 0, retain $
        | | | |   +-o IGAccelSurface  <class IGAccelSurface, id 0x100002d41, !registered, !matched, active, busy 0, retain $
        | | | |   +-o IGAccelDevice  <class IGAccelDevice, id 0x100002d45, !registered, !matched, active, busy 0, retain 6>
        | | | |   +-o IOAccelSharedUserClient  <class IOAccelSharedUserClient, id 0x100002d46, !registered, !matched, activ$
        | | | |   +-o IGAccelGLContext  <class IGAccelGLContext, id 0x100002d48, !registered, !matched, active, busy 0, ret$
        | | | |   +-o IGAccelGLContext  <class IGAccelGLContext, id 0x100002d4a, !registered, !matched, active, busy 0, ret$
        | | | |   +-o IGAccelSurface  <class IGAccelSurface, id 0x100002d4d, !registered, !matched, active, busy 0, retain $
        | | | |   +-o IGAccelDevice  <class IGAccelDevice, id 0x100002d5e, !registered, !matched, active, busy 0, retain 6>
        | | | |   +-o IOAccelSharedUserClient  <class IOAccelSharedUserClient, id 0x100002d5f, !registered, !matched, activ$
        | | | |   +-o IGAccelGLContext  <class IGAccelGLContext, id 0x100002d61, !registered, !matched, active, busy 0, ret$
        | | | |   +-o IGAccelGLContext  <class IGAccelGLContext, id 0x100002d63, !registered, !matched, active, busy 0, ret$
        | | | |   +-o IGAccelSurface  <class IGAccelSurface, id 0x100002d65, !registered, !matched, active, busy 0, retain $
        | | | |   +-o IGAccelGLContext  <class IGAccelGLContext, id 0x100002d6d, !registered, !matched, active, busy 0, ret$
        | | | |   +-o IGAccelGLContext  <class IGAccelGLContext, id 0x100002d70, !registered, !matched, active, busy 0, ret$
        | | | +-o XHC1@14  <class IOPCIDevice, id 0x1000001cf, registered, matched, active, busy 0 (29 ms), retain 12>
        | | | | +-o AppleUSBXHCI  <class AppleUSBXHCI, id 0x100000200, registered, matched, active, busy 0 (21 ms), retain $
        | | | |   +-o XHCI Root Hub SS Simulation@14  <class IOUSBRootHubDevice, id 0x100000204, registered, matched, activ$
        | | | |   | +-o AppleUSBHub  <class AppleUSBHub, id 0x10000023e, registered, matched, active, busy 0 (0 ms), retain$
        | | | |   | +-o IOUSBInterface@0  <class IOUSBInterface, id 0x100000240, !registered, !matched, active, busy 0, ret$
        | | | |   +-o XHCI Root Hub USB 2.0 Simulation@14  <class IOUSBRootHubDevice, id 0x100000243, registered, matched, $
        | | | |     +-o AppleUSBHub  <class AppleUSBHub, id 0x10000025a, registered, matched, active, busy 0 (0 ms), retain$
        | | | |     +-o IOUSBInterface@0  <class IOUSBInterface, id 0x10000025c, !registered, !matched, active, busy 0, ret$
        | | | +-o pci8086,1e3a@16  <class IOPCIDevice, id 0x1000001e6, registered, matched, active, busy 0 (27 ms), retain $
        | | | | +-o AppleIntelMEIDriver  <class AppleIntelMEIDriver, id 0x100000304, registered, matched, active, busy 0 (0$
        | | | +-o EHC2@1A  <class IOPCIDevice, id 0x1000001c9, registered, matched, active, busy 0 (121 ms), retain 12>
        | | | | +-o AppleUSBEHCI  <class AppleUSBEHCI, id 0x100000202, registered, matched, active, busy 0 (106 ms), retain$
        | | | |   +-o EHCI Root Hub Simulation@1A  <class IOUSBRootHubDevice, id 0x100000220, registered, matched, active, $
        | | | |   | +-o AppleUSBHub  <class AppleUSBHub, id 0x100000245, registered, matched, active, busy 0 (0 ms), retain$
        | | | |   | +-o IOUSBInterface@0  <class IOUSBInterface, id 0x100000247, !registered, !matched, active, busy 0, ret$
        | | | |   +-o HubDevice@1a100000  <class IOUSBHubDevice, id 0x100000271, registered, matched, active, busy 0 (4 ms)$
        | | | |   | +-o AppleUSBHub  <class AppleUSBHub, id 0x100000273, registered, matched, active, busy 0 (0 ms), retain$
        | | | |   | +-o IOUSBInterface@0  <class IOUSBInterface, id 0x100000275, !registered, !matched, active, busy 0, ret$
        | | | |   +-o FaceTime HD Camera (Built-in)@1a110000  <class IOUSBDevice, id 0x10000028b, registered, matched, acti$
        | | | |     +-o IOUSBCompositeDriver  <class IOUSBCompositeDriver, id 0x10000028e, !registered, !matched, active, b$
        | | | |     +-o FaceTime HD Camera (Built-in)@0  <class IOUSBInterface, id 0x10000028f, registered, matched, active$
        | | | |     +-o IOUSBInterface@1  <class IOUSBInterface, id 0x100000290, registered, matched, active, busy 0 (16 ms$
        | | | |     +-o IOUSBInterface@2  <class IOUSBInterface, id 0x100000291, registered, matched, active, busy 0 (6 ms)$
        | | | +-o HDEF@1B  <class IOPCIDevice, id 0x1000001b7, registered, matched, active, busy 0 (300 ms), retain 12>
        | | | | +-o AppleHDAController@1B  <class AppleHDAController, id 0x100000314, registered, matched, active, busy 0 ($
        | | | |   +-o IOHDACodecDevice@1B,0  <class IOHDACodecDevice, id 0x10000033a, registered, matched, active, busy 0 ($
        | | | |     +-o IOHDACodecDriver  <class IOHDACodecDriver, id 0x100000348, !registered, !matched, active, busy 0 (2$
        | | | |       +-o IOHDACodecFunction@1B,0,1  <class IOHDACodecFunction, id 0x10000034b, registered, matched, active$
        | | | |         +-o AppleHDACodecGeneric  <class AppleHDACodecGeneric, id 0x10000034d, registered, matched, active,$
        | | | |           +-o AppleHDADriver  <class AppleHDADriver, id 0x10000035e, registered, matched, active, busy 0 (2$
        | | | |             +-o AppleHDAEngineInput@1B,0,1,0  <class AppleHDAEngineInput, id 0x100000381, registered, match$
        | | | |             | +-o AppleHDAStream  <class AppleHDAStream, id 0x100000382, registered, matched, active, busy $
        | | | |             | +-o IOAudioSelectorControl  <class IOAudioSelectorControl, id 0x100000383, !registered, !matc$
        | | | |             | | +-o IOAudioControlUserClient  <class IOAudioControlUserClient, id 0x10000043b, !registered,$
        | | | |             | +-o IOAudioLevelControl  <class IOAudioLevelControl, id 0x100000384, !registered, !matched, a$
        | | | |             | | +-o IOAudioControlUserClient  <class IOAudioControlUserClient, id 0x10000043c, !registered,$
        | | | |             | +-o IOAudioToggleControl  <class IOAudioToggleControl, id 0x100000385, !registered, !matched,$
        | | | |             | | +-o IOAudioControlUserClient  <class IOAudioControlUserClient, id 0x10000043d, !registered,$
        | | | |             | +-o IOAudioToggleControl  <class IOAudioToggleControl, id 0x100000386, !registered, !matched,$
        | | | |             | | +-o IOAudioControlUserClient  <class IOAudioControlUserClient, id 0x10000043e, !registered,$
        | | | |             | +-o IOAudioEngineUserClient  <class IOAudioEngineUserClient, id 0x100000439, !registered, !ma$
        | | | |             | +-o IOAudioEngineUserClient  <class IOAudioEngineUserClient, id 0x100000444, !registered, !ma$
        | | | |             | +-o IOAudioEngineUserClient  <class IOAudioEngineUserClient, id 0x100002d22, !registered, !ma$
        | | | |             | +-o IOAudioEngineUserClient  <class IOAudioEngineUserClient, id 0x100002d35, !registered, !ma$
        | | | |             | +-o IOAudioEngineUserClient  <class IOAudioEngineUserClient, id 0x100002d6a, !registered, !ma$
        | | | |             | +-o IOAudioToggleControl  <class IOAudioToggleControl, id 0x100002def, !registered, !matched,$
        | | | |             |   +-o IOAudioControlUserClient  <class IOAudioControlUserClient, id 0x100002df0, !registered,$
        | | | |             |   +-o IOAudioControlUserClient  <class IOAudioControlUserClient, id 0x100002df1, !registered,$
        | | | |             |   +-o IOAudioControlUserClient  <class IOAudioControlUserClient, id 0x100002df2, !registered,$
        | | | |             |   +-o IOAudioControlUserClient  <class IOAudioControlUserClient, id 0x100002df3, !registered,$
        | | | |             |   +-o IOAudioControlUserClient  <class IOAudioControlUserClient, id 0x100002df4, !registered,$
        | | | |             +-o AppleHDAEngineInput@1B,0,1,1  <class AppleHDAEngineInput, id 0x100000387, registered, match$
        | | | |             | +-o AppleHDAStream  <class AppleHDAStream, id 0x100000389, registered, matched, active, busy $
        | | | |             | +-o IOAudioSelectorControl  <class IOAudioSelectorControl, id 0x100000393, !registered, !matc$
        | | | |             | | +-o IOAudioControlUserClient  <class IOAudioControlUserClient, id 0x100000431, !registered,$
        | | | |             | +-o IOAudioLevelControl  <class IOAudioLevelControl, id 0x100000394, !registered, !matched, a$
        | | | |             | | +-o IOAudioControlUserClient  <class IOAudioControlUserClient, id 0x100000432, !registered,$
        | | | |             | +-o IOAudioLevelControl  <class IOAudioLevelControl, id 0x100000395, !registered, !matched, a$
        | | | |             | | +-o IOAudioControlUserClient  <class IOAudioControlUserClient, id 0x100000433, !registered,$
        | | | |             | +-o IOAudioToggleControl  <class IOAudioToggleControl, id 0x100000396, !registered, !matched,$
        | | | |             | | +-o IOAudioControlUserClient  <class IOAudioControlUserClient, id 0x100000434, !registered,$
        | | | |             | +-o IOAudioToggleControl  <class IOAudioToggleControl, id 0x100000397, !registered, !matched,$
        | | | |             | | +-o IOAudioControlUserClient  <class IOAudioControlUserClient, id 0x100000435, !registered,$
        | | | |             | +-o IOAudioToggleControl  <class IOAudioToggleControl, id 0x100000398, !registered, !matched,$
        | | | |             | | +-o IOAudioControlUserClient  <class IOAudioControlUserClient, id 0x100000436, !registered,$
        | | | |             | +-o IOAudioSelectorControl  <class IOAudioSelectorControl, id 0x100000399, !registered, !matc$
        | | | |             | | +-o IOAudioControlUserClient  <class IOAudioControlUserClient, id 0x100000437, !registered,$
        | | | |             | | +-o IOAudioControlUserClient  <class IOAudioControlUserClient, id 0x100002df5, !registered,$
        | | | |             | | +-o IOAudioControlUserClient  <class IOAudioControlUserClient, id 0x100002df6, !registered,$
        | | | |             | | +-o IOAudioControlUserClient  <class IOAudioControlUserClient, id 0x100002df7, !registered,$
        | | | |             | | +-o IOAudioControlUserClient  <class IOAudioControlUserClient, id 0x100002df8, !registered,$
        | | | |             | +-o IOAudioToggleControl  <class IOAudioToggleControl, id 0x10000039b, !registered, !matched,$
        | | | |             | | +-o IOAudioControlUserClient  <class IOAudioControlUserClient, id 0x100000438, !registered,$
        | | | |             | +-

  • Why do we reuire multiple aliases

    why do we reuire multiple aliases. We can have only one system with one alias.  we should directly use the system name. If we are using aliases, then there must be some advantage of it....Please correct me if I am thinking in wrong direction.

    There is no right on wrong answer here - you use as many (or as few) as you need.
    If you consider business packages for example - lets assume you use Self Service and some other business package from SAP.  Its likely that the provided iviews may use different alias names to access systems (SAP_R3_Financials, SAP_R3_HumanResources etc etc).  These can be the SAME system from a portal perspective (hence 2 aliases can reference a single system conenctor).
    Aliases in no way restrict (or otherwise) the number of users who can access a system.
    Haydn

  • Is there any way to create multiple users in a single shot in oracle db

    Can Any one tell me, is there any way to create multiple users in a single shot in oracle database.

    Hello Nunhum,
    I guess this was not my question.. This is not what I m asking.. I know there is not a single sql statement in oracle ,which could create multiusers alike UNIX/LINUX(OS LEVEL), Whatever you have written..is simple creating them one by one.
    What I am expecting is to have PL/SQL statement which could help us in this regard.

  • Why the system create HU that already exists  in table VEKP when I use BAPI_HU_CREATE?

    Hi All,
    When I use the BAPI_HU_CREATE  to create HU, the system give me a HU and it inserts a line in Table VEKP, however when I search in table VEKP  with field HU EXIDV, I find  two entries with the same HU, one of them has VPOBJ 01 and the other has VPOBJ 12, So when I execute  transaction LM46  the system shows “The system could not find transfer order for execution” because the system search in table VEKP it find the first line with VPOBJKEY = delivery  and STATUS = 0020, however those delivery is not assigned to transfer order that I want to confirm transfer order.
    Why the system create HU that already exists  in table VEKP when I use BAPI_HU_CREATE?
    Thank you!
    Best regards

    Do you want to say that you got 2 HU from BAPI_HU_CREATE?
    I think you only got the one which has VPOBJ = 12 Non-Assigned Handling Unit
    which is exact what the BAPI is used for, see the docu in SE37. Didn't you yourself add this EXIDV in the IDoc?
    VPOBJ = 01 Outbound Delivery
    If you want to pack the Outbound delivery then you should use BAPI_HU_PACK.

  • Create multiple sales orders from single service notification?

    Is it possible to create multiple sales orders from a single notification (IW51)? 
    We currently create sales orders directly within transaction IW51 (Create Service Notification).  We kick off the sales order creation by pressing the "SALES ORD." button in the notification screen.  We're now interested in creating a 2nd Sales Order which would tie directly to the same Service Notification.  This is so that we can have the second order assigned to a different account assignment WBS (there are two different parties doing work on the service notification).
    I assume you would have to go to VA01 to create the Sales Order, but am not sure how to tie it directly to the service notification from here.  I treied to do a create with reference, but there is no ability to create with reference to a service notification.
    Do I have to create a second service notification for the 2nd Sales Order for this to work?  I want to avoid doing this if at all possible.
    I'm running SAP R/3 Enterprise
    Thanks for your help!

    Hi,
    go to vtaa- copy controls for sales document to sales document.
    select your combination of order and quotation go to item level. There select value 0(zero) in field positive/negative negative.
    No need to change update document flow.
    After setting zero in copy control that be told on above. create order with respective to the quotation.
    After saving the order.
    go to document flow to see the status in between quotation and order.
    If you placed setting right, then u certainly observe for quotation status will be open. so you can create no. of sales order with respect to that quotation..
    Have a good day..

  • How to create Multiple Address for a single customer

    Respected Members,
    In tcode Xd01 we create on customer but there we can maintain only one address but sometimes a scenario can be that single customer can have different address .
    How to do that.Any exit is available to create multiple address with creation of single customer.
    This provision is given while creating a Business Partner.Tcode is BP .In this Address Overview tab is there and you maintain multiple address to single Busines partner.
    Same thing can we do for the customer.
    Any solutions or suggestions,please give me your support.
    Thanks

    Hello Manish,
    Unfortunately Customers have only one address. However you can use contact persons to store different addresses, or (in the Sales view) you can assign other partner functions with different addresses (e.g. one customer acting as the Sold-to partner may have different Ship-to partners).
    If these options do not meet your requirements, you could extend the customer master data with your own functionality and enhance transaction XD01 with your own screens for holding alternate addresses.
    Regards,
    John.

  • How to create multiple rows in a child table from the multi select Lov

    Hi
    We have Departments and EmployDept and Persons tables and each employee can associate multiple departments and vice versa.While creating a Department page there should be a Multi Select LOV(values from Persons table) with search option for the Persons.From the search panel we can select multiple persons for that department.Suppose we have selected 5 persons and click on submit, then it should create 5 rows in the EmployDept table for 5 persons with that department id.
    Any inputs on how to implement this scenario please..

    Maybe you can get some ideas from here -
    http://adfdeveloper.blogspot.com/2011/07/simple-implementation-of-af.html

  • Creating multiple instances for a single file in B2B

    Hi,
    I have a requirement to read the camt.053 file from the remote partner using Oracle B2B and send the file to oracle AIA and insert the data in the ERP database tables. I am able to read the file successfully through B2B using listening channel and send the data to AIA and insert the data in ERP tables but, if there is any error occured while inserting the data in the ERP tables it is creating multiple instances(6 message count) for the same file in B2B reports. where as it is creating only one entry in reports in case of successful insertion. I have not given any retry count in listening channel nor in the database adapter in SOA/AIA composite. I am confused from where B2B is retrying the message ? Do i need to set any system properties? Could you please guide me to resolve this issue?
    Regards,
    Nishanth.

    App message delivery is not retried in B2B, rather failed messages are delivered to the IP_IN_QUEUE. Please enable the logging for B2B engine in TRACE 32 mode and run a test to reproduce the behaviour. Post the log here or mail across to my id (in my profile).
    Regards,
    Anuj

  • How to create multiple new rows in ADF Table?

    Hello,
    being new to ADF Faces/BC I managed to display data in an ADF Table and create new entries using the "CreateInsert" operation (one at a time).
    Now, the next task is to create multiple new rows at the same time, set some default values and display the new rows in the ADF table. Then the user will enter additional data and commit the new rows.
    Where do I step in? In the EntitiyImpl? Can this be handled declaratively or do I have to implement custom method(s) in the AM?
    Thanks
    Gerald

    Hi John,
    I'm still getting the following error
    Error(94,144): method getValue() not found in class javax.faces.el.ValueBinding
    What should it be casted to?
    The code in backing bean is like this..
    package view.backing;
    //import com.test.model.TestAppModuleImpl;
    import javax.faces.component.html.HtmlForm;
    import javax.faces.component.html.HtmlPanelGroup;
    import javax.faces.context.FacesContext;
    import javax.faces.event.ActionEvent;
    //import javax.faces.event.FacesListener;
    //import oracle.adf.model.BindingContext;
    import oracle.adf.model.binding.DCBindingContainer;
    import oracle.adf.model.binding.DCIteratorBinding;
    import oracle.adf.view.faces.component.core.data.CoreColumn;
    import oracle.adf.view.faces.component.core.data.CoreTable;
    import oracle.adf.view.faces.component.core.input.CoreInputText;
    import oracle.adf.view.faces.component.core.nav.CoreCommandButton;
    import oracle.adf.view.faces.component.core.output.CoreMessages;
    import oracle.adf.view.faces.component.html.HtmlBody;
    import oracle.adf.view.faces.component.html.HtmlHead;
    import oracle.adf.view.faces.component.html.HtmlHtml;
    import oracle.jbo.ApplicationModule;
    import oracle.jbo.Row;
    import oracle.jbo.ViewObject;
    //import oracle.jbo.server.ViewObjectImpl;
    //import view.utils.EL;
    public class MultipleInsert1 {
    private HtmlHtml html1;
    private HtmlHead head1;
    private HtmlBody body1;
    private CoreMessages messages1;
    private HtmlForm form1;
    private CoreTable table1;
    private CoreColumn column1;
    private CoreInputText inputText1;
    private CoreColumn column2;
    private CoreInputText inputText2;
    private CoreCommandButton commandButton1;
    private HtmlPanelGroup panelGroup1;
    private CoreCommandButton commandButton2;
    public void setHtml1(HtmlHtml html1) {
    this.html1 = html1;
    public void createMultiRows(ActionEvent actionEvent) {
    DCBindingContainer dc = (DCBindingContainer) FacesContext.getCurrentInstance().getApplication().createValueBinding("#{bindings}").getValue();
    DCIteratorBinding iter = dc.findIteratorBinding("TestView1Iterator");
    ViewObject vo = iter.getViewObject();
    for (int i=1; i<=5; i++) {
    Row newRow = vo.createRow();
    newRow.setAttribute("Id", i);
    ApplicationModule am = vo.getApplicationModule();
    am.getTransaction().commit();
    vo.executeQuery();
    Do I need to import something else?
    Thanks,
    Shri.

  • Create multiple capture processes for same table depending on column value

    Hi,
    is it possible to create multiple realtime downstream capture processes to capture changes for the same table depending on column value?
    Prakash

    i found it - by using subset rules
    prakash

  • Extract Multiple Rows from a Single Table into a Single Row in a New Table

    I have a table in a database that contains contact data like name, address, phone number, etc.
    The folks who designed the database and wrote the application wrote it so that all contact records are placed in that table, regardless of contact type. In fact, the contacts table does not even have a column for "type" even though there are many
    different types of contacts present in that table.
    I am trying to write a mail merge style report in SRSS, that gets sent to a specific type of contact, based on criteria provided that must be obtained from another table, and that data is then used to get back to a specific set of contacts from the contacts
    table.
    The attached file directly below describes my problem and all related information in an extremely detailed way.
    SRSSMailMergeIssue.pdf
    Unless there is a way to make a SRSS Tablix point to two different data sets in SRSS, it looks like I have to combine multiple rows from the same table into a new table.
    If anyone can review the details in the attached pdf file and possibly point me in the direction I need to run to solve this probelm, I would greatly appreciate it.
    I also included a document (below) that shows the tables I reference in the probelm description.
    dbtables.pdf

    I found a solution.... and posted it below
    select
    dk.ucm_docketnumber [UCM DocketNumber],
    dk.ucm_docketid [UCM DocketID],
    vc.FirstName [Victim FirstName],
    vc.MiddleName [Victim MiddleName],
    vc.LastName [Victim LastName],
    vc.Suffix [Victim Suffix],
    vc.Address1_Line1 [Victim AddressLine1],
    vc.Address1_Line2 [Victim AddressLine2],
    vc.Address1_Line3 [Victim AddressLine3],
    vc.Address1_City [Victim City],
    vc.Address1_StateOrProvince [Victim StateProvince],
    vc.Address1_PostalCode [Victim Postalcode],
    oc.FirstName [Offender FirstName],
    oc.MiddleName [Offender MiddleName],
    oc.LastName [Offender LastName],
    oc.Suffix [Offender Suffix],
    oc.Address1_Line1 [Offender AddressLine1],
    oc.Address1_Line2 [Offender AddressLine2],
    oc.Address1_Line3 [Offender AddressLine3],
    oc.Address1_City [Offender City],
    oc.Address1_StateOrProvince [Offender StateProvince],
    oc.Address1_PostalCode [Offender Postalcode],
    pc.FirstName [Arresting Officer FirstName],
    pc.MiddleName [Arresting Officer MiddleName],
    pc.LastName [Arresting Officer LastName],
    pc.Address1_Line1 [Arresting Officer AddressLine1],
    pc.Address1_Line2 [Arresting Officer AddressLine2],
    pc.Address1_Line3 [Arresting Officer AddressLine3],
    pc.Address1_City [Arresting Officer City],
    pc.Address1_StateOrProvince [Arresting Officer StateProvince],
    pc.Address1_PostalCode [Arresting Officer Postalcode]
    FROM ucm_docket dk
    left outer join ucm_victim v on dk.ucm_docketid = v.ucm_docketnumber
    left outer join contact vc on vc.contactid = v.ucm_victimlookup
    left outer join ucm_offender o on o.ucm_offenderid = dk.ucm_offenderlookup
    left outer join contact oc on oc.contactid = o.ucm_individualid
    left outer join contact pc on pc.contactid = dk.ucm_ArrestingOfficerLookup
    WHERE (dk.ucm_docketnumber = @DocketNUM)

  • How to create 2 char infoobjects for single table

    Hi Friends,
                    Please help me  how to create two chacteristics infoobjects for a single table.... Thanx in advance

    Hi,
    If i understand your question right, you want one table (SID) to be shared between two info objects. It is possible if one info object uses the other info object as its reference.
    Create a reference info object.
    -Vikram

  • Why does iPhoto create multiples when importing pictures?

    OS X Yosemite 10.10.2
    iPhoto version 9.6
    I have a new MacBook and I am attempting to import pictures to iPhoto that were created by various devices - old digital cameras, scanners, iPhones.  The original images import without trouble, however iPhoto is creating an extra THREE pictures for each ONE that I import.  Please see the attached screenshot of my iPhoto after importing a few folders.  Take for example the Bowl for Kids folder - you will notice that the original folder has 20 pictures, and it is followed by an additional folder with 60 pictures.  The same situation is repeated for each folder.  The additional folders all share the same name - "d312a08daf7d..." and have EXACTLY three times as many pictures as the previous folder.  I have verified that the pictures contained within are indeed triplicates of the originals.
    Any assistance would be greatly appreciated.

    I did not import an existing iPhoto Library.
    Starting with a completely empty Photo Library, I navigate to File > Import to Library and select a single folder (Bowl for Kids).  This folder has 20 photos in it, however iPhoto imports 80 (20 originals and 60 multiples, as evidenced by the screenshot).  I then repeated the process for the other two folders.
    The photos shown in the screenshot were taken from various devices many years ago.  None of the above were taken on an iPhone.
    The photos reside on my MacBook hard drive under Users > Worgowan > Documents > Pictures and Videos.  I chose to place them here to keep them separate from the native Pictures folder.
    To answer an inevitable future question, here are some settings from my iPhoto Preferences.
    > iCloud > My Photo Stream (OFF)
    > iCloud > Photo Sharing (OFF)
    > Advanced > Importing: Copy Items to iPhoto Library (OFF)
    > Advanced > Edit Photos (In iPhoto)
    > Advanced > Use RAW when using external editor (OFF)
    > Advanced > Save edits as 16-bit TIFF files (OFF)
    > Advanced > Look up Places (NEVER)
    > Advanced > Include location information from published items (OFF)

  • Why is Mail  creating multiple trashes of an email while I'm composing it? +++++

    Hi Guys:
      Mail has been doing weird stuff since I upgraded to Maverick.  Today was a new one.
        I was composing and email to a friend and went to find an old related one. In doing a serch for it. I discoverd that the e:mail I was now composing was in the my trash folder more then a dozen times. I had not trashed it. There were multiple copies of other emails in the trash as well.  I emptied the trash folder completely and went back to composing the e:mail.  There were four more copies of that e:mail in the trash folder by the time I sent it.  It also shows in the sent folder only once though.
       I just went into my Gmail on there webpage to see if I was getting multiple trashes there as well and I discovered I am not getting all my mail.  There are three from yesterday.  They just came into my inbox as I was keying this in. Perhaps because I checked on line.  
    Drafts not deleting: Since upgrading to Maverick, many messages that were sent are being saved to drafts and I have to manualy delete them.
    Missing sent emails:  Emails as the one above are disappearing.  I know when and to whom I sent it. It isn't in any folder anywhere. This is not a first.
    Computer painfully slow and erratic since upgrading. Particularly with mail.
    Any one else seeing these issues?
    Better yet how do I solve them short of a sledge hammer? 
    I have gone back to useing Pages 09 as the new one *****. I don't think I can do that with mail without losing all of my stored emails etc.
    Pantheria

    I just posted this as a different question felt it should be included here as well seeing as it is another Mail issue..
    Hi Guys:
       Back again. After I posted the last question. I went back into mail.  It was real slow took 15mis to download a simple text couldn't figure out what was going on. I looked down at the activity window an it said recieving 480 of over 7thousand messages. ????? I had to force quite to shut it down. I don't have that many messages in my enitre Gmail account.  Seems to have stopped.
      What is going on with mail? What was beeing downloaded to my Mac Book?
    Is this just one more Maverik issue?
    I just downloaded Avast for Mac and am running a full systems scan. Just at the odd chance it might be a virus.
    Help, please.

Maybe you are looking for

  • Location of "any" packages in a local repository structure

    Hello, I have searched for an answer to this but have been unable to find one. I want to build a personal repo for some packages. I have read how to do this using repo-add but I am unclear on where architecture-independent packages should be stored.

  • Following Driver Update Epson CX6000 will not print

    I 'just' posted this on an answered post and now notice a difference, so I'll repost the corrected info here. I have a CX6000, Snow Leopard, and following the Apple update - no printing. I think I've tried most of the suggestions above with no luck.

  • Manually clean WSUS Data Base

    SBS2008 SP2 Current WSUS I forgot to do a regular cleanup of the data base. It is now 20 GB in size. When I do a options - cleanup and only check Unused and update revision, it runs for several hours and then gets a Database error. I Reset Server Nod

  • Using Adobe creative loud but I think my older version of PS is pirated

    Hello, i want to use Adobe creative  cloud, expecially Photoshop but now on my used comptuter i have all ready photshop CS4 (i'm not sur) but I think this version is pirated. If i buy adobe creative cloud, i can installing my good version of creative

  • HT4587 1st generation AirPort Express - unable to set up

    I have 1st generation AirPort Express but can't set it up again after a long time of not being used because it appears the new airport software is not compatible with the original AirPort Express - can anyone help please?