05 09 22

You might also like

Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 126

SQL*Plus: Release 11.2.0.2.

0 Production on Mon Sep 5 15:09:12 2022

Copyright (c) 1982, 2014, Oracle. All rights reserved.

SQL> conn hr/hr

Connected.

SQL> select first_name,department_id,salary from employees where (salary,department_id) in (select


min(salary),department_id from employees;

select first_name,department_id,salary from employees where (salary,department_id) in (select


min(salary),department_id from employees

ERROR at line 1:

ORA-00920: invalid relational operator

SQL> select first_name,department_id,salary from employees where (salary,department_id) in (select


min(salary),department_id from employees group by department_id);

FIRST_NAME DEPARTMENT_ID SALARY

-------------------- ------------- ----------

Luis 100 6900

Karen 30 2500

Neena 90 17000

Lex 90 17000

Pat 20 6000

Hermann 70 10000

William 110 8300

TJ 50 2100

Sundita 80 6100
Susan 40 6500

Diana 60 4200

FIRST_NAME DEPARTMENT_ID SALARY

-------------------- ------------- ----------

Jennifer 10 4400

12 rows selected.

SQL> select min(salary),department_id from employees;

select min(salary),department_id from employees

ERROR at line 1:

ORA-00937: not a single-group group function

SQL> select min(salary),department_id from employees group by department_id;

MIN(SALARY) DEPARTMENT_ID

----------- -------------

6900 100

2500 30

7000

17000 90

6000 20

10000 70

8300 110

2100 50

6100 80
6500 40

4200 60

MIN(SALARY) DEPARTMENT_ID

----------- -------------

4400 10

12 rows selected.

SQL> select department_id from (select distinct department_id from employees union select
department_id from departments);

DEPARTMENT_ID

-------------

10

20

30

40

50

60

70

80

90

100

110

DEPARTMENT_ID

-------------

120
130

140

150

160

170

180

190

200

210

220

DEPARTMENT_ID

-------------

230

240

250

260

270

28 rows selected.

SQL> select department_id from (select distinct department_id from employees minus select
department_id from departments);

DEPARTMENT_ID

-------------
SQL> select department_id from ( select department_id from departments minus select distinct
department_id from employees);

DEPARTMENT_ID

-------------

120

130

140

150

160

170

180

190

200

210

220

DEPARTMENT_ID

-------------

230

240

250

260

270

16 rows selected.

SQL> select department_id from ( select department_id from departments intersect select distinct
department_id from employees);
DEPARTMENT_ID

-------------

10

20

30

40

50

60

70

80

90

100

110

11 rows selected.

SQL> select department_id from (select distinct department_id from employees union all select
department_id from departments);

DEPARTMENT_ID

-------------

100

30

90

20

70

110
50

80

40

60

DEPARTMENT_ID

-------------

10

10

20

30

40

50

60

70

80

90

100

DEPARTMENT_ID

-------------

110

120

130

140

150

160

170

180
190

200

210

DEPARTMENT_ID

-------------

220

230

240

250

260

270

39 rows selected.

SQL> select department_id from employees;

DEPARTMENT_ID

-------------

90

90

90

60

60

60

60

60

100

100
100

DEPARTMENT_ID

-------------

100

100

100

30

30

30

30

30

30

50

50

DEPARTMENT_ID

-------------

50

50

50

50

50

50

50

50

50

50

50
DEPARTMENT_ID

-------------

50

50

50

50

50

50

50

50

50

50

50

DEPARTMENT_ID

-------------

50

80

80

80

80

80

80

80

80

80

80
DEPARTMENT_ID

-------------

80

80

80

80

80

80

80

80

80

80

80

DEPARTMENT_ID

-------------

80

80

80

80

80

80

80

80

80

80

80

DEPARTMENT_ID
-------------

80

80

50

50

50

50

50

50

50

50

DEPARTMENT_ID

-------------

50

50

50

50

50

50

50

50

50

50

50

DEPARTMENT_ID

-------------
50

10

20

20

40

70

110

110

107 rows selected.

SQL> select distinct department_id from departments;

DEPARTMENT_ID

-------------

10

20

30

40

50

60

70

80

90

100

110

DEPARTMENT_ID

-------------
120

130

140

150

160

170

180

190

200

210

220

DEPARTMENT_ID

-------------

230

240

250

260

270

27 rows selected.

SQL> select * from job_history where department_id = 101;

no rows selected

SQL> select * from job_history where employee_id = 101;

EMPLOYEE_ID START_DAT END_DATE JOB_ID DEPARTMENT_ID


----------- --------- --------- ---------- -------------

101 21-SEP-97 27-OCT-01 AC_ACCOUNT 110

101 28-OCT-01 15-MAR-05 AC_MGR 110

SQL> select last_name,job_id from employee where employee_id = 101;

select last_name,job_id from employee where employee_id = 101

ERROR at line 1:

ORA-00942: table or view does not exist

SQL> select last_name,job_id from employees where employee_id = 101;

LAST_NAME JOB_ID

------------------------- ----------

Kochhar AD_VP

SQL> select * from job_history;

EMPLOYEE_ID START_DAT END_DATE JOB_ID DEPARTMENT_ID

----------- --------- --------- ---------- -------------

102 13-JAN-01 24-JUL-06 IT_PROG 60

101 21-SEP-97 27-OCT-01 AC_ACCOUNT 110

101 28-OCT-01 15-MAR-05 AC_MGR 110

201 17-FEB-04 19-DEC-07 MK_REP 20

114 24-MAR-06 31-DEC-07 ST_CLERK 50

122 01-JAN-07 31-DEC-07 ST_CLERK 50

200 17-SEP-95 17-JUN-01 AD_ASST 90

176 24-MAR-06 31-DEC-06 SA_REP 80


176 01-JAN-07 31-DEC-07 SA_MAN 80

200 01-JUL-02 31-DEC-06 AC_ACCOUNT 90

10 rows selected.

SQL> select last_name,job_id from employees where employee_id = 101;

LAST_NAME JOB_ID

------------------------- ----------

Kochhar AD_VP

SQL> select e.last_name name,e.job_id id, j.job_title from employees e ,jobs j;

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

King AD_PRES President

Kochhar AD_VP President

De Haan AD_VP President

Hunold IT_PROG President

Ernst IT_PROG President

Austin IT_PROG President

Pataballa IT_PROG President

Lorentz IT_PROG President

Greenberg FI_MGR President

Faviet FI_ACCOUNT President

Chen FI_ACCOUNT President

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------


Sciarra FI_ACCOUNT President

Urman FI_ACCOUNT President

Popp FI_ACCOUNT President

Raphaely PU_MAN President

Khoo PU_CLERK President

Baida PU_CLERK President

Tobias PU_CLERK President

Himuro PU_CLERK President

Colmenares PU_CLERK President

Weiss ST_MAN President

Fripp ST_MAN President

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Kaufling ST_MAN President

Vollman ST_MAN President

Mourgos ST_MAN President

Nayer ST_CLERK President

Mikkilineni ST_CLERK President

Landry ST_CLERK President

Markle ST_CLERK President

Bissot ST_CLERK President

Atkinson ST_CLERK President

Marlow ST_CLERK President

Olson ST_CLERK President

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Mallin ST_CLERK President


Rogers ST_CLERK President

Gee ST_CLERK President

Philtanker ST_CLERK President

Ladwig ST_CLERK President

Stiles ST_CLERK President

Seo ST_CLERK President

Patel ST_CLERK President

Rajs ST_CLERK President

Davies ST_CLERK President

Matos ST_CLERK President

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Vargas ST_CLERK President

Russell SA_MAN President

Partners SA_MAN President

Errazuriz SA_MAN President

Cambrault SA_MAN President

Zlotkey SA_MAN President

Tucker SA_REP President

Bernstein SA_REP President

Hall SA_REP President

Olsen SA_REP President

Cambrault SA_REP President

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Tuvault SA_REP President

King SA_REP President


Sully SA_REP President

McEwen SA_REP President

Smith SA_REP President

Doran SA_REP President

Sewall SA_REP President

Vishney SA_REP President

Greene SA_REP President

Marvins SA_REP President

Lee SA_REP President

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Ande SA_REP President

Banda SA_REP President

Ozer SA_REP President

Bloom SA_REP President

Fox SA_REP President

Smith SA_REP President

Bates SA_REP President

Kumar SA_REP President

Abel SA_REP President

Hutton SA_REP President

Taylor SA_REP President

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Livingston SA_REP President

Grant SA_REP President

Johnson SA_REP President


Taylor SH_CLERK President

Fleaur SH_CLERK President

Sullivan SH_CLERK President

Geoni SH_CLERK President

Sarchand SH_CLERK President

Bull SH_CLERK President

Dellinger SH_CLERK President

Cabrio SH_CLERK President

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Chung SH_CLERK President

Dilly SH_CLERK President

Gates SH_CLERK President

Perkins SH_CLERK President

Bell SH_CLERK President

Everett SH_CLERK President

McCain SH_CLERK President

Jones SH_CLERK President

Walsh SH_CLERK President

Feeney SH_CLERK President

OConnell SH_CLERK President

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Grant SH_CLERK President

Whalen AD_ASST President

Hartstein MK_MAN President

Fay MK_REP President


Mavris HR_REP President

Baer PR_REP President

Higgins AC_MGR President

Gietz AC_ACCOUNT President

King AD_PRES Administration Vice President

Kochhar AD_VP Administration Vice President

De Haan AD_VP Administration Vice President

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Hunold IT_PROG Administration Vice President

Ernst IT_PROG Administration Vice President

Austin IT_PROG Administration Vice President

Pataballa IT_PROG Administration Vice President

Lorentz IT_PROG Administration Vice President

Greenberg FI_MGR Administration Vice President

Faviet FI_ACCOUNT Administration Vice President

Chen FI_ACCOUNT Administration Vice President

Sciarra FI_ACCOUNT Administration Vice President

Urman FI_ACCOUNT Administration Vice President

Popp FI_ACCOUNT Administration Vice President

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Raphaely PU_MAN Administration Vice President

Khoo PU_CLERK Administration Vice President

Baida PU_CLERK Administration Vice President

Tobias PU_CLERK Administration Vice President

Himuro PU_CLERK Administration Vice President


Colmenares PU_CLERK Administration Vice President

Weiss ST_MAN Administration Vice President

Fripp ST_MAN Administration Vice President

Kaufling ST_MAN Administration Vice President

Vollman ST_MAN Administration Vice President

Mourgos ST_MAN Administration Vice President

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Nayer ST_CLERK Administration Vice President

Mikkilineni ST_CLERK Administration Vice President

Landry ST_CLERK Administration Vice President

Markle ST_CLERK Administration Vice President

Bissot ST_CLERK Administration Vice President

Atkinson ST_CLERK Administration Vice President

Marlow ST_CLERK Administration Vice President

Olson ST_CLERK Administration Vice President

Mallin ST_CLERK Administration Vice President

Rogers ST_CLERK Administration Vice President

Gee ST_CLERK Administration Vice President

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Philtanker ST_CLERK Administration Vice President

Ladwig ST_CLERK Administration Vice President

Stiles ST_CLERK Administration Vice President

Seo ST_CLERK Administration Vice President

Patel ST_CLERK Administration Vice President

Rajs ST_CLERK Administration Vice President


Davies ST_CLERK Administration Vice President

Matos ST_CLERK Administration Vice President

Vargas ST_CLERK Administration Vice President

Russell SA_MAN Administration Vice President

Partners SA_MAN Administration Vice President

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Errazuriz SA_MAN Administration Vice President

Cambrault SA_MAN Administration Vice President

Zlotkey SA_MAN Administration Vice President

Tucker SA_REP Administration Vice President

Bernstein SA_REP Administration Vice President

Hall SA_REP Administration Vice President

Olsen SA_REP Administration Vice President

Cambrault SA_REP Administration Vice President

Tuvault SA_REP Administration Vice President

King SA_REP Administration Vice President

Sully SA_REP Administration Vice President

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

McEwen SA_REP Administration Vice President

Smith SA_REP Administration Vice President

Doran SA_REP Administration Vice President

Sewall SA_REP Administration Vice President

Vishney SA_REP Administration Vice President

Greene SA_REP Administration Vice President

Marvins SA_REP Administration Vice President


Lee SA_REP Administration Vice President

Ande SA_REP Administration Vice President

Banda SA_REP Administration Vice President

Ozer SA_REP Administration Vice President

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Bloom SA_REP Administration Vice President

Fox SA_REP Administration Vice President

Smith SA_REP Administration Vice President

Bates SA_REP Administration Vice President

Kumar SA_REP Administration Vice President

Abel SA_REP Administration Vice President

Hutton SA_REP Administration Vice President

Taylor SA_REP Administration Vice President

Livingston SA_REP Administration Vice President

Grant SA_REP Administration Vice President

Johnson SA_REP Administration Vice President

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Taylor SH_CLERK Administration Vice President

Fleaur SH_CLERK Administration Vice President

Sullivan SH_CLERK Administration Vice President

Geoni SH_CLERK Administration Vice President

Sarchand SH_CLERK Administration Vice President

Bull SH_CLERK Administration Vice President

Dellinger SH_CLERK Administration Vice President

Cabrio SH_CLERK Administration Vice President


Chung SH_CLERK Administration Vice President

Dilly SH_CLERK Administration Vice President

Gates SH_CLERK Administration Vice President

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Perkins SH_CLERK Administration Vice President

Bell SH_CLERK Administration Vice President

Everett SH_CLERK Administration Vice President

McCain SH_CLERK Administration Vice President

Jones SH_CLERK Administration Vice President

Walsh SH_CLERK Administration Vice President

Feeney SH_CLERK Administration Vice President

OConnell SH_CLERK Administration Vice President

Grant SH_CLERK Administration Vice President

Whalen AD_ASST Administration Vice President

Hartstein MK_MAN Administration Vice President

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Fay MK_REP Administration Vice President

Mavris HR_REP Administration Vice President

Baer PR_REP Administration Vice President

Higgins AC_MGR Administration Vice President

Gietz AC_ACCOUNT Administration Vice President

King AD_PRES Administration Assistant

Kochhar AD_VP Administration Assistant

De Haan AD_VP Administration Assistant

Hunold IT_PROG Administration Assistant


Ernst IT_PROG Administration Assistant

Austin IT_PROG Administration Assistant

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Pataballa IT_PROG Administration Assistant

Lorentz IT_PROG Administration Assistant

Greenberg FI_MGR Administration Assistant

Faviet FI_ACCOUNT Administration Assistant

Chen FI_ACCOUNT Administration Assistant

Sciarra FI_ACCOUNT Administration Assistant

Urman FI_ACCOUNT Administration Assistant

Popp FI_ACCOUNT Administration Assistant

Raphaely PU_MAN Administration Assistant

Khoo PU_CLERK Administration Assistant

Baida PU_CLERK Administration Assistant

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Tobias PU_CLERK Administration Assistant

Himuro PU_CLERK Administration Assistant

Colmenares PU_CLERK Administration Assistant

Weiss ST_MAN Administration Assistant

Fripp ST_MAN Administration Assistant

Kaufling ST_MAN Administration Assistant

Vollman ST_MAN Administration Assistant

Mourgos ST_MAN Administration Assistant

Nayer ST_CLERK Administration Assistant

Mikkilineni ST_CLERK Administration Assistant


Landry ST_CLERK Administration Assistant

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Markle ST_CLERK Administration Assistant

Bissot ST_CLERK Administration Assistant

Atkinson ST_CLERK Administration Assistant

Marlow ST_CLERK Administration Assistant

Olson ST_CLERK Administration Assistant

Mallin ST_CLERK Administration Assistant

Rogers ST_CLERK Administration Assistant

Gee ST_CLERK Administration Assistant

Philtanker ST_CLERK Administration Assistant

Ladwig ST_CLERK Administration Assistant

Stiles ST_CLERK Administration Assistant

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Seo ST_CLERK Administration Assistant

Patel ST_CLERK Administration Assistant

Rajs ST_CLERK Administration Assistant

Davies ST_CLERK Administration Assistant

Matos ST_CLERK Administration Assistant

Vargas ST_CLERK Administration Assistant

Russell SA_MAN Administration Assistant

Partners SA_MAN Administration Assistant

Errazuriz SA_MAN Administration Assistant

Cambrault SA_MAN Administration Assistant

Zlotkey SA_MAN Administration Assistant


NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Tucker SA_REP Administration Assistant

Bernstein SA_REP Administration Assistant

Hall SA_REP Administration Assistant

Olsen SA_REP Administration Assistant

Cambrault SA_REP Administration Assistant

Tuvault SA_REP Administration Assistant

King SA_REP Administration Assistant

Sully SA_REP Administration Assistant

McEwen SA_REP Administration Assistant

Smith SA_REP Administration Assistant

Doran SA_REP Administration Assistant

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Sewall SA_REP Administration Assistant

Vishney SA_REP Administration Assistant

Greene SA_REP Administration Assistant

Marvins SA_REP Administration Assistant

Lee SA_REP Administration Assistant

Ande SA_REP Administration Assistant

Banda SA_REP Administration Assistant

Ozer SA_REP Administration Assistant

Bloom SA_REP Administration Assistant

Fox SA_REP Administration Assistant

Smith SA_REP Administration Assistant


NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Bates SA_REP Administration Assistant

Kumar SA_REP Administration Assistant

Abel SA_REP Administration Assistant

Hutton SA_REP Administration Assistant

Taylor SA_REP Administration Assistant

Livingston SA_REP Administration Assistant

Grant SA_REP Administration Assistant

Johnson SA_REP Administration Assistant

Taylor SH_CLERK Administration Assistant

Fleaur SH_CLERK Administration Assistant

Sullivan SH_CLERK Administration Assistant

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Geoni SH_CLERK Administration Assistant

Sarchand SH_CLERK Administration Assistant

Bull SH_CLERK Administration Assistant

Dellinger SH_CLERK Administration Assistant

Cabrio SH_CLERK Administration Assistant

Chung SH_CLERK Administration Assistant

Dilly SH_CLERK Administration Assistant

Gates SH_CLERK Administration Assistant

Perkins SH_CLERK Administration Assistant

Bell SH_CLERK Administration Assistant

Everett SH_CLERK Administration Assistant

NAME ID JOB_TITLE
------------------------- ---------- -----------------------------------

McCain SH_CLERK Administration Assistant

Jones SH_CLERK Administration Assistant

Walsh SH_CLERK Administration Assistant

Feeney SH_CLERK Administration Assistant

OConnell SH_CLERK Administration Assistant

Grant SH_CLERK Administration Assistant

Whalen AD_ASST Administration Assistant

Hartstein MK_MAN Administration Assistant

Fay MK_REP Administration Assistant

Mavris HR_REP Administration Assistant

Baer PR_REP Administration Assistant

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Higgins AC_MGR Administration Assistant

Gietz AC_ACCOUNT Administration Assistant

King AD_PRES Finance Manager

Kochhar AD_VP Finance Manager

De Haan AD_VP Finance Manager

Hunold IT_PROG Finance Manager

Ernst IT_PROG Finance Manager

Austin IT_PROG Finance Manager

Pataballa IT_PROG Finance Manager

Lorentz IT_PROG Finance Manager

Greenberg FI_MGR Finance Manager

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------


Faviet FI_ACCOUNT Finance Manager

Chen FI_ACCOUNT Finance Manager

Sciarra FI_ACCOUNT Finance Manager

Urman FI_ACCOUNT Finance Manager

Popp FI_ACCOUNT Finance Manager

Raphaely PU_MAN Finance Manager

Khoo PU_CLERK Finance Manager

Baida PU_CLERK Finance Manager

Tobias PU_CLERK Finance Manager

Himuro PU_CLERK Finance Manager

Colmenares PU_CLERK Finance Manager

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Weiss ST_MAN Finance Manager

Fripp ST_MAN Finance Manager

Kaufling ST_MAN Finance Manager

Vollman ST_MAN Finance Manager

Mourgos ST_MAN Finance Manager

Nayer ST_CLERK Finance Manager

Mikkilineni ST_CLERK Finance Manager

Landry ST_CLERK Finance Manager

Markle ST_CLERK Finance Manager

Bissot ST_CLERK Finance Manager

Atkinson ST_CLERK Finance Manager

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Marlow ST_CLERK Finance Manager


Olson ST_CLERK Finance Manager

Mallin ST_CLERK Finance Manager

Rogers ST_CLERK Finance Manager

Gee ST_CLERK Finance Manager

Philtanker ST_CLERK Finance Manager

Ladwig ST_CLERK Finance Manager

Stiles ST_CLERK Finance Manager

Seo ST_CLERK Finance Manager

Patel ST_CLERK Finance Manager

Rajs ST_CLERK Finance Manager

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Davies ST_CLERK Finance Manager

Matos ST_CLERK Finance Manager

Vargas ST_CLERK Finance Manager

Russell SA_MAN Finance Manager

Partners SA_MAN Finance Manager

Errazuriz SA_MAN Finance Manager

Cambrault SA_MAN Finance Manager

Zlotkey SA_MAN Finance Manager

Tucker SA_REP Finance Manager

Bernstein SA_REP Finance Manager

Hall SA_REP Finance Manager

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Olsen SA_REP Finance Manager

Cambrault SA_REP Finance Manager


Tuvault SA_REP Finance Manager

King SA_REP Finance Manager

Sully SA_REP Finance Manager

McEwen SA_REP Finance Manager

Smith SA_REP Finance Manager

Doran SA_REP Finance Manager

Sewall SA_REP Finance Manager

Vishney SA_REP Finance Manager

Greene SA_REP Finance Manager

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Marvins SA_REP Finance Manager

Lee SA_REP Finance Manager

Ande SA_REP Finance Manager

Banda SA_REP Finance Manager

Ozer SA_REP Finance Manager

Bloom SA_REP Finance Manager

Fox SA_REP Finance Manager

Smith SA_REP Finance Manager

Bates SA_REP Finance Manager

Kumar SA_REP Finance Manager

Abel SA_REP Finance Manager

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Hutton SA_REP Finance Manager

Taylor SA_REP Finance Manager

Livingston SA_REP Finance Manager


Grant SA_REP Finance Manager

Johnson SA_REP Finance Manager

Taylor SH_CLERK Finance Manager

Fleaur SH_CLERK Finance Manager

Sullivan SH_CLERK Finance Manager

Geoni SH_CLERK Finance Manager

Sarchand SH_CLERK Finance Manager

Bull SH_CLERK Finance Manager

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Dellinger SH_CLERK Finance Manager

Cabrio SH_CLERK Finance Manager

Chung SH_CLERK Finance Manager

Dilly SH_CLERK Finance Manager

Gates SH_CLERK Finance Manager

Perkins SH_CLERK Finance Manager

Bell SH_CLERK Finance Manager

Everett SH_CLERK Finance Manager

McCain SH_CLERK Finance Manager

Jones SH_CLERK Finance Manager

Walsh SH_CLERK Finance Manager

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Feeney SH_CLERK Finance Manager

OConnell SH_CLERK Finance Manager

Grant SH_CLERK Finance Manager

Whalen AD_ASST Finance Manager


Hartstein MK_MAN Finance Manager

Fay MK_REP Finance Manager

Mavris HR_REP Finance Manager

Baer PR_REP Finance Manager

Higgins AC_MGR Finance Manager

Gietz AC_ACCOUNT Finance Manager

King AD_PRES Accountant

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Kochhar AD_VP Accountant

De Haan AD_VP Accountant

Hunold IT_PROG Accountant

Ernst IT_PROG Accountant

Austin IT_PROG Accountant

Pataballa IT_PROG Accountant

Lorentz IT_PROG Accountant

Greenberg FI_MGR Accountant

Faviet FI_ACCOUNT Accountant

Chen FI_ACCOUNT Accountant

Sciarra FI_ACCOUNT Accountant

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Urman FI_ACCOUNT Accountant

Popp FI_ACCOUNT Accountant

Raphaely PU_MAN Accountant

Khoo PU_CLERK Accountant

Baida PU_CLERK Accountant


Tobias PU_CLERK Accountant

Himuro PU_CLERK Accountant

Colmenares PU_CLERK Accountant

Weiss ST_MAN Accountant

Fripp ST_MAN Accountant

Kaufling ST_MAN Accountant

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Vollman ST_MAN Accountant

Mourgos ST_MAN Accountant

Nayer ST_CLERK Accountant

Mikkilineni ST_CLERK Accountant

Landry ST_CLERK Accountant

Markle ST_CLERK Accountant

Bissot ST_CLERK Accountant

Atkinson ST_CLERK Accountant

Marlow ST_CLERK Accountant

Olson ST_CLERK Accountant

Mallin ST_CLERK Accountant

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Rogers ST_CLERK Accountant

Gee ST_CLERK Accountant

Philtanker ST_CLERK Accountant

Ladwig ST_CLERK Accountant

Stiles ST_CLERK Accountant

Seo ST_CLERK Accountant


Patel ST_CLERK Accountant

Rajs ST_CLERK Accountant

Davies ST_CLERK Accountant

Matos ST_CLERK Accountant

Vargas ST_CLERK Accountant

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Russell SA_MAN Accountant

Partners SA_MAN Accountant

Errazuriz SA_MAN Accountant

Cambrault SA_MAN Accountant

Zlotkey SA_MAN Accountant

Tucker SA_REP Accountant

Bernstein SA_REP Accountant

Hall SA_REP Accountant

Olsen SA_REP Accountant

Cambrault SA_REP Accountant

Tuvault SA_REP Accountant

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

King SA_REP Accountant

Sully SA_REP Accountant

McEwen SA_REP Accountant

Smith SA_REP Accountant

Doran SA_REP Accountant

Sewall SA_REP Accountant

Vishney SA_REP Accountant


Greene SA_REP Accountant

Marvins SA_REP Accountant

Lee SA_REP Accountant

Ande SA_REP Accountant

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Banda SA_REP Accountant

Ozer SA_REP Accountant

Bloom SA_REP Accountant

Fox SA_REP Accountant

Smith SA_REP Accountant

Bates SA_REP Accountant

Kumar SA_REP Accountant

Abel SA_REP Accountant

Hutton SA_REP Accountant

Taylor SA_REP Accountant

Livingston SA_REP Accountant

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Grant SA_REP Accountant

Johnson SA_REP Accountant

Taylor SH_CLERK Accountant

Fleaur SH_CLERK Accountant

Sullivan SH_CLERK Accountant

Geoni SH_CLERK Accountant

Sarchand SH_CLERK Accountant

Bull SH_CLERK Accountant


Dellinger SH_CLERK Accountant

Cabrio SH_CLERK Accountant

Chung SH_CLERK Accountant

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Dilly SH_CLERK Accountant

Gates SH_CLERK Accountant

Perkins SH_CLERK Accountant

Bell SH_CLERK Accountant

Everett SH_CLERK Accountant

McCain SH_CLERK Accountant

Jones SH_CLERK Accountant

Walsh SH_CLERK Accountant

Feeney SH_CLERK Accountant

OConnell SH_CLERK Accountant

Grant SH_CLERK Accountant

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Whalen AD_ASST Accountant

Hartstein MK_MAN Accountant

Fay MK_REP Accountant

Mavris HR_REP Accountant

Baer PR_REP Accountant

Higgins AC_MGR Accountant

Gietz AC_ACCOUNT Accountant

King AD_PRES Accounting Manager

Kochhar AD_VP Accounting Manager


De Haan AD_VP Accounting Manager

Hunold IT_PROG Accounting Manager

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Ernst IT_PROG Accounting Manager

Austin IT_PROG Accounting Manager

Pataballa IT_PROG Accounting Manager

Lorentz IT_PROG Accounting Manager

Greenberg FI_MGR Accounting Manager

Faviet FI_ACCOUNT Accounting Manager

Chen FI_ACCOUNT Accounting Manager

Sciarra FI_ACCOUNT Accounting Manager

Urman FI_ACCOUNT Accounting Manager

Popp FI_ACCOUNT Accounting Manager

Raphaely PU_MAN Accounting Manager

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Khoo PU_CLERK Accounting Manager

Baida PU_CLERK Accounting Manager

Tobias PU_CLERK Accounting Manager

Himuro PU_CLERK Accounting Manager

Colmenares PU_CLERK Accounting Manager

Weiss ST_MAN Accounting Manager

Fripp ST_MAN Accounting Manager

Kaufling ST_MAN Accounting Manager

Vollman ST_MAN Accounting Manager

Mourgos ST_MAN Accounting Manager


Nayer ST_CLERK Accounting Manager

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Mikkilineni ST_CLERK Accounting Manager

Landry ST_CLERK Accounting Manager

Markle ST_CLERK Accounting Manager

Bissot ST_CLERK Accounting Manager

Atkinson ST_CLERK Accounting Manager

Marlow ST_CLERK Accounting Manager

Olson ST_CLERK Accounting Manager

Mallin ST_CLERK Accounting Manager

Rogers ST_CLERK Accounting Manager

Gee ST_CLERK Accounting Manager

Philtanker ST_CLERK Accounting Manager

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Ladwig ST_CLERK Accounting Manager

Stiles ST_CLERK Accounting Manager

Seo ST_CLERK Accounting Manager

Patel ST_CLERK Accounting Manager

Rajs ST_CLERK Accounting Manager

Davies ST_CLERK Accounting Manager

Matos ST_CLERK Accounting Manager

Vargas ST_CLERK Accounting Manager

Russell SA_MAN Accounting Manager

Partners SA_MAN Accounting Manager

Errazuriz SA_MAN Accounting Manager


NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Cambrault SA_MAN Accounting Manager

Zlotkey SA_MAN Accounting Manager

Tucker SA_REP Accounting Manager

Bernstein SA_REP Accounting Manager

Hall SA_REP Accounting Manager

Olsen SA_REP Accounting Manager

Cambrault SA_REP Accounting Manager

Tuvault SA_REP Accounting Manager

King SA_REP Accounting Manager

Sully SA_REP Accounting Manager

McEwen SA_REP Accounting Manager

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Smith SA_REP Accounting Manager

Doran SA_REP Accounting Manager

Sewall SA_REP Accounting Manager

Vishney SA_REP Accounting Manager

Greene SA_REP Accounting Manager

Marvins SA_REP Accounting Manager

Lee SA_REP Accounting Manager

Ande SA_REP Accounting Manager

Banda SA_REP Accounting Manager

Ozer SA_REP Accounting Manager

Bloom SA_REP Accounting Manager


NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Fox SA_REP Accounting Manager

Smith SA_REP Accounting Manager

Bates SA_REP Accounting Manager

Kumar SA_REP Accounting Manager

Abel SA_REP Accounting Manager

Hutton SA_REP Accounting Manager

Taylor SA_REP Accounting Manager

Livingston SA_REP Accounting Manager

Grant SA_REP Accounting Manager

Johnson SA_REP Accounting Manager

Taylor SH_CLERK Accounting Manager

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Fleaur SH_CLERK Accounting Manager

Sullivan SH_CLERK Accounting Manager

Geoni SH_CLERK Accounting Manager

Sarchand SH_CLERK Accounting Manager

Bull SH_CLERK Accounting Manager

Dellinger SH_CLERK Accounting Manager

Cabrio SH_CLERK Accounting Manager

Chung SH_CLERK Accounting Manager

Dilly SH_CLERK Accounting Manager

Gates SH_CLERK Accounting Manager

Perkins SH_CLERK Accounting Manager

NAME ID JOB_TITLE
------------------------- ---------- -----------------------------------

Bell SH_CLERK Accounting Manager

Everett SH_CLERK Accounting Manager

McCain SH_CLERK Accounting Manager

Jones SH_CLERK Accounting Manager

Walsh SH_CLERK Accounting Manager

Feeney SH_CLERK Accounting Manager

OConnell SH_CLERK Accounting Manager

Grant SH_CLERK Accounting Manager

Whalen AD_ASST Accounting Manager

Hartstein MK_MAN Accounting Manager

Fay MK_REP Accounting Manager

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Mavris HR_REP Accounting Manager

Baer PR_REP Accounting Manager

Higgins AC_MGR Accounting Manager

Gietz AC_ACCOUNT Accounting Manager

King AD_PRES Public Accountant

Kochhar AD_VP Public Accountant

De Haan AD_VP Public Accountant

Hunold IT_PROG Public Accountant

Ernst IT_PROG Public Accountant

Austin IT_PROG Public Accountant

Pataballa IT_PROG Public Accountant

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------


Lorentz IT_PROG Public Accountant

Greenberg FI_MGR Public Accountant

Faviet FI_ACCOUNT Public Accountant

Chen FI_ACCOUNT Public Accountant

Sciarra FI_ACCOUNT Public Accountant

Urman FI_ACCOUNT Public Accountant

Popp FI_ACCOUNT Public Accountant

Raphaely PU_MAN Public Accountant

Khoo PU_CLERK Public Accountant

Baida PU_CLERK Public Accountant

Tobias PU_CLERK Public Accountant

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Himuro PU_CLERK Public Accountant

Colmenares PU_CLERK Public Accountant

Weiss ST_MAN Public Accountant

Fripp ST_MAN Public Accountant

Kaufling ST_MAN Public Accountant

Vollman ST_MAN Public Accountant

Mourgos ST_MAN Public Accountant

Nayer ST_CLERK Public Accountant

Mikkilineni ST_CLERK Public Accountant

Landry ST_CLERK Public Accountant

Markle ST_CLERK Public Accountant

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Bissot ST_CLERK Public Accountant


Atkinson ST_CLERK Public Accountant

Marlow ST_CLERK Public Accountant

Olson ST_CLERK Public Accountant

Mallin ST_CLERK Public Accountant

Rogers ST_CLERK Public Accountant

Gee ST_CLERK Public Accountant

Philtanker ST_CLERK Public Accountant

Ladwig ST_CLERK Public Accountant

Stiles ST_CLERK Public Accountant

Seo ST_CLERK Public Accountant

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Patel ST_CLERK Public Accountant

Rajs ST_CLERK Public Accountant

Davies ST_CLERK Public Accountant

Matos ST_CLERK Public Accountant

Vargas ST_CLERK Public Accountant

Russell SA_MAN Public Accountant

Partners SA_MAN Public Accountant

Errazuriz SA_MAN Public Accountant

Cambrault SA_MAN Public Accountant

Zlotkey SA_MAN Public Accountant

Tucker SA_REP Public Accountant

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Bernstein SA_REP Public Accountant

Hall SA_REP Public Accountant


Olsen SA_REP Public Accountant

Cambrault SA_REP Public Accountant

Tuvault SA_REP Public Accountant

King SA_REP Public Accountant

Sully SA_REP Public Accountant

McEwen SA_REP Public Accountant

Smith SA_REP Public Accountant

Doran SA_REP Public Accountant

Sewall SA_REP Public Accountant

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Vishney SA_REP Public Accountant

Greene SA_REP Public Accountant

Marvins SA_REP Public Accountant

Lee SA_REP Public Accountant

Ande SA_REP Public Accountant

Banda SA_REP Public Accountant

Ozer SA_REP Public Accountant

Bloom SA_REP Public Accountant

Fox SA_REP Public Accountant

Smith SA_REP Public Accountant

Bates SA_REP Public Accountant

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Kumar SA_REP Public Accountant

Abel SA_REP Public Accountant

Hutton SA_REP Public Accountant


Taylor SA_REP Public Accountant

Livingston SA_REP Public Accountant

Grant SA_REP Public Accountant

Johnson SA_REP Public Accountant

Taylor SH_CLERK Public Accountant

Fleaur SH_CLERK Public Accountant

Sullivan SH_CLERK Public Accountant

Geoni SH_CLERK Public Accountant

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Sarchand SH_CLERK Public Accountant

Bull SH_CLERK Public Accountant

Dellinger SH_CLERK Public Accountant

Cabrio SH_CLERK Public Accountant

Chung SH_CLERK Public Accountant

Dilly SH_CLERK Public Accountant

Gates SH_CLERK Public Accountant

Perkins SH_CLERK Public Accountant

Bell SH_CLERK Public Accountant

Everett SH_CLERK Public Accountant

McCain SH_CLERK Public Accountant

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Jones SH_CLERK Public Accountant

Walsh SH_CLERK Public Accountant

Feeney SH_CLERK Public Accountant

OConnell SH_CLERK Public Accountant


Grant SH_CLERK Public Accountant

Whalen AD_ASST Public Accountant

Hartstein MK_MAN Public Accountant

Fay MK_REP Public Accountant

Mavris HR_REP Public Accountant

Baer PR_REP Public Accountant

Higgins AC_MGR Public Accountant

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Gietz AC_ACCOUNT Public Accountant

King AD_PRES Sales Manager

Kochhar AD_VP Sales Manager

De Haan AD_VP Sales Manager

Hunold IT_PROG Sales Manager

Ernst IT_PROG Sales Manager

Austin IT_PROG Sales Manager

Pataballa IT_PROG Sales Manager

Lorentz IT_PROG Sales Manager

Greenberg FI_MGR Sales Manager

Faviet FI_ACCOUNT Sales Manager

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Chen FI_ACCOUNT Sales Manager

Sciarra FI_ACCOUNT Sales Manager

Urman FI_ACCOUNT Sales Manager

Popp FI_ACCOUNT Sales Manager

Raphaely PU_MAN Sales Manager


Khoo PU_CLERK Sales Manager

Baida PU_CLERK Sales Manager

Tobias PU_CLERK Sales Manager

Himuro PU_CLERK Sales Manager

Colmenares PU_CLERK Sales Manager

Weiss ST_MAN Sales Manager

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Fripp ST_MAN Sales Manager

Kaufling ST_MAN Sales Manager

Vollman ST_MAN Sales Manager

Mourgos ST_MAN Sales Manager

Nayer ST_CLERK Sales Manager

Mikkilineni ST_CLERK Sales Manager

Landry ST_CLERK Sales Manager

Markle ST_CLERK Sales Manager

Bissot ST_CLERK Sales Manager

Atkinson ST_CLERK Sales Manager

Marlow ST_CLERK Sales Manager

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Olson ST_CLERK Sales Manager

Mallin ST_CLERK Sales Manager

Rogers ST_CLERK Sales Manager

Gee ST_CLERK Sales Manager

Philtanker ST_CLERK Sales Manager

Ladwig ST_CLERK Sales Manager


Stiles ST_CLERK Sales Manager

Seo ST_CLERK Sales Manager

Patel ST_CLERK Sales Manager

Rajs ST_CLERK Sales Manager

Davies ST_CLERK Sales Manager

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Matos ST_CLERK Sales Manager

Vargas ST_CLERK Sales Manager

Russell SA_MAN Sales Manager

Partners SA_MAN Sales Manager

Errazuriz SA_MAN Sales Manager

Cambrault SA_MAN Sales Manager

Zlotkey SA_MAN Sales Manager

Tucker SA_REP Sales Manager

Bernstein SA_REP Sales Manager

Hall SA_REP Sales Manager

Olsen SA_REP Sales Manager

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Cambrault SA_REP Sales Manager

Tuvault SA_REP Sales Manager

King SA_REP Sales Manager

Sully SA_REP Sales Manager

McEwen SA_REP Sales Manager

Smith SA_REP Sales Manager

Doran SA_REP Sales Manager


Sewall SA_REP Sales Manager

Vishney SA_REP Sales Manager

Greene SA_REP Sales Manager

Marvins SA_REP Sales Manager

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Lee SA_REP Sales Manager

Ande SA_REP Sales Manager

Banda SA_REP Sales Manager

Ozer SA_REP Sales Manager

Bloom SA_REP Sales Manager

Fox SA_REP Sales Manager

Smith SA_REP Sales Manager

Bates SA_REP Sales Manager

Kumar SA_REP Sales Manager

Abel SA_REP Sales Manager

Hutton SA_REP Sales Manager

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Taylor SA_REP Sales Manager

Livingston SA_REP Sales Manager

Grant SA_REP Sales Manager

Johnson SA_REP Sales Manager

Taylor SH_CLERK Sales Manager

Fleaur SH_CLERK Sales Manager

Sullivan SH_CLERK Sales Manager

Geoni SH_CLERK Sales Manager


Sarchand SH_CLERK Sales Manager

Bull SH_CLERK Sales Manager

Dellinger SH_CLERK Sales Manager

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Cabrio SH_CLERK Sales Manager

Chung SH_CLERK Sales Manager

Dilly SH_CLERK Sales Manager

Gates SH_CLERK Sales Manager

Perkins SH_CLERK Sales Manager

Bell SH_CLERK Sales Manager

Everett SH_CLERK Sales Manager

McCain SH_CLERK Sales Manager

Jones SH_CLERK Sales Manager

Walsh SH_CLERK Sales Manager

Feeney SH_CLERK Sales Manager

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

OConnell SH_CLERK Sales Manager

Grant SH_CLERK Sales Manager

Whalen AD_ASST Sales Manager

Hartstein MK_MAN Sales Manager

Fay MK_REP Sales Manager

Mavris HR_REP Sales Manager

Baer PR_REP Sales Manager

Higgins AC_MGR Sales Manager

Gietz AC_ACCOUNT Sales Manager


King AD_PRES Sales Representative

Kochhar AD_VP Sales Representative

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

De Haan AD_VP Sales Representative

Hunold IT_PROG Sales Representative

Ernst IT_PROG Sales Representative

Austin IT_PROG Sales Representative

Pataballa IT_PROG Sales Representative

Lorentz IT_PROG Sales Representative

Greenberg FI_MGR Sales Representative

Faviet FI_ACCOUNT Sales Representative

Chen FI_ACCOUNT Sales Representative

Sciarra FI_ACCOUNT Sales Representative

Urman FI_ACCOUNT Sales Representative

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Popp FI_ACCOUNT Sales Representative

Raphaely PU_MAN Sales Representative

Khoo PU_CLERK Sales Representative

Baida PU_CLERK Sales Representative

Tobias PU_CLERK Sales Representative

Himuro PU_CLERK Sales Representative

Colmenares PU_CLERK Sales Representative

Weiss ST_MAN Sales Representative

Fripp ST_MAN Sales Representative

Kaufling ST_MAN Sales Representative


Vollman ST_MAN Sales Representative

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Mourgos ST_MAN Sales Representative

Nayer ST_CLERK Sales Representative

Mikkilineni ST_CLERK Sales Representative

Landry ST_CLERK Sales Representative

Markle ST_CLERK Sales Representative

Bissot ST_CLERK Sales Representative

Atkinson ST_CLERK Sales Representative

Marlow ST_CLERK Sales Representative

Olson ST_CLERK Sales Representative

Mallin ST_CLERK Sales Representative

Rogers ST_CLERK Sales Representative

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Gee ST_CLERK Sales Representative

Philtanker ST_CLERK Sales Representative

Ladwig ST_CLERK Sales Representative

Stiles ST_CLERK Sales Representative

Seo ST_CLERK Sales Representative

Patel ST_CLERK Sales Representative

Rajs ST_CLERK Sales Representative

Davies ST_CLERK Sales Representative

Matos ST_CLERK Sales Representative

Vargas ST_CLERK Sales Representative

Russell SA_MAN Sales Representative


NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Partners SA_MAN Sales Representative

Errazuriz SA_MAN Sales Representative

Cambrault SA_MAN Sales Representative

Zlotkey SA_MAN Sales Representative

Tucker SA_REP Sales Representative

Bernstein SA_REP Sales Representative

Hall SA_REP Sales Representative

Olsen SA_REP Sales Representative

Cambrault SA_REP Sales Representative

Tuvault SA_REP Sales Representative

King SA_REP Sales Representative

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Sully SA_REP Sales Representative

McEwen SA_REP Sales Representative

Smith SA_REP Sales Representative

Doran SA_REP Sales Representative

Sewall SA_REP Sales Representative

Vishney SA_REP Sales Representative

Greene SA_REP Sales Representative

Marvins SA_REP Sales Representative

Lee SA_REP Sales Representative

Ande SA_REP Sales Representative

Banda SA_REP Sales Representative


NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Ozer SA_REP Sales Representative

Bloom SA_REP Sales Representative

Fox SA_REP Sales Representative

Smith SA_REP Sales Representative

Bates SA_REP Sales Representative

Kumar SA_REP Sales Representative

Abel SA_REP Sales Representative

Hutton SA_REP Sales Representative

Taylor SA_REP Sales Representative

Livingston SA_REP Sales Representative

Grant SA_REP Sales Representative

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Johnson SA_REP Sales Representative

Taylor SH_CLERK Sales Representative

Fleaur SH_CLERK Sales Representative

Sullivan SH_CLERK Sales Representative

Geoni SH_CLERK Sales Representative

Sarchand SH_CLERK Sales Representative

Bull SH_CLERK Sales Representative

Dellinger SH_CLERK Sales Representative

Cabrio SH_CLERK Sales Representative

Chung SH_CLERK Sales Representative

Dilly SH_CLERK Sales Representative

NAME ID JOB_TITLE
------------------------- ---------- -----------------------------------

Gates SH_CLERK Sales Representative

Perkins SH_CLERK Sales Representative

Bell SH_CLERK Sales Representative

Everett SH_CLERK Sales Representative

McCain SH_CLERK Sales Representative

Jones SH_CLERK Sales Representative

Walsh SH_CLERK Sales Representative

Feeney SH_CLERK Sales Representative

OConnell SH_CLERK Sales Representative

Grant SH_CLERK Sales Representative

Whalen AD_ASST Sales Representative

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Hartstein MK_MAN Sales Representative

Fay MK_REP Sales Representative

Mavris HR_REP Sales Representative

Baer PR_REP Sales Representative

Higgins AC_MGR Sales Representative

Gietz AC_ACCOUNT Sales Representative

King AD_PRES Purchasing Manager

Kochhar AD_VP Purchasing Manager

De Haan AD_VP Purchasing Manager

Hunold IT_PROG Purchasing Manager

Ernst IT_PROG Purchasing Manager

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------


Austin IT_PROG Purchasing Manager

Pataballa IT_PROG Purchasing Manager

Lorentz IT_PROG Purchasing Manager

Greenberg FI_MGR Purchasing Manager

Faviet FI_ACCOUNT Purchasing Manager

Chen FI_ACCOUNT Purchasing Manager

Sciarra FI_ACCOUNT Purchasing Manager

Urman FI_ACCOUNT Purchasing Manager

Popp FI_ACCOUNT Purchasing Manager

Raphaely PU_MAN Purchasing Manager

Khoo PU_CLERK Purchasing Manager

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Baida PU_CLERK Purchasing Manager

Tobias PU_CLERK Purchasing Manager

Himuro PU_CLERK Purchasing Manager

Colmenares PU_CLERK Purchasing Manager

Weiss ST_MAN Purchasing Manager

Fripp ST_MAN Purchasing Manager

Kaufling ST_MAN Purchasing Manager

Vollman ST_MAN Purchasing Manager

Mourgos ST_MAN Purchasing Manager

Nayer ST_CLERK Purchasing Manager

Mikkilineni ST_CLERK Purchasing Manager

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Landry ST_CLERK Purchasing Manager


Markle ST_CLERK Purchasing Manager

Bissot ST_CLERK Purchasing Manager

Atkinson ST_CLERK Purchasing Manager

Marlow ST_CLERK Purchasing Manager

Olson ST_CLERK Purchasing Manager

Mallin ST_CLERK Purchasing Manager

Rogers ST_CLERK Purchasing Manager

Gee ST_CLERK Purchasing Manager

Philtanker ST_CLERK Purchasing Manager

Ladwig ST_CLERK Purchasing Manager

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Stiles ST_CLERK Purchasing Manager

Seo ST_CLERK Purchasing Manager

Patel ST_CLERK Purchasing Manager

Rajs ST_CLERK Purchasing Manager

Davies ST_CLERK Purchasing Manager

Matos ST_CLERK Purchasing Manager

Vargas ST_CLERK Purchasing Manager

Russell SA_MAN Purchasing Manager

Partners SA_MAN Purchasing Manager

Errazuriz SA_MAN Purchasing Manager

Cambrault SA_MAN Purchasing Manager

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Zlotkey SA_MAN Purchasing Manager

Tucker SA_REP Purchasing Manager


Bernstein SA_REP Purchasing Manager

Hall SA_REP Purchasing Manager

Olsen SA_REP Purchasing Manager

Cambrault SA_REP Purchasing Manager

Tuvault SA_REP Purchasing Manager

King SA_REP Purchasing Manager

Sully SA_REP Purchasing Manager

McEwen SA_REP Purchasing Manager

Smith SA_REP Purchasing Manager

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Doran SA_REP Purchasing Manager

Sewall SA_REP Purchasing Manager

Vishney SA_REP Purchasing Manager

Greene SA_REP Purchasing Manager

Marvins SA_REP Purchasing Manager

Lee SA_REP Purchasing Manager

Ande SA_REP Purchasing Manager

Banda SA_REP Purchasing Manager

Ozer SA_REP Purchasing Manager

Bloom SA_REP Purchasing Manager

Fox SA_REP Purchasing Manager

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Smith SA_REP Purchasing Manager

Bates SA_REP Purchasing Manager

Kumar SA_REP Purchasing Manager


Abel SA_REP Purchasing Manager

Hutton SA_REP Purchasing Manager

Taylor SA_REP Purchasing Manager

Livingston SA_REP Purchasing Manager

Grant SA_REP Purchasing Manager

Johnson SA_REP Purchasing Manager

Taylor SH_CLERK Purchasing Manager

Fleaur SH_CLERK Purchasing Manager

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Sullivan SH_CLERK Purchasing Manager

Geoni SH_CLERK Purchasing Manager

Sarchand SH_CLERK Purchasing Manager

Bull SH_CLERK Purchasing Manager

Dellinger SH_CLERK Purchasing Manager

Cabrio SH_CLERK Purchasing Manager

Chung SH_CLERK Purchasing Manager

Dilly SH_CLERK Purchasing Manager

Gates SH_CLERK Purchasing Manager

Perkins SH_CLERK Purchasing Manager

Bell SH_CLERK Purchasing Manager

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Everett SH_CLERK Purchasing Manager

McCain SH_CLERK Purchasing Manager

Jones SH_CLERK Purchasing Manager

Walsh SH_CLERK Purchasing Manager


Feeney SH_CLERK Purchasing Manager

OConnell SH_CLERK Purchasing Manager

Grant SH_CLERK Purchasing Manager

Whalen AD_ASST Purchasing Manager

Hartstein MK_MAN Purchasing Manager

Fay MK_REP Purchasing Manager

Mavris HR_REP Purchasing Manager

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Baer PR_REP Purchasing Manager

Higgins AC_MGR Purchasing Manager

Gietz AC_ACCOUNT Purchasing Manager

King AD_PRES Purchasing Clerk

Kochhar AD_VP Purchasing Clerk

De Haan AD_VP Purchasing Clerk

Hunold IT_PROG Purchasing Clerk

Ernst IT_PROG Purchasing Clerk

Austin IT_PROG Purchasing Clerk

Pataballa IT_PROG Purchasing Clerk

Lorentz IT_PROG Purchasing Clerk

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Greenberg FI_MGR Purchasing Clerk

Faviet FI_ACCOUNT Purchasing Clerk

Chen FI_ACCOUNT Purchasing Clerk

Sciarra FI_ACCOUNT Purchasing Clerk

Urman FI_ACCOUNT Purchasing Clerk


Popp FI_ACCOUNT Purchasing Clerk

Raphaely PU_MAN Purchasing Clerk

Khoo PU_CLERK Purchasing Clerk

Baida PU_CLERK Purchasing Clerk

Tobias PU_CLERK Purchasing Clerk

Himuro PU_CLERK Purchasing Clerk

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Colmenares PU_CLERK Purchasing Clerk

Weiss ST_MAN Purchasing Clerk

Fripp ST_MAN Purchasing Clerk

Kaufling ST_MAN Purchasing Clerk

Vollman ST_MAN Purchasing Clerk

Mourgos ST_MAN Purchasing Clerk

Nayer ST_CLERK Purchasing Clerk

Mikkilineni ST_CLERK Purchasing Clerk

Landry ST_CLERK Purchasing Clerk

Markle ST_CLERK Purchasing Clerk

Bissot ST_CLERK Purchasing Clerk

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Atkinson ST_CLERK Purchasing Clerk

Marlow ST_CLERK Purchasing Clerk

Olson ST_CLERK Purchasing Clerk

Mallin ST_CLERK Purchasing Clerk

Rogers ST_CLERK Purchasing Clerk

Gee ST_CLERK Purchasing Clerk


Philtanker ST_CLERK Purchasing Clerk

Ladwig ST_CLERK Purchasing Clerk

Stiles ST_CLERK Purchasing Clerk

Seo ST_CLERK Purchasing Clerk

Patel ST_CLERK Purchasing Clerk

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Rajs ST_CLERK Purchasing Clerk

Davies ST_CLERK Purchasing Clerk

Matos ST_CLERK Purchasing Clerk

Vargas ST_CLERK Purchasing Clerk

Russell SA_MAN Purchasing Clerk

Partners SA_MAN Purchasing Clerk

Errazuriz SA_MAN Purchasing Clerk

Cambrault SA_MAN Purchasing Clerk

Zlotkey SA_MAN Purchasing Clerk

Tucker SA_REP Purchasing Clerk

Bernstein SA_REP Purchasing Clerk

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Hall SA_REP Purchasing Clerk

Olsen SA_REP Purchasing Clerk

Cambrault SA_REP Purchasing Clerk

Tuvault SA_REP Purchasing Clerk

King SA_REP Purchasing Clerk

Sully SA_REP Purchasing Clerk

McEwen SA_REP Purchasing Clerk


Smith SA_REP Purchasing Clerk

Doran SA_REP Purchasing Clerk

Sewall SA_REP Purchasing Clerk

Vishney SA_REP Purchasing Clerk

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Greene SA_REP Purchasing Clerk

Marvins SA_REP Purchasing Clerk

Lee SA_REP Purchasing Clerk

Ande SA_REP Purchasing Clerk

Banda SA_REP Purchasing Clerk

Ozer SA_REP Purchasing Clerk

Bloom SA_REP Purchasing Clerk

Fox SA_REP Purchasing Clerk

Smith SA_REP Purchasing Clerk

Bates SA_REP Purchasing Clerk

Kumar SA_REP Purchasing Clerk

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Abel SA_REP Purchasing Clerk

Hutton SA_REP Purchasing Clerk

Taylor SA_REP Purchasing Clerk

Livingston SA_REP Purchasing Clerk

Grant SA_REP Purchasing Clerk

Johnson SA_REP Purchasing Clerk

Taylor SH_CLERK Purchasing Clerk

Fleaur SH_CLERK Purchasing Clerk


Sullivan SH_CLERK Purchasing Clerk

Geoni SH_CLERK Purchasing Clerk

Sarchand SH_CLERK Purchasing Clerk

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Bull SH_CLERK Purchasing Clerk

Dellinger SH_CLERK Purchasing Clerk

Cabrio SH_CLERK Purchasing Clerk

Chung SH_CLERK Purchasing Clerk

Dilly SH_CLERK Purchasing Clerk

Gates SH_CLERK Purchasing Clerk

Perkins SH_CLERK Purchasing Clerk

Bell SH_CLERK Purchasing Clerk

Everett SH_CLERK Purchasing Clerk

McCain SH_CLERK Purchasing Clerk

Jones SH_CLERK Purchasing Clerk

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Walsh SH_CLERK Purchasing Clerk

Feeney SH_CLERK Purchasing Clerk

OConnell SH_CLERK Purchasing Clerk

Grant SH_CLERK Purchasing Clerk

Whalen AD_ASST Purchasing Clerk

Hartstein MK_MAN Purchasing Clerk

Fay MK_REP Purchasing Clerk

Mavris HR_REP Purchasing Clerk

Baer PR_REP Purchasing Clerk


Higgins AC_MGR Purchasing Clerk

Gietz AC_ACCOUNT Purchasing Clerk

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

King AD_PRES Stock Manager

Kochhar AD_VP Stock Manager

De Haan AD_VP Stock Manager

Hunold IT_PROG Stock Manager

Ernst IT_PROG Stock Manager

Austin IT_PROG Stock Manager

Pataballa IT_PROG Stock Manager

Lorentz IT_PROG Stock Manager

Greenberg FI_MGR Stock Manager

Faviet FI_ACCOUNT Stock Manager

Chen FI_ACCOUNT Stock Manager

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Sciarra FI_ACCOUNT Stock Manager

Urman FI_ACCOUNT Stock Manager

Popp FI_ACCOUNT Stock Manager

Raphaely PU_MAN Stock Manager

Khoo PU_CLERK Stock Manager

Baida PU_CLERK Stock Manager

Tobias PU_CLERK Stock Manager

Himuro PU_CLERK Stock Manager

Colmenares PU_CLERK Stock Manager

Weiss ST_MAN Stock Manager


Fripp ST_MAN Stock Manager

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Kaufling ST_MAN Stock Manager

Vollman ST_MAN Stock Manager

Mourgos ST_MAN Stock Manager

Nayer ST_CLERK Stock Manager

Mikkilineni ST_CLERK Stock Manager

Landry ST_CLERK Stock Manager

Markle ST_CLERK Stock Manager

Bissot ST_CLERK Stock Manager

Atkinson ST_CLERK Stock Manager

Marlow ST_CLERK Stock Manager

Olson ST_CLERK Stock Manager

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Mallin ST_CLERK Stock Manager

Rogers ST_CLERK Stock Manager

Gee ST_CLERK Stock Manager

Philtanker ST_CLERK Stock Manager

Ladwig ST_CLERK Stock Manager

Stiles ST_CLERK Stock Manager

Seo ST_CLERK Stock Manager

Patel ST_CLERK Stock Manager

Rajs ST_CLERK Stock Manager

Davies ST_CLERK Stock Manager

Matos ST_CLERK Stock Manager


NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Vargas ST_CLERK Stock Manager

Russell SA_MAN Stock Manager

Partners SA_MAN Stock Manager

Errazuriz SA_MAN Stock Manager

Cambrault SA_MAN Stock Manager

Zlotkey SA_MAN Stock Manager

Tucker SA_REP Stock Manager

Bernstein SA_REP Stock Manager

Hall SA_REP Stock Manager

Olsen SA_REP Stock Manager

Cambrault SA_REP Stock Manager

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Tuvault SA_REP Stock Manager

King SA_REP Stock Manager

Sully SA_REP Stock Manager

McEwen SA_REP Stock Manager

Smith SA_REP Stock Manager

Doran SA_REP Stock Manager

Sewall SA_REP Stock Manager

Vishney SA_REP Stock Manager

Greene SA_REP Stock Manager

Marvins SA_REP Stock Manager

Lee SA_REP Stock Manager


NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Ande SA_REP Stock Manager

Banda SA_REP Stock Manager

Ozer SA_REP Stock Manager

Bloom SA_REP Stock Manager

Fox SA_REP Stock Manager

Smith SA_REP Stock Manager

Bates SA_REP Stock Manager

Kumar SA_REP Stock Manager

Abel SA_REP Stock Manager

Hutton SA_REP Stock Manager

Taylor SA_REP Stock Manager

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Livingston SA_REP Stock Manager

Grant SA_REP Stock Manager

Johnson SA_REP Stock Manager

Taylor SH_CLERK Stock Manager

Fleaur SH_CLERK Stock Manager

Sullivan SH_CLERK Stock Manager

Geoni SH_CLERK Stock Manager

Sarchand SH_CLERK Stock Manager

Bull SH_CLERK Stock Manager

Dellinger SH_CLERK Stock Manager

Cabrio SH_CLERK Stock Manager

NAME ID JOB_TITLE
------------------------- ---------- -----------------------------------

Chung SH_CLERK Stock Manager

Dilly SH_CLERK Stock Manager

Gates SH_CLERK Stock Manager

Perkins SH_CLERK Stock Manager

Bell SH_CLERK Stock Manager

Everett SH_CLERK Stock Manager

McCain SH_CLERK Stock Manager

Jones SH_CLERK Stock Manager

Walsh SH_CLERK Stock Manager

Feeney SH_CLERK Stock Manager

OConnell SH_CLERK Stock Manager

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Grant SH_CLERK Stock Manager

Whalen AD_ASST Stock Manager

Hartstein MK_MAN Stock Manager

Fay MK_REP Stock Manager

Mavris HR_REP Stock Manager

Baer PR_REP Stock Manager

Higgins AC_MGR Stock Manager

Gietz AC_ACCOUNT Stock Manager

King AD_PRES Stock Clerk

Kochhar AD_VP Stock Clerk

De Haan AD_VP Stock Clerk

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------


Hunold IT_PROG Stock Clerk

Ernst IT_PROG Stock Clerk

Austin IT_PROG Stock Clerk

Pataballa IT_PROG Stock Clerk

Lorentz IT_PROG Stock Clerk

Greenberg FI_MGR Stock Clerk

Faviet FI_ACCOUNT Stock Clerk

Chen FI_ACCOUNT Stock Clerk

Sciarra FI_ACCOUNT Stock Clerk

Urman FI_ACCOUNT Stock Clerk

Popp FI_ACCOUNT Stock Clerk

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Raphaely PU_MAN Stock Clerk

Khoo PU_CLERK Stock Clerk

Baida PU_CLERK Stock Clerk

Tobias PU_CLERK Stock Clerk

Himuro PU_CLERK Stock Clerk

Colmenares PU_CLERK Stock Clerk

Weiss ST_MAN Stock Clerk

Fripp ST_MAN Stock Clerk

Kaufling ST_MAN Stock Clerk

Vollman ST_MAN Stock Clerk

Mourgos ST_MAN Stock Clerk

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Nayer ST_CLERK Stock Clerk


Mikkilineni ST_CLERK Stock Clerk

Landry ST_CLERK Stock Clerk

Markle ST_CLERK Stock Clerk

Bissot ST_CLERK Stock Clerk

Atkinson ST_CLERK Stock Clerk

Marlow ST_CLERK Stock Clerk

Olson ST_CLERK Stock Clerk

Mallin ST_CLERK Stock Clerk

Rogers ST_CLERK Stock Clerk

Gee ST_CLERK Stock Clerk

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Philtanker ST_CLERK Stock Clerk

Ladwig ST_CLERK Stock Clerk

Stiles ST_CLERK Stock Clerk

Seo ST_CLERK Stock Clerk

Patel ST_CLERK Stock Clerk

Rajs ST_CLERK Stock Clerk

Davies ST_CLERK Stock Clerk

Matos ST_CLERK Stock Clerk

Vargas ST_CLERK Stock Clerk

Russell SA_MAN Stock Clerk

Partners SA_MAN Stock Clerk

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Errazuriz SA_MAN Stock Clerk

Cambrault SA_MAN Stock Clerk


Zlotkey SA_MAN Stock Clerk

Tucker SA_REP Stock Clerk

Bernstein SA_REP Stock Clerk

Hall SA_REP Stock Clerk

Olsen SA_REP Stock Clerk

Cambrault SA_REP Stock Clerk

Tuvault SA_REP Stock Clerk

King SA_REP Stock Clerk

Sully SA_REP Stock Clerk

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

McEwen SA_REP Stock Clerk

Smith SA_REP Stock Clerk

Doran SA_REP Stock Clerk

Sewall SA_REP Stock Clerk

Vishney SA_REP Stock Clerk

Greene SA_REP Stock Clerk

Marvins SA_REP Stock Clerk

Lee SA_REP Stock Clerk

Ande SA_REP Stock Clerk

Banda SA_REP Stock Clerk

Ozer SA_REP Stock Clerk

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Bloom SA_REP Stock Clerk

Fox SA_REP Stock Clerk

Smith SA_REP Stock Clerk


Bates SA_REP Stock Clerk

Kumar SA_REP Stock Clerk

Abel SA_REP Stock Clerk

Hutton SA_REP Stock Clerk

Taylor SA_REP Stock Clerk

Livingston SA_REP Stock Clerk

Grant SA_REP Stock Clerk

Johnson SA_REP Stock Clerk

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Taylor SH_CLERK Stock Clerk

Fleaur SH_CLERK Stock Clerk

Sullivan SH_CLERK Stock Clerk

Geoni SH_CLERK Stock Clerk

Sarchand SH_CLERK Stock Clerk

Bull SH_CLERK Stock Clerk

Dellinger SH_CLERK Stock Clerk

Cabrio SH_CLERK Stock Clerk

Chung SH_CLERK Stock Clerk

Dilly SH_CLERK Stock Clerk

Gates SH_CLERK Stock Clerk

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Perkins SH_CLERK Stock Clerk

Bell SH_CLERK Stock Clerk

Everett SH_CLERK Stock Clerk

McCain SH_CLERK Stock Clerk


Jones SH_CLERK Stock Clerk

Walsh SH_CLERK Stock Clerk

Feeney SH_CLERK Stock Clerk

OConnell SH_CLERK Stock Clerk

Grant SH_CLERK Stock Clerk

Whalen AD_ASST Stock Clerk

Hartstein MK_MAN Stock Clerk

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Fay MK_REP Stock Clerk

Mavris HR_REP Stock Clerk

Baer PR_REP Stock Clerk

Higgins AC_MGR Stock Clerk

Gietz AC_ACCOUNT Stock Clerk

King AD_PRES Shipping Clerk

Kochhar AD_VP Shipping Clerk

De Haan AD_VP Shipping Clerk

Hunold IT_PROG Shipping Clerk

Ernst IT_PROG Shipping Clerk

Austin IT_PROG Shipping Clerk

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Pataballa IT_PROG Shipping Clerk

Lorentz IT_PROG Shipping Clerk

Greenberg FI_MGR Shipping Clerk

Faviet FI_ACCOUNT Shipping Clerk

Chen FI_ACCOUNT Shipping Clerk


Sciarra FI_ACCOUNT Shipping Clerk

Urman FI_ACCOUNT Shipping Clerk

Popp FI_ACCOUNT Shipping Clerk

Raphaely PU_MAN Shipping Clerk

Khoo PU_CLERK Shipping Clerk

Baida PU_CLERK Shipping Clerk

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Tobias PU_CLERK Shipping Clerk

Himuro PU_CLERK Shipping Clerk

Colmenares PU_CLERK Shipping Clerk

Weiss ST_MAN Shipping Clerk

Fripp ST_MAN Shipping Clerk

Kaufling ST_MAN Shipping Clerk

Vollman ST_MAN Shipping Clerk

Mourgos ST_MAN Shipping Clerk

Nayer ST_CLERK Shipping Clerk

Mikkilineni ST_CLERK Shipping Clerk

Landry ST_CLERK Shipping Clerk

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Markle ST_CLERK Shipping Clerk

Bissot ST_CLERK Shipping Clerk

Atkinson ST_CLERK Shipping Clerk

Marlow ST_CLERK Shipping Clerk

Olson ST_CLERK Shipping Clerk

Mallin ST_CLERK Shipping Clerk


Rogers ST_CLERK Shipping Clerk

Gee ST_CLERK Shipping Clerk

Philtanker ST_CLERK Shipping Clerk

Ladwig ST_CLERK Shipping Clerk

Stiles ST_CLERK Shipping Clerk

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Seo ST_CLERK Shipping Clerk

Patel ST_CLERK Shipping Clerk

Rajs ST_CLERK Shipping Clerk

Davies ST_CLERK Shipping Clerk

Matos ST_CLERK Shipping Clerk

Vargas ST_CLERK Shipping Clerk

Russell SA_MAN Shipping Clerk

Partners SA_MAN Shipping Clerk

Errazuriz SA_MAN Shipping Clerk

Cambrault SA_MAN Shipping Clerk

Zlotkey SA_MAN Shipping Clerk

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Tucker SA_REP Shipping Clerk

Bernstein SA_REP Shipping Clerk

Hall SA_REP Shipping Clerk

Olsen SA_REP Shipping Clerk

Cambrault SA_REP Shipping Clerk

Tuvault SA_REP Shipping Clerk

King SA_REP Shipping Clerk


Sully SA_REP Shipping Clerk

McEwen SA_REP Shipping Clerk

Smith SA_REP Shipping Clerk

Doran SA_REP Shipping Clerk

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Sewall SA_REP Shipping Clerk

Vishney SA_REP Shipping Clerk

Greene SA_REP Shipping Clerk

Marvins SA_REP Shipping Clerk

Lee SA_REP Shipping Clerk

Ande SA_REP Shipping Clerk

Banda SA_REP Shipping Clerk

Ozer SA_REP Shipping Clerk

Bloom SA_REP Shipping Clerk

Fox SA_REP Shipping Clerk

Smith SA_REP Shipping Clerk

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Bates SA_REP Shipping Clerk

Kumar SA_REP Shipping Clerk

Abel SA_REP Shipping Clerk

Hutton SA_REP Shipping Clerk

Taylor SA_REP Shipping Clerk

Livingston SA_REP Shipping Clerk

Grant SA_REP Shipping Clerk

Johnson SA_REP Shipping Clerk


Taylor SH_CLERK Shipping Clerk

Fleaur SH_CLERK Shipping Clerk

Sullivan SH_CLERK Shipping Clerk

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Geoni SH_CLERK Shipping Clerk

Sarchand SH_CLERK Shipping Clerk

Bull SH_CLERK Shipping Clerk

Dellinger SH_CLERK Shipping Clerk

Cabrio SH_CLERK Shipping Clerk

Chung SH_CLERK Shipping Clerk

Dilly SH_CLERK Shipping Clerk

Gates SH_CLERK Shipping Clerk

Perkins SH_CLERK Shipping Clerk

Bell SH_CLERK Shipping Clerk

Everett SH_CLERK Shipping Clerk

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

McCain SH_CLERK Shipping Clerk

Jones SH_CLERK Shipping Clerk

Walsh SH_CLERK Shipping Clerk

Feeney SH_CLERK Shipping Clerk

OConnell SH_CLERK Shipping Clerk

Grant SH_CLERK Shipping Clerk

Whalen AD_ASST Shipping Clerk

Hartstein MK_MAN Shipping Clerk

Fay MK_REP Shipping Clerk


Mavris HR_REP Shipping Clerk

Baer PR_REP Shipping Clerk

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Higgins AC_MGR Shipping Clerk

Gietz AC_ACCOUNT Shipping Clerk

King AD_PRES Programmer

Kochhar AD_VP Programmer

De Haan AD_VP Programmer

Hunold IT_PROG Programmer

Ernst IT_PROG Programmer

Austin IT_PROG Programmer

Pataballa IT_PROG Programmer

Lorentz IT_PROG Programmer

Greenberg FI_MGR Programmer

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Faviet FI_ACCOUNT Programmer

Chen FI_ACCOUNT Programmer

Sciarra FI_ACCOUNT Programmer

Urman FI_ACCOUNT Programmer

Popp FI_ACCOUNT Programmer

Raphaely PU_MAN Programmer

Khoo PU_CLERK Programmer

Baida PU_CLERK Programmer

Tobias PU_CLERK Programmer

Himuro PU_CLERK Programmer


Colmenares PU_CLERK Programmer

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Weiss ST_MAN Programmer

Fripp ST_MAN Programmer

Kaufling ST_MAN Programmer

Vollman ST_MAN Programmer

Mourgos ST_MAN Programmer

Nayer ST_CLERK Programmer

Mikkilineni ST_CLERK Programmer

Landry ST_CLERK Programmer

Markle ST_CLERK Programmer

Bissot ST_CLERK Programmer

Atkinson ST_CLERK Programmer

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Marlow ST_CLERK Programmer

Olson ST_CLERK Programmer

Mallin ST_CLERK Programmer

Rogers ST_CLERK Programmer

Gee ST_CLERK Programmer

Philtanker ST_CLERK Programmer

Ladwig ST_CLERK Programmer

Stiles ST_CLERK Programmer

Seo ST_CLERK Programmer

Patel ST_CLERK Programmer

Rajs ST_CLERK Programmer


NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Davies ST_CLERK Programmer

Matos ST_CLERK Programmer

Vargas ST_CLERK Programmer

Russell SA_MAN Programmer

Partners SA_MAN Programmer

Errazuriz SA_MAN Programmer

Cambrault SA_MAN Programmer

Zlotkey SA_MAN Programmer

Tucker SA_REP Programmer

Bernstein SA_REP Programmer

Hall SA_REP Programmer

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Olsen SA_REP Programmer

Cambrault SA_REP Programmer

Tuvault SA_REP Programmer

King SA_REP Programmer

Sully SA_REP Programmer

McEwen SA_REP Programmer

Smith SA_REP Programmer

Doran SA_REP Programmer

Sewall SA_REP Programmer

Vishney SA_REP Programmer

Greene SA_REP Programmer


NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Marvins SA_REP Programmer

Lee SA_REP Programmer

Ande SA_REP Programmer

Banda SA_REP Programmer

Ozer SA_REP Programmer

Bloom SA_REP Programmer

Fox SA_REP Programmer

Smith SA_REP Programmer

Bates SA_REP Programmer

Kumar SA_REP Programmer

Abel SA_REP Programmer

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Hutton SA_REP Programmer

Taylor SA_REP Programmer

Livingston SA_REP Programmer

Grant SA_REP Programmer

Johnson SA_REP Programmer

Taylor SH_CLERK Programmer

Fleaur SH_CLERK Programmer

Sullivan SH_CLERK Programmer

Geoni SH_CLERK Programmer

Sarchand SH_CLERK Programmer

Bull SH_CLERK Programmer

NAME ID JOB_TITLE
------------------------- ---------- -----------------------------------

Dellinger SH_CLERK Programmer

Cabrio SH_CLERK Programmer

Chung SH_CLERK Programmer

Dilly SH_CLERK Programmer

Gates SH_CLERK Programmer

Perkins SH_CLERK Programmer

Bell SH_CLERK Programmer

Everett SH_CLERK Programmer

McCain SH_CLERK Programmer

Jones SH_CLERK Programmer

Walsh SH_CLERK Programmer

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Feeney SH_CLERK Programmer

OConnell SH_CLERK Programmer

Grant SH_CLERK Programmer

Whalen AD_ASST Programmer

Hartstein MK_MAN Programmer

Fay MK_REP Programmer

Mavris HR_REP Programmer

Baer PR_REP Programmer

Higgins AC_MGR Programmer

Gietz AC_ACCOUNT Programmer

King AD_PRES Marketing Manager

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------


Kochhar AD_VP Marketing Manager

De Haan AD_VP Marketing Manager

Hunold IT_PROG Marketing Manager

Ernst IT_PROG Marketing Manager

Austin IT_PROG Marketing Manager

Pataballa IT_PROG Marketing Manager

Lorentz IT_PROG Marketing Manager

Greenberg FI_MGR Marketing Manager

Faviet FI_ACCOUNT Marketing Manager

Chen FI_ACCOUNT Marketing Manager

Sciarra FI_ACCOUNT Marketing Manager

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Urman FI_ACCOUNT Marketing Manager

Popp FI_ACCOUNT Marketing Manager

Raphaely PU_MAN Marketing Manager

Khoo PU_CLERK Marketing Manager

Baida PU_CLERK Marketing Manager

Tobias PU_CLERK Marketing Manager

Himuro PU_CLERK Marketing Manager

Colmenares PU_CLERK Marketing Manager

Weiss ST_MAN Marketing Manager

Fripp ST_MAN Marketing Manager

Kaufling ST_MAN Marketing Manager

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Vollman ST_MAN Marketing Manager


Mourgos ST_MAN Marketing Manager

Nayer ST_CLERK Marketing Manager

Mikkilineni ST_CLERK Marketing Manager

Landry ST_CLERK Marketing Manager

Markle ST_CLERK Marketing Manager

Bissot ST_CLERK Marketing Manager

Atkinson ST_CLERK Marketing Manager

Marlow ST_CLERK Marketing Manager

Olson ST_CLERK Marketing Manager

Mallin ST_CLERK Marketing Manager

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Rogers ST_CLERK Marketing Manager

Gee ST_CLERK Marketing Manager

Philtanker ST_CLERK Marketing Manager

Ladwig ST_CLERK Marketing Manager

Stiles ST_CLERK Marketing Manager

Seo ST_CLERK Marketing Manager

Patel ST_CLERK Marketing Manager

Rajs ST_CLERK Marketing Manager

Davies ST_CLERK Marketing Manager

Matos ST_CLERK Marketing Manager

Vargas ST_CLERK Marketing Manager

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Russell SA_MAN Marketing Manager

Partners SA_MAN Marketing Manager


Errazuriz SA_MAN Marketing Manager

Cambrault SA_MAN Marketing Manager

Zlotkey SA_MAN Marketing Manager

Tucker SA_REP Marketing Manager

Bernstein SA_REP Marketing Manager

Hall SA_REP Marketing Manager

Olsen SA_REP Marketing Manager

Cambrault SA_REP Marketing Manager

Tuvault SA_REP Marketing Manager

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

King SA_REP Marketing Manager

Sully SA_REP Marketing Manager

McEwen SA_REP Marketing Manager

Smith SA_REP Marketing Manager

Doran SA_REP Marketing Manager

Sewall SA_REP Marketing Manager

Vishney SA_REP Marketing Manager

Greene SA_REP Marketing Manager

Marvins SA_REP Marketing Manager

Lee SA_REP Marketing Manager

Ande SA_REP Marketing Manager

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Banda SA_REP Marketing Manager

Ozer SA_REP Marketing Manager

Bloom SA_REP Marketing Manager


Fox SA_REP Marketing Manager

Smith SA_REP Marketing Manager

Bates SA_REP Marketing Manager

Kumar SA_REP Marketing Manager

Abel SA_REP Marketing Manager

Hutton SA_REP Marketing Manager

Taylor SA_REP Marketing Manager

Livingston SA_REP Marketing Manager

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Grant SA_REP Marketing Manager

Johnson SA_REP Marketing Manager

Taylor SH_CLERK Marketing Manager

Fleaur SH_CLERK Marketing Manager

Sullivan SH_CLERK Marketing Manager

Geoni SH_CLERK Marketing Manager

Sarchand SH_CLERK Marketing Manager

Bull SH_CLERK Marketing Manager

Dellinger SH_CLERK Marketing Manager

Cabrio SH_CLERK Marketing Manager

Chung SH_CLERK Marketing Manager

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Dilly SH_CLERK Marketing Manager

Gates SH_CLERK Marketing Manager

Perkins SH_CLERK Marketing Manager

Bell SH_CLERK Marketing Manager


Everett SH_CLERK Marketing Manager

McCain SH_CLERK Marketing Manager

Jones SH_CLERK Marketing Manager

Walsh SH_CLERK Marketing Manager

Feeney SH_CLERK Marketing Manager

OConnell SH_CLERK Marketing Manager

Grant SH_CLERK Marketing Manager

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Whalen AD_ASST Marketing Manager

Hartstein MK_MAN Marketing Manager

Fay MK_REP Marketing Manager

Mavris HR_REP Marketing Manager

Baer PR_REP Marketing Manager

Higgins AC_MGR Marketing Manager

Gietz AC_ACCOUNT Marketing Manager

King AD_PRES Marketing Representative

Kochhar AD_VP Marketing Representative

De Haan AD_VP Marketing Representative

Hunold IT_PROG Marketing Representative

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Ernst IT_PROG Marketing Representative

Austin IT_PROG Marketing Representative

Pataballa IT_PROG Marketing Representative

Lorentz IT_PROG Marketing Representative

Greenberg FI_MGR Marketing Representative


Faviet FI_ACCOUNT Marketing Representative

Chen FI_ACCOUNT Marketing Representative

Sciarra FI_ACCOUNT Marketing Representative

Urman FI_ACCOUNT Marketing Representative

Popp FI_ACCOUNT Marketing Representative

Raphaely PU_MAN Marketing Representative

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Khoo PU_CLERK Marketing Representative

Baida PU_CLERK Marketing Representative

Tobias PU_CLERK Marketing Representative

Himuro PU_CLERK Marketing Representative

Colmenares PU_CLERK Marketing Representative

Weiss ST_MAN Marketing Representative

Fripp ST_MAN Marketing Representative

Kaufling ST_MAN Marketing Representative

Vollman ST_MAN Marketing Representative

Mourgos ST_MAN Marketing Representative

Nayer ST_CLERK Marketing Representative

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Mikkilineni ST_CLERK Marketing Representative

Landry ST_CLERK Marketing Representative

Markle ST_CLERK Marketing Representative

Bissot ST_CLERK Marketing Representative

Atkinson ST_CLERK Marketing Representative

Marlow ST_CLERK Marketing Representative


Olson ST_CLERK Marketing Representative

Mallin ST_CLERK Marketing Representative

Rogers ST_CLERK Marketing Representative

Gee ST_CLERK Marketing Representative

Philtanker ST_CLERK Marketing Representative

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Ladwig ST_CLERK Marketing Representative

Stiles ST_CLERK Marketing Representative

Seo ST_CLERK Marketing Representative

Patel ST_CLERK Marketing Representative

Rajs ST_CLERK Marketing Representative

Davies ST_CLERK Marketing Representative

Matos ST_CLERK Marketing Representative

Vargas ST_CLERK Marketing Representative

Russell SA_MAN Marketing Representative

Partners SA_MAN Marketing Representative

Errazuriz SA_MAN Marketing Representative

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Cambrault SA_MAN Marketing Representative

Zlotkey SA_MAN Marketing Representative

Tucker SA_REP Marketing Representative

Bernstein SA_REP Marketing Representative

Hall SA_REP Marketing Representative

Olsen SA_REP Marketing Representative

Cambrault SA_REP Marketing Representative


Tuvault SA_REP Marketing Representative

King SA_REP Marketing Representative

Sully SA_REP Marketing Representative

McEwen SA_REP Marketing Representative

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Smith SA_REP Marketing Representative

Doran SA_REP Marketing Representative

Sewall SA_REP Marketing Representative

Vishney SA_REP Marketing Representative

Greene SA_REP Marketing Representative

Marvins SA_REP Marketing Representative

Lee SA_REP Marketing Representative

Ande SA_REP Marketing Representative

Banda SA_REP Marketing Representative

Ozer SA_REP Marketing Representative

Bloom SA_REP Marketing Representative

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Fox SA_REP Marketing Representative

Smith SA_REP Marketing Representative

Bates SA_REP Marketing Representative

Kumar SA_REP Marketing Representative

Abel SA_REP Marketing Representative

Hutton SA_REP Marketing Representative

Taylor SA_REP Marketing Representative

Livingston SA_REP Marketing Representative


Grant SA_REP Marketing Representative

Johnson SA_REP Marketing Representative

Taylor SH_CLERK Marketing Representative

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Fleaur SH_CLERK Marketing Representative

Sullivan SH_CLERK Marketing Representative

Geoni SH_CLERK Marketing Representative

Sarchand SH_CLERK Marketing Representative

Bull SH_CLERK Marketing Representative

Dellinger SH_CLERK Marketing Representative

Cabrio SH_CLERK Marketing Representative

Chung SH_CLERK Marketing Representative

Dilly SH_CLERK Marketing Representative

Gates SH_CLERK Marketing Representative

Perkins SH_CLERK Marketing Representative

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Bell SH_CLERK Marketing Representative

Everett SH_CLERK Marketing Representative

McCain SH_CLERK Marketing Representative

Jones SH_CLERK Marketing Representative

Walsh SH_CLERK Marketing Representative

Feeney SH_CLERK Marketing Representative

OConnell SH_CLERK Marketing Representative

Grant SH_CLERK Marketing Representative

Whalen AD_ASST Marketing Representative


Hartstein MK_MAN Marketing Representative

Fay MK_REP Marketing Representative

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Mavris HR_REP Marketing Representative

Baer PR_REP Marketing Representative

Higgins AC_MGR Marketing Representative

Gietz AC_ACCOUNT Marketing Representative

King AD_PRES Human Resources Representative

Kochhar AD_VP Human Resources Representative

De Haan AD_VP Human Resources Representative

Hunold IT_PROG Human Resources Representative

Ernst IT_PROG Human Resources Representative

Austin IT_PROG Human Resources Representative

Pataballa IT_PROG Human Resources Representative

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Lorentz IT_PROG Human Resources Representative

Greenberg FI_MGR Human Resources Representative

Faviet FI_ACCOUNT Human Resources Representative

Chen FI_ACCOUNT Human Resources Representative

Sciarra FI_ACCOUNT Human Resources Representative

Urman FI_ACCOUNT Human Resources Representative

Popp FI_ACCOUNT Human Resources Representative

Raphaely PU_MAN Human Resources Representative

Khoo PU_CLERK Human Resources Representative

Baida PU_CLERK Human Resources Representative


Tobias PU_CLERK Human Resources Representative

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Himuro PU_CLERK Human Resources Representative

Colmenares PU_CLERK Human Resources Representative

Weiss ST_MAN Human Resources Representative

Fripp ST_MAN Human Resources Representative

Kaufling ST_MAN Human Resources Representative

Vollman ST_MAN Human Resources Representative

Mourgos ST_MAN Human Resources Representative

Nayer ST_CLERK Human Resources Representative

Mikkilineni ST_CLERK Human Resources Representative

Landry ST_CLERK Human Resources Representative

Markle ST_CLERK Human Resources Representative

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Bissot ST_CLERK Human Resources Representative

Atkinson ST_CLERK Human Resources Representative

Marlow ST_CLERK Human Resources Representative

Olson ST_CLERK Human Resources Representative

Mallin ST_CLERK Human Resources Representative

Rogers ST_CLERK Human Resources Representative

Gee ST_CLERK Human Resources Representative

Philtanker ST_CLERK Human Resources Representative

Ladwig ST_CLERK Human Resources Representative

Stiles ST_CLERK Human Resources Representative

Seo ST_CLERK Human Resources Representative


NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Patel ST_CLERK Human Resources Representative

Rajs ST_CLERK Human Resources Representative

Davies ST_CLERK Human Resources Representative

Matos ST_CLERK Human Resources Representative

Vargas ST_CLERK Human Resources Representative

Russell SA_MAN Human Resources Representative

Partners SA_MAN Human Resources Representative

Errazuriz SA_MAN Human Resources Representative

Cambrault SA_MAN Human Resources Representative

Zlotkey SA_MAN Human Resources Representative

Tucker SA_REP Human Resources Representative

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Bernstein SA_REP Human Resources Representative

Hall SA_REP Human Resources Representative

Olsen SA_REP Human Resources Representative

Cambrault SA_REP Human Resources Representative

Tuvault SA_REP Human Resources Representative

King SA_REP Human Resources Representative

Sully SA_REP Human Resources Representative

McEwen SA_REP Human Resources Representative

Smith SA_REP Human Resources Representative

Doran SA_REP Human Resources Representative

Sewall SA_REP Human Resources Representative


NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Vishney SA_REP Human Resources Representative

Greene SA_REP Human Resources Representative

Marvins SA_REP Human Resources Representative

Lee SA_REP Human Resources Representative

Ande SA_REP Human Resources Representative

Banda SA_REP Human Resources Representative

Ozer SA_REP Human Resources Representative

Bloom SA_REP Human Resources Representative

Fox SA_REP Human Resources Representative

Smith SA_REP Human Resources Representative

Bates SA_REP Human Resources Representative

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Kumar SA_REP Human Resources Representative

Abel SA_REP Human Resources Representative

Hutton SA_REP Human Resources Representative

Taylor SA_REP Human Resources Representative

Livingston SA_REP Human Resources Representative

Grant SA_REP Human Resources Representative

Johnson SA_REP Human Resources Representative

Taylor SH_CLERK Human Resources Representative

Fleaur SH_CLERK Human Resources Representative

Sullivan SH_CLERK Human Resources Representative

Geoni SH_CLERK Human Resources Representative

NAME ID JOB_TITLE
------------------------- ---------- -----------------------------------

Sarchand SH_CLERK Human Resources Representative

Bull SH_CLERK Human Resources Representative

Dellinger SH_CLERK Human Resources Representative

Cabrio SH_CLERK Human Resources Representative

Chung SH_CLERK Human Resources Representative

Dilly SH_CLERK Human Resources Representative

Gates SH_CLERK Human Resources Representative

Perkins SH_CLERK Human Resources Representative

Bell SH_CLERK Human Resources Representative

Everett SH_CLERK Human Resources Representative

McCain SH_CLERK Human Resources Representative

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Jones SH_CLERK Human Resources Representative

Walsh SH_CLERK Human Resources Representative

Feeney SH_CLERK Human Resources Representative

OConnell SH_CLERK Human Resources Representative

Grant SH_CLERK Human Resources Representative

Whalen AD_ASST Human Resources Representative

Hartstein MK_MAN Human Resources Representative

Fay MK_REP Human Resources Representative

Mavris HR_REP Human Resources Representative

Baer PR_REP Human Resources Representative

Higgins AC_MGR Human Resources Representative

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------


Gietz AC_ACCOUNT Human Resources Representative

King AD_PRES Public Relations Representative

Kochhar AD_VP Public Relations Representative

De Haan AD_VP Public Relations Representative

Hunold IT_PROG Public Relations Representative

Ernst IT_PROG Public Relations Representative

Austin IT_PROG Public Relations Representative

Pataballa IT_PROG Public Relations Representative

Lorentz IT_PROG Public Relations Representative

Greenberg FI_MGR Public Relations Representative

Faviet FI_ACCOUNT Public Relations Representative

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Chen FI_ACCOUNT Public Relations Representative

Sciarra FI_ACCOUNT Public Relations Representative

Urman FI_ACCOUNT Public Relations Representative

Popp FI_ACCOUNT Public Relations Representative

Raphaely PU_MAN Public Relations Representative

Khoo PU_CLERK Public Relations Representative

Baida PU_CLERK Public Relations Representative

Tobias PU_CLERK Public Relations Representative

Himuro PU_CLERK Public Relations Representative

Colmenares PU_CLERK Public Relations Representative

Weiss ST_MAN Public Relations Representative

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Fripp ST_MAN Public Relations Representative


Kaufling ST_MAN Public Relations Representative

Vollman ST_MAN Public Relations Representative

Mourgos ST_MAN Public Relations Representative

Nayer ST_CLERK Public Relations Representative

Mikkilineni ST_CLERK Public Relations Representative

Landry ST_CLERK Public Relations Representative

Markle ST_CLERK Public Relations Representative

Bissot ST_CLERK Public Relations Representative

Atkinson ST_CLERK Public Relations Representative

Marlow ST_CLERK Public Relations Representative

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Olson ST_CLERK Public Relations Representative

Mallin ST_CLERK Public Relations Representative

Rogers ST_CLERK Public Relations Representative

Gee ST_CLERK Public Relations Representative

Philtanker ST_CLERK Public Relations Representative

Ladwig ST_CLERK Public Relations Representative

Stiles ST_CLERK Public Relations Representative

Seo ST_CLERK Public Relations Representative

Patel ST_CLERK Public Relations Representative

Rajs ST_CLERK Public Relations Representative

Davies ST_CLERK Public Relations Representative

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Matos ST_CLERK Public Relations Representative

Vargas ST_CLERK Public Relations Representative


Russell SA_MAN Public Relations Representative

Partners SA_MAN Public Relations Representative

Errazuriz SA_MAN Public Relations Representative

Cambrault SA_MAN Public Relations Representative

Zlotkey SA_MAN Public Relations Representative

Tucker SA_REP Public Relations Representative

Bernstein SA_REP Public Relations Representative

Hall SA_REP Public Relations Representative

Olsen SA_REP Public Relations Representative

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Cambrault SA_REP Public Relations Representative

Tuvault SA_REP Public Relations Representative

King SA_REP Public Relations Representative

Sully SA_REP Public Relations Representative

McEwen SA_REP Public Relations Representative

Smith SA_REP Public Relations Representative

Doran SA_REP Public Relations Representative

Sewall SA_REP Public Relations Representative

Vishney SA_REP Public Relations Representative

Greene SA_REP Public Relations Representative

Marvins SA_REP Public Relations Representative

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Lee SA_REP Public Relations Representative

Ande SA_REP Public Relations Representative

Banda SA_REP Public Relations Representative


Ozer SA_REP Public Relations Representative

Bloom SA_REP Public Relations Representative

Fox SA_REP Public Relations Representative

Smith SA_REP Public Relations Representative

Bates SA_REP Public Relations Representative

Kumar SA_REP Public Relations Representative

Abel SA_REP Public Relations Representative

Hutton SA_REP Public Relations Representative

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Taylor SA_REP Public Relations Representative

Livingston SA_REP Public Relations Representative

Grant SA_REP Public Relations Representative

Johnson SA_REP Public Relations Representative

Taylor SH_CLERK Public Relations Representative

Fleaur SH_CLERK Public Relations Representative

Sullivan SH_CLERK Public Relations Representative

Geoni SH_CLERK Public Relations Representative

Sarchand SH_CLERK Public Relations Representative

Bull SH_CLERK Public Relations Representative

Dellinger SH_CLERK Public Relations Representative

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Cabrio SH_CLERK Public Relations Representative

Chung SH_CLERK Public Relations Representative

Dilly SH_CLERK Public Relations Representative

Gates SH_CLERK Public Relations Representative


Perkins SH_CLERK Public Relations Representative

Bell SH_CLERK Public Relations Representative

Everett SH_CLERK Public Relations Representative

McCain SH_CLERK Public Relations Representative

Jones SH_CLERK Public Relations Representative

Walsh SH_CLERK Public Relations Representative

Feeney SH_CLERK Public Relations Representative

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

OConnell SH_CLERK Public Relations Representative

Grant SH_CLERK Public Relations Representative

Whalen AD_ASST Public Relations Representative

Hartstein MK_MAN Public Relations Representative

Fay MK_REP Public Relations Representative

Mavris HR_REP Public Relations Representative

Baer PR_REP Public Relations Representative

Higgins AC_MGR Public Relations Representative

Gietz AC_ACCOUNT Public Relations Representative

2033 rows selected.

SQL> select e.last_name name,e.job_id id, j.job_title from employees e ,jobs j where e.job_id = j.job_id;

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Gietz AC_ACCOUNT Public Accountant

Higgins AC_MGR Accounting Manager

Whalen AD_ASST Administration Assistant


King AD_PRES President

Kochhar AD_VP Administration Vice President

De Haan AD_VP Administration Vice President

Urman FI_ACCOUNT Accountant

Sciarra FI_ACCOUNT Accountant

Popp FI_ACCOUNT Accountant

Chen FI_ACCOUNT Accountant

Faviet FI_ACCOUNT Accountant

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Greenberg FI_MGR Finance Manager

Mavris HR_REP Human Resources Representative

Pataballa IT_PROG Programmer

Hunold IT_PROG Programmer

Austin IT_PROG Programmer

Ernst IT_PROG Programmer

Lorentz IT_PROG Programmer

Hartstein MK_MAN Marketing Manager

Fay MK_REP Marketing Representative

Baer PR_REP Public Relations Representative

Himuro PU_CLERK Purchasing Clerk

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Colmenares PU_CLERK Purchasing Clerk

Tobias PU_CLERK Purchasing Clerk

Baida PU_CLERK Purchasing Clerk

Khoo PU_CLERK Purchasing Clerk


Raphaely PU_MAN Purchasing Manager

Cambrault SA_MAN Sales Manager

Errazuriz SA_MAN Sales Manager

Partners SA_MAN Sales Manager

Russell SA_MAN Sales Manager

Zlotkey SA_MAN Sales Manager

Abel SA_REP Sales Representative

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Vishney SA_REP Sales Representative

Banda SA_REP Sales Representative

Bates SA_REP Sales Representative

Bernstein SA_REP Sales Representative

Bloom SA_REP Sales Representative

Cambrault SA_REP Sales Representative

Doran SA_REP Sales Representative

Fox SA_REP Sales Representative

Grant SA_REP Sales Representative

Greene SA_REP Sales Representative

Hall SA_REP Sales Representative

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Hutton SA_REP Sales Representative

Johnson SA_REP Sales Representative

King SA_REP Sales Representative

Kumar SA_REP Sales Representative

Lee SA_REP Sales Representative


Livingston SA_REP Sales Representative

Marvins SA_REP Sales Representative

McEwen SA_REP Sales Representative

Olsen SA_REP Sales Representative

Ozer SA_REP Sales Representative

Sewall SA_REP Sales Representative

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Smith SA_REP Sales Representative

Smith SA_REP Sales Representative

Sully SA_REP Sales Representative

Taylor SA_REP Sales Representative

Tucker SA_REP Sales Representative

Tuvault SA_REP Sales Representative

Ande SA_REP Sales Representative

Bell SH_CLERK Shipping Clerk

Walsh SH_CLERK Shipping Clerk

Cabrio SH_CLERK Shipping Clerk

Chung SH_CLERK Shipping Clerk

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Dellinger SH_CLERK Shipping Clerk

Dilly SH_CLERK Shipping Clerk

Everett SH_CLERK Shipping Clerk

Feeney SH_CLERK Shipping Clerk

Fleaur SH_CLERK Shipping Clerk

Gates SH_CLERK Shipping Clerk


Geoni SH_CLERK Shipping Clerk

Grant SH_CLERK Shipping Clerk

Jones SH_CLERK Shipping Clerk

McCain SH_CLERK Shipping Clerk

OConnell SH_CLERK Shipping Clerk

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Perkins SH_CLERK Shipping Clerk

Sarchand SH_CLERK Shipping Clerk

Sullivan SH_CLERK Shipping Clerk

Taylor SH_CLERK Shipping Clerk

Bull SH_CLERK Shipping Clerk

Atkinson ST_CLERK Stock Clerk

Bissot ST_CLERK Stock Clerk

Vargas ST_CLERK Stock Clerk

Stiles ST_CLERK Stock Clerk

Seo ST_CLERK Stock Clerk

Rogers ST_CLERK Stock Clerk

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Davies ST_CLERK Stock Clerk

Gee ST_CLERK Stock Clerk

Ladwig ST_CLERK Stock Clerk

Landry ST_CLERK Stock Clerk

Mallin ST_CLERK Stock Clerk

Markle ST_CLERK Stock Clerk

Marlow ST_CLERK Stock Clerk


Matos ST_CLERK Stock Clerk

Mikkilineni ST_CLERK Stock Clerk

Nayer ST_CLERK Stock Clerk

Olson ST_CLERK Stock Clerk

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Patel ST_CLERK Stock Clerk

Philtanker ST_CLERK Stock Clerk

Rajs ST_CLERK Stock Clerk

Kaufling ST_MAN Stock Manager

Mourgos ST_MAN Stock Manager

Fripp ST_MAN Stock Manager

Vollman ST_MAN Stock Manager

Weiss ST_MAN Stock Manager

107 rows selected.

SQL> select e.last_name name,e.job_id id, j.job_title from employees e ,jobs j where e.job_id = j.job_id
and employee_id = 101;

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------

Kochhar AD_VP Administration Vice President

SQL> select e.last_name name,e.job_id id, 'ffff'||j.job_title from employees e ,jobs j where e.job_id =
j.job_id and employee_id = 101;

NAME ID 'FFFF'||J.JOB_TITLE
------------------------- ---------- ---------------------------------------

Kochhar AD_VP ffffAdministration Vice President

SQL> select e.last_name name,e.job_id id, 'present job title'||j.job_title from employees e ,jobs j where
e.job_id = j.job_id and employee_id = 101;

NAME ID

------------------------- ----------

'PRESENTJOBTITLE'||J.JOB_TITLE

----------------------------------------------------

Kochhar AD_VP

present job titleAdministration Vice President

SQL> set pagesize 200

SQL> set linesize 200

SQL> select e.last_name name,e.job_id id, 'present job title'||j.job_title from employees e ,jobs j where
e.job_id = j.job_id and employee_id = 101;

NAME ID 'PRESENTJOBTITLE'||J.JOB_TITLE

------------------------- ---------- ----------------------------------------------------

Kochhar AD_VP present job titleAdministration Vice President

SQL> select e.last_name name,e.job_id id, 'present job title'||j.job_title job_title from employees e ,jobs
j where e.job_id = j.job_id and employee_id = 101;

NAME ID JOB_TITLE

------------------------- ---------- ----------------------------------------------------

Kochhar AD_VP present job titleAdministration Vice President


SQL> select e.last_name name,e.job_id id, 'present job title '||j.job_title job_title from employees
e ,jobs j where e.job_id = j.job_id and employee_id = 101;

NAME ID JOB_TITLE

------------------------- ---------- -----------------------------------------------------

Kochhar AD_VP present job title Administration Vice President

SQL> select e.last_name name,e.job_id id, 'present job title :'||j.job_title job_title from employees
e ,jobs j where e.job_id = j.job_id and employee_id = 101;

NAME ID JOB_TITLE

------------------------- ---------- ------------------------------------------------------

Kochhar AD_VP present job title :Administration Vice President

SQL> select e.last_name name,e.job_id id, 'present job title : '||j.job_title job_title from employees
e ,jobs j where e.job_id = j.job_id and employee_id = 101;

NAME ID JOB_TITLE

------------------------- ---------- -------------------------------------------------------

Kochhar AD_VP present job title : Administration Vice President

SQL> select e.last_name name,e.job_id id, 'Present Job Title : '||j.job_title job_title from employees
e ,jobs j where e.job_id = j.job_id and employee_id = 101;

NAME ID JOB_TITLE

------------------------- ---------- -------------------------------------------------------

Kochhar AD_VP Present Job Title : Administration Vice President

SQL> select e.last_name name,e.job_id id, 'Present Job Title: '||j.job_title job_title from employees
e ,jobs j where e.job_id = j.job_id and employee_id = 101;
NAME ID JOB_TITLE

------------------------- ---------- ------------------------------------------------------

Kochhar AD_VP Present Job Title: Administration Vice President

SQL> SELECT last_name from job_history where employee_id =101;

SELECT last_name from job_history where employee_id =101

ERROR at line 1:

ORA-00904: "LAST_NAME": invalid identifier

SQL> SELECT * from job_history where employee_id =101;

EMPLOYEE_ID START_DAT END_DATE JOB_ID DEPARTMENT_ID

----------- --------- --------- ---------- -------------

101 21-SEP-97 27-OCT-01 AC_ACCOUNT 110

101 28-OCT-01 15-MAR-05 AC_MGR 110

SQL> select e.last_name name,e.jobdesc jo_id id, 'Present Job Title: '||j.job_title job_title from
employees e ,jobs j where e.job_id = j.job_id and employee_id = 101;

select e.last_name name,e.jobdesc jo_id id, 'Present Job Title: '||j.job_title job_title from employees
e ,jobs j where e.job_id = j.job_id and employee_id = 101

ERROR at line 1:

ORA-00923: FROM keyword not found where expected

SQL> desc job_history


Name Null? Type

----------------------------------------------------------------------------------------------------------------- --------
----------------------------------------------------------------------------

EMPLOYEE_ID NOT NULL NUMBER(6)

START_DATE NOT NULL DATE

END_DATE NOT NULL DATE

JOB_ID NOT NULL VARCHAR2(10)

DEPARTMENT_ID NUMBER(4)

SQL> desc jobs

Name Null? Type

----------------------------------------------------------------------------------------------------------------- --------
----------------------------------------------------------------------------

JOB_ID NOT NULL VARCHAR2(10)

JOB_TITLE NOT NULL VARCHAR2(35)

MIN_SALARY NUMBER(6)

MAX_SALARY NUMBER(6)

SQL> select e.last_name name,e.jobdesc jo_id id, 'Present Job Title: '||j.job_title job_title from
employees e ,jobs j where e.job_id = j.job_id and employee_id = 101;

select e.last_name name,e.jobdesc jo_id id, 'Present Job Title: '||j.job_title job_title from employees
e ,jobs j where e.job_id = j.job_id and employee_id = 101

ERROR at line 1:

ORA-00923: FROM keyword not found where expected

SQL> select e.last_name name,e.job_id id, 'Present Job Title: '||j.job_title job_title from employees
e ,jobs j where e.job_id = j.job_id and employee_id = 101;
NAME ID JOB_TITLE

------------------------- ---------- ------------------------------------------------------

Kochhar AD_VP Present Job Title: Administration Vice President

SQL> select e.last_name name,jh.job_id id, 'Present Job Title: '||j.job_title job_title from employees e ,
job_history jh, jobs j where e.employee_id = jh.employee_id and jh.job_id = j.job_id and employee_id =
101;

select e.last_name name,jh.job_id id, 'Present Job Title: '||j.job_title job_title from employees e ,
job_history jh, jobs j where e.employee_id = jh.employee_id and jh.job_id = j.job_id and employee_id =
101

ERROR at line 1:

ORA-00918: column ambiguously defined

SQL> select e.last_name name,jh.job_id id, 'Present Job Title: '||j.job_title job_title from employees e ,
job_history jh, jobs j where e.employee_id = jh.employee_id and jh.job_id = j.job_id and jh.employee_id
= 101;

NAME ID JOB_TITLE

------------------------- ---------- ------------------------------------------------------

Kochhar AC_ACCOUNT Present Job Title: Public Accountant

Kochhar AC_MGR Present Job Title: Accounting Manager

SQL> select e.last_name name,jh.job_id id, 'Present Job Title: '||j.job_title job_title from employees e ,
job_history jh, jobs j where e.employee_id = jh.employee_id and jh.job_id = j.job_id and e.employee_id
= 101;

NAME ID JOB_TITLE

------------------------- ---------- ------------------------------------------------------

Kochhar AC_ACCOUNT Present Job Title: Public Accountant


Kochhar AC_MGR Present Job Title: Accounting Manager

SQL> select e.last_name name,e.jobdesc jo_id id, 'Present Job Title: '||j.job_title job_title from
employees e ,jobs j where e.job_id = j.job_id and employee_id = 101;

select e.last_name name,e.jobdesc jo_id id, 'Present Job Title: '||j.job_title job_title from employees
e ,jobs j where e.job_id = j.job_id and employee_id = 101

ERROR at line 1:

ORA-00923: FROM keyword not found where expected

SQL> select e.last_name name,e.job_id id, 'Present Job Title: '||j.job_title job_title from employees
e ,jobs j where e.job_id = j.job_id and employee_id = 101;

NAME ID JOB_TITLE

------------------------- ---------- ------------------------------------------------------

Kochhar AD_VP Present Job Title: Administration Vice President

SQL> select e.last_name name,e.job_id id, 'Present Job Title: '||j.job_title job_title from employees
e ,jobs j where e.job_id = j.job_id and employee_id = 101 union select e.last_name name,jh.job_id id,
'Present Job Title: '||j.job_title job_title from employees e , job_history jh, jobs j where e.employee_id =
jh.employee_id and jh.job_id = j.job_id and e.employee_id = 101;

NAME ID JOB_TITLE

------------------------- ---------- ------------------------------------------------------

Kochhar AC_ACCOUNT Present Job Title: Public Accountant

Kochhar AC_MGR Present Job Title: Accounting Manager

Kochhar AD_VP Present Job Title: Administration Vice President

SQL> select e.last_name name,jh.job_id id, 'Present Job Title: '||j.job_title job_title from employees e ,
job_history jh, jobs j where e.employee_id = jh.employee_id and jh.job_id = j.job_id and e.employee_id
= 101;
NAME ID JOB_TITLE

------------------------- ---------- ------------------------------------------------------

Kochhar AC_ACCOUNT Present Job Title: Public Accountant

Kochhar AC_MGR Present Job Title: Accounting Manager

SQL> select e.last_name name,jh.job_id id, 'Present Job Title: '||j.job_title job_title from employees e ,
job_history jh, jobs j where e.employee_id = jh.employee_id and jh.job_id = j.job_id and e.employee_id
= 101 union select e.last_name name,e.job_id id, 'Present Job Title: '||j.job_title job_title from
employees e ,jobs j where e.job_id = j.job_id and employee_id = 101;

NAME ID JOB_TITLE

------------------------- ---------- ------------------------------------------------------

Kochhar AC_ACCOUNT Present Job Title: Public Accountant

Kochhar AC_MGR Present Job Title: Accounting Manager

Kochhar AD_VP Present Job Title: Administration Vice President

SQL> select e.last_name name,e.job_id id, 'Present Job Title: '||j.job_title job_title from employees
e ,jobs j where e.job_id = j.job_id and employee_id = 101 union select e.last_name name,jh.job_id id,
'Present Job Title: '||j.job_title job_title from employees e , job_history jh, jobs j where e.employee_id =
jh.employee_id and jh.job_id = j.job_id and e.employee_id = 101;

NAME ID JOB_TITLE

------------------------- ---------- ------------------------------------------------------

Kochhar AC_ACCOUNT Present Job Title: Public Accountant

Kochhar AC_MGR Present Job Title: Accounting Manager

Kochhar AD_VP Present Job Title: Administration Vice President

SQL> select e.last_name name,e.job_id id, 'Present Job Title: '||j.job_title job_title from employees
e ,jobs j where e.job_id = j.job_id and employee_id = 101 union select e.last_name name,jh.job_id id,
'Present Job Title: '||j.job_title job_title from employees e , job_history jh, jobs j where e.employee_id =
jh.employee_id and jh.job_id = j.job_id and e.employee_id = 101 order by hire_date desc;
select e.last_name name,e.job_id id, 'Present Job Title: '||j.job_title job_title from employees e ,jobs j
where e.job_id = j.job_id and employee_id = 101 union select e.last_name name,jh.job_id id, 'Present
Job Title: '||j.job_title job_title from employees e , job_history jh, jobs j where e.employee_id =
jh.employee_id and jh.job_id = j.job_id and e.employee_id = 101 order by hire_date desc

ERROR at line 1:

ORA-00904: "HIRE_DATE": invalid identifier

SQL> select e.last_name name,e.job_id id, 'Present Job Title: '||j.job_title job_title from employees
e ,jobs j where e.job_id = j.job_id and employee_id = 101 union select e.last_name name,jh.job_id id,
'Present Job Title: '||j.job_title job_title from employees e , job_history jh, jobs j where e.employee_id =
jh.employee_id and jh.job_id = j.job_id and e.employee_id = 101 order by hire_date;

select e.last_name name,e.job_id id, 'Present Job Title: '||j.job_title job_title from employees e ,jobs j
where e.job_id = j.job_id and employee_id = 101 union select e.last_name name,jh.job_id id, 'Present
Job Title: '||j.job_title job_title from employees e , job_history jh, jobs j where e.employee_id =
jh.employee_id and jh.job_id = j.job_id and e.employee_id = 101 order by hire_date

ERROR at line 1:

ORA-00904: "HIRE_DATE": invalid identifier

SQL> select e.last_name name,e.job_id id, 'Present Job Title: '||j.job_title job_title from employees
e ,jobs j where e.job_id = j.job_id and employee_id = 101 union select e.last_name name,jh.job_id id,
'Present Job Title: '||j.job_title job_title from employees e , job_history jh, jobs j where e.employee_id =
jh.employee_id and jh.job_id = j.job_id and e.employee_id = 101 order by job_id;

select e.last_name name,e.job_id id, 'Present Job Title: '||j.job_title job_title from employees e ,jobs j
where e.job_id = j.job_id and employee_id = 101 union select e.last_name name,jh.job_id id, 'Present
Job Title: '||j.job_title job_title from employees e , job_history jh, jobs j where e.employee_id =
jh.employee_id and jh.job_id = j.job_id and e.employee_id = 101 order by job_id

ERROR at line 1:
ORA-00904: "JOB_ID": invalid identifier

SQL> select e.last_name name,e.job_id id, 'Present Job Title: '||j.job_title job_title from employees
e ,jobs j where e.job_id = j.job_id and employee_id = 101 union select e.last_name name,jh.job_id id,
'Present Job Title: '||j.job_title job_title from employees e , job_history jh, jobs j where e.employee_id =
jh.employee_id and jh.job_id = j.job_id and e.employee_id = 101 order by job_title;

NAME ID JOB_TITLE

------------------------- ---------- ------------------------------------------------------

Kochhar AC_MGR Present Job Title: Accounting Manager

Kochhar AD_VP Present Job Title: Administration Vice President

Kochhar AC_ACCOUNT Present Job Title: Public Accountant

SQL> select e.last_name name,e.job_id id, 'Present Job Title: '||j.job_title job_title from employees
e ,jobs j where e.job_id = j.job_id and employee_id = 101 union select e.last_name name,jh.job_id id,
'Present Job Title: '||j.job_title job_title from employees e , job_history jh, jobs j where e.employee_id =
jh.employee_id and jh.job_id = j.job_id and e.employee_id = 101;

NAME ID JOB_TITLE

------------------------- ---------- ------------------------------------------------------

Kochhar AC_ACCOUNT Present Job Title: Public Accountant

Kochhar AC_MGR Present Job Title: Accounting Manager

Kochhar AD_VP Present Job Title: Administration Vice President

SQL> select e.last_name name,e.job_id id, 'Present Job Title: '||j.job_title job_title from employees
e ,jobs j where e.job_id = j.job_id and employee_id = 101 union select e.last_name name,jh.job_id id,
'Previous Job Title: '||j.job_title job_title from employees e , job_history jh, jobs j where e.employee_id
= jh.employee_id and jh.job_id = j.job_id and e.employee_id = 101;

NAME ID JOB_TITLE

------------------------- ---------- -------------------------------------------------------


Kochhar AC_ACCOUNT Previous Job Title: Public Accountant

Kochhar AC_MGR Previous Job Title: Accounting Manager

Kochhar AD_VP Present Job Title: Administration Vice President

SQL> select e.last_name name,e.job_id id, 'Present Job Title: '||j.job_title job_title from employees
e ,jobs j where e.job_id = j.job_id and employee_id = 101 union select e.last_name name,jh.job_id id,
'Previous Job Title: '||j.job_title job_title from employees e , job_history jh, jobs j where e.employee_id
= jh.employee_id and jh.job_id = j.job_id and e.employee_id = 101 order by employee_id;

select e.last_name name,e.job_id id, 'Present Job Title: '||j.job_title job_title from employees e ,jobs j
where e.job_id = j.job_id and employee_id = 101 union select e.last_name name,jh.job_id id, 'Previous
Job Title: '||j.job_title job_title from employees e , job_history jh, jobs j where e.employee_id =
jh.employee_id and jh.job_id = j.job_id and e.employee_id = 101 order by employee_id

ERROR at line 1:

ORA-00904: "EMPLOYEE_ID": invalid identifier

SQL> select e.last_name name,e.job_id id, 'Present Job Title: '||j.job_title job_title from employees
e ,jobs j where e.job_id = j.job_id and employee_id = 101 union all select e.last_name name,jh.job_id id,
'Previous Job Title: '||j.job_title job_title from employees e , job_history jh, jobs j where e.employee_id
= jh.employee_id and jh.job_id = j.job_id and e.employee_id = 101;

NAME ID JOB_TITLE

------------------------- ---------- -------------------------------------------------------

Kochhar AD_VP Present Job Title: Administration Vice President

Kochhar AC_ACCOUNT Previous Job Title: Public Accountant

Kochhar AC_MGR Previous Job Title: Accounting Manager

SQL> select distinct employee_id from job_history;

EMPLOYEE_ID
-----------

101

102

114

122

176

200

201

7 rows selected.

SQL> select last_name from employees where employee_id not id (select distinct employee_id from
job_history;

select last_name from employees where employee_id not id (select distinct employee_id from
job_history

ERROR at line 1:

ORA-00920: invalid relational operator

SQL> select last_name from employees where employee_id not in (select distinct employee_id from
job_history;

select last_name from employees where employee_id not in (select distinct employee_id from
job_history

ERROR at line 1:

ORA-00907: missing right parenthesis


SQL> select last_name from employees where employee_id not in (select distinct employee_id from
job_history);

LAST_NAME

-------------------------

Abel

Ande

Atkinson

Austin

Baer

Baida

Banda

Bates

Bell

Bernstein

Bissot

Bloom

Bull

Cabrio

Cambrault

Cambrault

Chen

Chung

Colmenares

Davies

Dellinger

Dilly

Doran

Ernst
Errazuriz

Everett

Faviet

Fay

Feeney

Fleaur

Fox

Fripp

Gates

Gee

Geoni

Gietz

Grant

Grant

Greenberg

Greene

Hall

Higgins

Himuro

Hunold

Hutton

Johnson

Jones

Khoo

King

King

Kumar

Ladwig

Landry
Lee

Livingston

Lorentz

Mallin

Markle

Marlow

Marvins

Matos

Mavris

McCain

McEwen

Mikkilineni

Mourgos

Nayer

OConnell

Olsen

Olson

Ozer

Partners

Pataballa

Patel

Perkins

Philtanker

Popp

Rajs

Rogers

Russell

Sarchand

Sciarra
Seo

Sewall

Smith

Smith

Stiles

Sullivan

Sully

Taylor

Tobias

Tucker

Tuvault

Urman

Vargas

Vishney

Vollman

Walsh

Weiss

Zlotkey

100 rows selected.

SQL> select job_title from job_history;

select job_title from job_history

ERROR at line 1:

ORA-00904: "JOB_TITLE": invalid identifier

SQL> select job_title from jobs;


JOB_TITLE

-----------------------------------

President

Administration Vice President

Administration Assistant

Finance Manager

Accountant

Accounting Manager

Public Accountant

Sales Manager

Sales Representative

Purchasing Manager

Purchasing Clerk

Stock Manager

Stock Clerk

Shipping Clerk

Programmer

Marketing Manager

Marketing Representative

Human Resources Representative

Public Relations Representative

19 rows selected.

You might also like