Changes between Version 1 and Version 2 of newUsers


Ignore:
Timestamp:
06/02/17 14:11:47 (7 years ago)
Author:
lttoth@…
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • newUsers

    v1 v2  
    11= Creating New Users = 
    22Users fall into 3 basic categories: 
     3* OIT - SX accounts 
    34* Regular Staff and Student Employees 
    45* Consultants and VA Interns 
    5 * OIT - SX accounts 
     6== OIT -  SX Accounts == 
     7OIT staff are designated by the prefix of "sx".  When the zuaseed.ksh script is executed, it will produce all the information that is needed to create the OIT staff account with the exception of the actual Banner User ID.  That will start with "sn" and is not to be used.  An example result of running the zuaseed.ksh script follows.   
     8{{{ 
     9tongas -- /users/zu/zuausr > zuaseed.ksh 31198466 
     10 
     11SQL*Plus: Release 11.2.0.4.0 Production on Fri Jun 2 14:03:26 2017 
     12 
     13Copyright (c) 1982, 2013, Oracle.  All rights reserved. 
     14 
     15 
     16Connected to: 
     17Oracle Database 11g Enterprise Edition Release 11.2.0.4.0 - 64bit Production 
     18With the Partitioning, OLAP, Data Mining and Real Application Testing options 
     19 
     20.        User ID (30mil): 31xxxxxx 
     21.        Audit/[U]pdate : U 
     22.             Last Name : Hovercraft 
     23.            First Name : Nicole 
     24.           Middle Name : Dawn 
     25.               Student : N 
     26.                   TKL : T180 
     27.                  ECLS : XR 
     28.           Prefix Area : f 
     29.         Employee Type : n 
     30.    Employee Term Date : NONE 
     31.   Empl Last Work Date : NONE 
     32.              ID regex : ^[f][nx][a-z]+(\d|1\d)?$ 
     33.              Position : 208656/00-Administrative Management 1 TERM_DATE:NONE 
     34.               Base ID : snndh7 
     35.           Full new ID : snndh7 
     36.                 MISC2 : Hovercraft/Nicole Dawn,,sn.AP.T802.XR.,IS Consultant 3A;OIT Support Center 
     37 
     38PL/SQL procedure successfully completed. 
     39 
     40Generate ZUAUSR_LOAD entry? (y[N]):  
     41 
     42... 
     43 
     44}}} 
     45 
     46Using the data show above, the following steps are followed to create a SW OIT Banner User ID: 
     47Login in as self to RPTP : ssh sx...@rptp.alaska.edu 
     48Shell from home directory to PROD as ZUASUR : ssh zuausr@prod 
     49From the command line run the creation script with the new user's UA ID as input 
     50   * $ zuaseed.ksh 3xxxxxxx 
     51   * Keep the results of the screen available for copy/paste into the table 
     52   * Enter 'N' at first prompt 
     53   * Enter 'N' at second prompt 
     54Login in to RPTP :  $ ssh sx...@rptp.alaska.edu 
     55Open SQLPLUS as ZUAUSR : $ sqlplus zuausr@prod 
     56Supply ZUAUSR password at prompt 
     57Run the following query for both ZTBUSRH and ZTBUSRH_LOAD 
     58{{{ 
     59INSERT INTO ztbusrh<_load> 
     60( 
     61 ztbusrh_user_acct_id, ztbusrh_user_uid, ztbusrh_first_name, ztbusrh_last_name, 
     62 ztbusrh_middle_initial, ztbusrh_ssn, ztbusrh_misc1, ztbusrh_misc2 
     63) 
     64values 
     65( 
     66 'sxndh7', -1, 'Nicole', 'Hovercraft', 
     67 'D', <SSN>, '-1', 'Hovercraft/Nicole Dawn,,sn.AP.T802.XR.,IS Consultant 3A;OIT Support Center' 
     68) 
     69}}} 
    670== Regular Staff and Student Employees == 
    771Both the old manual process for creating new employees and a description of the new process can be found in [[https://docs.google.com/document/d/1Q6XzhPsRqwO4OU4nV4f3iMLd9JNwcQq0Ft0NpApsprk/edit|UA - Role Provisioning Operations Manual]].  The old process description is useful in that it provides a listing of campus prefixes which comes in handy for Consultant and VA Work Study Banner User ID creation. 
     
    80144}}} 
    81145 
    82