diff --git a/demo/postgresql/docker-compose.yml b/demo/postgresql/docker-compose.yml new file mode 100644 index 0000000..79a3738 --- /dev/null +++ b/demo/postgresql/docker-compose.yml @@ -0,0 +1,23 @@ +version: "3.3" + +services: + postgresql: + build: ./postgresql/ + environment: + - POSTGRES_PASSWORD=password + expose: + - 5432 + ports: + - 5432:5432 + networks: + - net + volumes: + - data:/var/lib/postgresql/data + + +networks: + net: + driver: bridge + +volumes: + data: diff --git a/demo/postgresql/midpoint-additions-for-standalone-run.yml b/demo/postgresql/midpoint-additions-for-standalone-run.yml new file mode 100644 index 0000000..2e3cabe --- /dev/null +++ b/demo/postgresql/midpoint-additions-for-standalone-run.yml @@ -0,0 +1,37 @@ +# +# This is a file with additions to ../midpoint/docker-compose.yml file, to be used in the following way: +# +# (in this directory) +# +# $ docker-compose up +# +# (in ../midpoint directory) +# +# $ docker-compose -f docker-compose.yml -f ../demo/postgresql/midpoint-additions-for-standalone-run.yml up midpoint-server +# +# It expects that PostgreSQL is started independently of midPoint. When executing the containers in this way, there are two compositions with the following containers: +# +# "midpoint" +# +# - midpoint-server +# +# "postgresql" +# +# - postgresql +# + +version: "3.3" + +services: + midpoint-server: + environment: + - REPO_DATABASE_TYPE=postgresql + - REPO_HOST=postgresql + - REPO_DATABASE=midpoint + - REPO_USER=midpoint + networks: + - postgresql_net + +networks: + postgresql_net: + external: true diff --git a/demo/postgresql/midpoint-additions.yml b/demo/postgresql/midpoint-additions.yml new file mode 100644 index 0000000..5cf43d4 --- /dev/null +++ b/demo/postgresql/midpoint-additions.yml @@ -0,0 +1,38 @@ +# +# This is a file with additions to ../midpoint/docker-compose.yml file, to be used in the following way: +# +# (in ../midpoint directory) +# +# $ docker-compose -f docker-compose.yml -f ../demo/postgresql/midpoint-additions.yml up midpoint-server postgresql +# +# It expects that PostgreSQL is started as part of midPoint composition. So there will be three containers there: +# +# 1) midpoint-server +# 2) postgresql +# + +version: "3.3" + +services: + postgresql: + build: ../demo/postgresql/postgresql/ + environment: + - POSTGRES_PASSWORD=password + expose: + - 5432 + ports: + - 5432:5432 + networks: + - back + volumes: + - postgresql_data:/var/lib/postgresql/data + + midpoint-server: + environment: + - REPO_DATABASE_TYPE=postgresql + - REPO_HOST=postgresql + - REPO_DATABASE=midpoint + - REPO_USER=midpoint + +volumes: + postgresql_data: diff --git a/demo/postgresql/postgresql/Dockerfile b/demo/postgresql/postgresql/Dockerfile new file mode 100644 index 0000000..dcaf4d6 --- /dev/null +++ b/demo/postgresql/postgresql/Dockerfile @@ -0,0 +1,3 @@ +FROM postgres:9.5 + +COPY container_files/* /docker-entrypoint-initdb.d/ diff --git a/demo/postgresql/postgresql/container_files/init-user-db.sh b/demo/postgresql/postgresql/container_files/init-user-db.sh new file mode 100755 index 0000000..95df619 --- /dev/null +++ b/demo/postgresql/postgresql/container_files/init-user-db.sh @@ -0,0 +1,12 @@ +#!/bin/bash +set -e + +echo Creating midPoint user and database + +psql -v ON_ERROR_STOP=1 --username "$POSTGRES_USER" --dbname "$POSTGRES_DB" <<-EOSQL + CREATE USER midpoint WITH PASSWORD '456654' LOGIN SUPERUSER; + CREATE DATABASE midpoint WITH OWNER = midpoint ENCODING = 'UTF8' TABLESPACE = pg_default LC_COLLATE = 'en_US.utf8' LC_CTYPE = 'en_US.utf8' CONNECTION LIMIT = -1; +EOSQL + +echo midPoint user and database were created + diff --git a/shibboleth-integration/mp-gr/configs-and-secrets/shibboleth/idp-metadata.xml b/demo/shibboleth/configs-and-secrets/shibboleth/idp-metadata.xml similarity index 91% rename from shibboleth-integration/mp-gr/configs-and-secrets/shibboleth/idp-metadata.xml rename to demo/shibboleth/configs-and-secrets/shibboleth/idp-metadata.xml index 5a70824..35914b7 100644 --- a/shibboleth-integration/mp-gr/configs-and-secrets/shibboleth/idp-metadata.xml +++ b/demo/shibboleth/configs-and-secrets/shibboleth/idp-metadata.xml @@ -101,18 +101,6 @@ p+tGUbGS2l873J5PrsbpeKEVR/IIoKo= - - - - urn:mace:shibboleth:1.0:nameIdentifier urn:oasis:names:tc:SAML:2.0:nameid-format:transient diff --git a/shibboleth-integration/mp-gr/configs-and-secrets/shibboleth/grouper/shibboleth2.xml b/demo/shibboleth/configs-and-secrets/shibboleth/shibboleth2.xml similarity index 99% rename from shibboleth-integration/mp-gr/configs-and-secrets/shibboleth/grouper/shibboleth2.xml rename to demo/shibboleth/configs-and-secrets/shibboleth/shibboleth2.xml index 0c38f82..a644264 100644 --- a/shibboleth-integration/mp-gr/configs-and-secrets/shibboleth/grouper/shibboleth2.xml +++ b/demo/shibboleth/configs-and-secrets/shibboleth/shibboleth2.xml @@ -22,7 +22,7 @@ - - - - - - - - - - - - - - - - - - diff --git a/shibboleth-integration/mp-gr/idp/shibboleth-idp/conf/attribute-resolver.xml b/demo/shibboleth/idp/shibboleth-idp/conf/attribute-resolver.xml similarity index 100% rename from shibboleth-integration/mp-gr/idp/shibboleth-idp/conf/attribute-resolver.xml rename to demo/shibboleth/idp/shibboleth-idp/conf/attribute-resolver.xml diff --git a/shibboleth-integration/mp-gr/idp/shibboleth-idp/conf/idp.properties b/demo/shibboleth/idp/shibboleth-idp/conf/idp.properties similarity index 100% rename from shibboleth-integration/mp-gr/idp/shibboleth-idp/conf/idp.properties rename to demo/shibboleth/idp/shibboleth-idp/conf/idp.properties diff --git a/shibboleth-integration/mp-gr/idp/shibboleth-idp/conf/ldap.properties b/demo/shibboleth/idp/shibboleth-idp/conf/ldap.properties similarity index 100% rename from shibboleth-integration/mp-gr/idp/shibboleth-idp/conf/ldap.properties rename to demo/shibboleth/idp/shibboleth-idp/conf/ldap.properties diff --git a/shibboleth-integration/mp-gr/idp/shibboleth-idp/conf/metadata-providers.xml b/demo/shibboleth/idp/shibboleth-idp/conf/metadata-providers.xml similarity index 97% rename from shibboleth-integration/mp-gr/idp/shibboleth-idp/conf/metadata-providers.xml rename to demo/shibboleth/idp/shibboleth-idp/conf/metadata-providers.xml index f70135e..684b387 100644 --- a/shibboleth-integration/mp-gr/idp/shibboleth-idp/conf/metadata-providers.xml +++ b/demo/shibboleth/idp/shibboleth-idp/conf/metadata-providers.xml @@ -25,7 +25,6 @@ - - - - urn:mace:shibboleth:1.0:nameIdentifier urn:oasis:names:tc:SAML:2.0:nameid-format:transient diff --git a/shibboleth-integration/mp-gr/idp/shibboleth-idp/metadata/grouper-sp.xml b/demo/shibboleth/idp/shibboleth-idp/metadata/midpoint-sp.xml similarity index 62% rename from shibboleth-integration/mp-gr/idp/shibboleth-idp/metadata/grouper-sp.xml rename to demo/shibboleth/idp/shibboleth-idp/metadata/midpoint-sp.xml index 9bde5ef..54f0577 100644 --- a/shibboleth-integration/mp-gr/idp/shibboleth-idp/metadata/grouper-sp.xml +++ b/demo/shibboleth/idp/shibboleth-idp/metadata/midpoint-sp.xml @@ -2,7 +2,7 @@ This is example metadata only. Do *NOT* supply it as is without review, and do *NOT* provide it in real time to your partners. --> - + @@ -25,32 +25,34 @@ and do *NOT* provide it in real time to your partners. - - + + - sp.example.org + midpoint.sp.example.org - CN=sp.example.org,O=Internet2/TIER,L=Ann Arbor,ST=MI,C=US - MIIDPDCCAiQCCQDNZe8r0hVtuTANBgkqhkiG9w0BAQUFADBgMQswCQYDVQQGEwJV + CN=midpoint.sp.example.org,O=Internet2/TIER,L=Ann Arbor,ST=MI,C=US + MIIDqDCCApCgAwIBAgIJAKUZrfriIt9cMA0GCSqGSIb3DQEBCwUAMGkxCzAJBgNV +BAYTAlVTMQswCQYDVQQIDAJNSTESMBAGA1UEBwwJQW5uIEFyYm9yMRcwFQYDVQQK +DA5JbnRlcm5ldDIvVElFUjEgMB4GA1UEAwwXZXZvbHZldW0uc3AuZXhhbXBsZS5v +cmcwHhcNMTgwOTE0MDU0NjU3WhcNMTkwOTE0MDU0NjU3WjBpMQswCQYDVQQGEwJV UzELMAkGA1UECAwCTUkxEjAQBgNVBAcMCUFubiBBcmJvcjEXMBUGA1UECgwOSW50 -ZXJuZXQyL1RJRVIxFzAVBgNVBAMMDnNwLmV4YW1wbGUub3JnMB4XDTE3MDkyMjE5 -NTAzNVoXDTI3MDkyMDE5NTAzNVowYDELMAkGA1UEBhMCVVMxCzAJBgNVBAgMAk1J -MRIwEAYDVQQHDAlBbm4gQXJib3IxFzAVBgNVBAoMDkludGVybmV0Mi9USUVSMRcw -FQYDVQQDDA5zcC5leGFtcGxlLm9yZzCCASIwDQYJKoZIhvcNAQEBBQADggEPADCC -AQoCggEBAMTNJmsNpTpR4NrDJwOgK/o3UYlNdi1c6xBflt+liLAsQc160QReV4dS -SGK8LZvN58a/BTIsH8dLhQlUQ8qQUY2AfolVrNxb7Waumeh/POzYUTRylnoGpU3W -bGMEPxE/AdgP5U/adYvyu4XI5epv7wjZJOTqcVag15SalY+aso+ZC/5l+UzRxmWB -ZxKTsSL1y7PFehY4/Zl3Y3oGVsVl/zspt5lteoZQeeVxUX29S3Af11yHY4xpEp+7 -rvAzY/nlsTiHAsUoCFK/NFQ2evvSRx52B9Fk1cWP1MDVDm2QjQqD9xBGYSnX6bhQ -ejVx7JUJHlblu2Q5p5XdW0BihgFluoECAwEAATANBgkqhkiG9w0BAQUFAAOCAQEA -n/qhYnIviPs4tglCdrw+M7gbqKNWadDC3F9HDYzlJMFeS/ae2turhEUgQPbYPDQQ -eO3oOILtvCXNFUPM58jf8V5YFRrOqrTgx44kexQDaHO5YYNft5tF5TdvBYE2gOVr -GdYrH2iSP8WX+Yy7JH5uqkfwWzEntWHJdey39rCWKAUCCB35+/2b4N53Qmlv2+ug -CpNJYFtXInd4YMmM5HjXLyoWXtjnKiwDqYUCeYPSwAajnCqRqRXUX0gYTFDRiwRP -HbmO9We0nqoc/71nikmGGoSRMO/zWVMFjwmAx1fGiWdU61sjGX8sHifzmVyJVEBI -Z75p+JrWYZJYrx/vpWxL8g== +ZXJuZXQyL1RJRVIxIDAeBgNVBAMMF2V2b2x2ZXVtLnNwLmV4YW1wbGUub3JnMIIB +IjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAw5v1zxlM94yaBssgNNbIUJwW +XxbGxgSs2AWBeg2aEi/VQd2UE5ivZakNJlqWSJyHo2xE4kxeSyBBxinjSyhmpNao +xIcqQsgW0gxo4SEHo3kUXWPo+of/pj6CslutsSJZWGTRV0dHITvaWX+NM8eXMfgu +mJFwy3RMdLaWQhY1Dyi2jNoO+DZnfNgPyPeEZcmORaoeEID9QdZfHtcgTf2QfSHq ++xsTwHB6Ro5t7YD2ma8Krb/XcDTfsq3qJemd7LhPj5lGmhYSMgDbgwEkZgZ1kBOP +lfsP2BvX5nipv7Vd1C5YXmv+NDR8V3yAWBC7ZAenxGmrnkaSVXnpUplUsGGm1QID +AQABo1MwUTAdBgNVHQ4EFgQUuxSZwW6V1P/b0tsTM32OU/v/n+UwHwYDVR0jBBgw +FoAUuxSZwW6V1P/b0tsTM32OU/v/n+UwDwYDVR0TAQH/BAUwAwEB/zANBgkqhkiG +9w0BAQsFAAOCAQEAJWLXEfZkPeUyiGvsIUjczzdF3ptqXoP9aETS2pOV9sTri19R +TsQZW6XQRHGtuEOsqEGH8yiTdGR5hbGC+ynH/xTJnK+tBn/R3KrgxLKyMvoUzAPl +mhVq1dh+ZEtbsRpQRRubP6nm9kXNma0cXrkJSzuWM0W+l/xSOOYiSRRk3XWJfVjn +9jQlcJRh5SOkKN08oZHrCYKxToEuOfV8PtRj3T80DhsBTv2SHqhg4cBhzQPb0Kjm +9m4IkYOz8c5ZtuHDGnqMHw60Nyt+jyik4mMFP2frcOVP0W0sgwcfHllYzHoA/Khq +Yk3TBVs1BjPuNDJWHct8Eo68YP2/ZvzqfVM87Q== @@ -64,15 +66,15 @@ Z75p+JrWYZJYrx/vpWxL8g== - - - - - - - - - + + + + + + + + + diff --git a/shibboleth-integration/mp-gr/configs-and-secrets/httpd/grouper/cachain-cer.pem b/grouper-midpoint/mp-gr/configs-and-secrets/httpd/grouper/cachain-cer.pem similarity index 100% rename from shibboleth-integration/mp-gr/configs-and-secrets/httpd/grouper/cachain-cer.pem rename to grouper-midpoint/mp-gr/configs-and-secrets/httpd/grouper/cachain-cer.pem diff --git a/shibboleth-integration/mp-gr/configs-and-secrets/httpd/grouper/host-cert.pem b/grouper-midpoint/mp-gr/configs-and-secrets/httpd/grouper/host-cert.pem similarity index 100% rename from shibboleth-integration/mp-gr/configs-and-secrets/httpd/grouper/host-cert.pem rename to grouper-midpoint/mp-gr/configs-and-secrets/httpd/grouper/host-cert.pem diff --git a/shibboleth-integration/mp-gr/configs-and-secrets/httpd/grouper/host-key.pem b/grouper-midpoint/mp-gr/configs-and-secrets/httpd/grouper/host-key.pem similarity index 100% rename from shibboleth-integration/mp-gr/configs-and-secrets/httpd/grouper/host-key.pem rename to grouper-midpoint/mp-gr/configs-and-secrets/httpd/grouper/host-key.pem diff --git a/shibboleth-integration/mp-gr/configs-and-secrets/httpd/midpoint/host-cert.pem b/grouper-midpoint/mp-gr/configs-and-secrets/httpd/midpoint/host-cert.pem similarity index 100% rename from shibboleth-integration/mp-gr/configs-and-secrets/httpd/midpoint/host-cert.pem rename to grouper-midpoint/mp-gr/configs-and-secrets/httpd/midpoint/host-cert.pem diff --git a/shibboleth-integration/mp-gr/configs-and-secrets/httpd/midpoint/host-key.pem b/grouper-midpoint/mp-gr/configs-and-secrets/httpd/midpoint/host-key.pem similarity index 100% rename from shibboleth-integration/mp-gr/configs-and-secrets/httpd/midpoint/host-key.pem rename to grouper-midpoint/mp-gr/configs-and-secrets/httpd/midpoint/host-key.pem diff --git a/grouper-midpoint/mp-gr/configs-and-secrets/shibboleth/shibboleth2.xml b/grouper-midpoint/mp-gr/configs-and-secrets/shibboleth/grouper/shibboleth2.xml similarity index 100% rename from grouper-midpoint/mp-gr/configs-and-secrets/shibboleth/shibboleth2.xml rename to grouper-midpoint/mp-gr/configs-and-secrets/shibboleth/grouper/shibboleth2.xml diff --git a/shibboleth-integration/mp-gr/configs-and-secrets/shibboleth/grouper/sp-cert.pem b/grouper-midpoint/mp-gr/configs-and-secrets/shibboleth/grouper/sp-cert.pem similarity index 100% rename from shibboleth-integration/mp-gr/configs-and-secrets/shibboleth/grouper/sp-cert.pem rename to grouper-midpoint/mp-gr/configs-and-secrets/shibboleth/grouper/sp-cert.pem diff --git a/shibboleth-integration/mp-gr/configs-and-secrets/shibboleth/grouper/sp-key.pem b/grouper-midpoint/mp-gr/configs-and-secrets/shibboleth/grouper/sp-key.pem similarity index 100% rename from shibboleth-integration/mp-gr/configs-and-secrets/shibboleth/grouper/sp-key.pem rename to grouper-midpoint/mp-gr/configs-and-secrets/shibboleth/grouper/sp-key.pem diff --git a/shibboleth-integration/mp-gr/configs-and-secrets/shibboleth/midpoint/shibboleth2.xml b/grouper-midpoint/mp-gr/configs-and-secrets/shibboleth/midpoint/shibboleth2.xml similarity index 100% rename from shibboleth-integration/mp-gr/configs-and-secrets/shibboleth/midpoint/shibboleth2.xml rename to grouper-midpoint/mp-gr/configs-and-secrets/shibboleth/midpoint/shibboleth2.xml diff --git a/shibboleth-integration/mp-gr/configs-and-secrets/shibboleth/midpoint/sp-cert.pem b/grouper-midpoint/mp-gr/configs-and-secrets/shibboleth/midpoint/sp-cert.pem similarity index 100% rename from shibboleth-integration/mp-gr/configs-and-secrets/shibboleth/midpoint/sp-cert.pem rename to grouper-midpoint/mp-gr/configs-and-secrets/shibboleth/midpoint/sp-cert.pem diff --git a/shibboleth-integration/mp-gr/configs-and-secrets/shibboleth/midpoint/sp-key.pem b/grouper-midpoint/mp-gr/configs-and-secrets/shibboleth/midpoint/sp-key.pem similarity index 100% rename from shibboleth-integration/mp-gr/configs-and-secrets/shibboleth/midpoint/sp-key.pem rename to grouper-midpoint/mp-gr/configs-and-secrets/shibboleth/midpoint/sp-key.pem diff --git a/grouper-midpoint/mp-gr/docker-compose.yml b/grouper-midpoint/mp-gr/docker-compose.yml index 96553b8..0a456af 100644 --- a/grouper-midpoint/mp-gr/docker-compose.yml +++ b/grouper-midpoint/mp-gr/docker-compose.yml @@ -66,9 +66,10 @@ services: target: grouper_grouper-loader.properties - source: subject.properties target: grouper_subject.properties - - source: sp-key.pem + - source: grouper-sp-key.pem target: shib_sp-key.pem - - source: host-key.pem + - source: grouper-host-key.pem + target: host-key.pem volumes: - type: bind source: ./configs-and-secrets/grouper/grouper.properties @@ -77,19 +78,19 @@ services: source: ./configs-and-secrets/grouper/grouper.client.properties target: /opt/grouper/conf/grouper.client.properties - type: bind - source: ./configs-and-secrets/shibboleth/sp-cert.pem + source: ./configs-and-secrets/shibboleth/grouper/sp-cert.pem target: /etc/shibboleth/sp-cert.pem - type: bind - source: ./configs-and-secrets/shibboleth/shibboleth2.xml + source: ./configs-and-secrets/shibboleth/grouper/shibboleth2.xml target: /etc/shibboleth/shibboleth2.xml - type: bind source: ./configs-and-secrets/shibboleth/idp-metadata.xml target: /etc/shibboleth/idp-metadata.xml - type: bind - source: ./configs-and-secrets/httpd/host-cert.pem + source: ./configs-and-secrets/httpd/grouper/host-cert.pem target: /etc/pki/tls/certs/host-cert.pem - type: bind - source: ./configs-and-secrets/httpd/host-cert.pem + source: ./configs-and-secrets/httpd/grouper/host-cert.pem target: /etc/pki/tls/certs/cachain.pem @@ -220,18 +221,41 @@ services: midpoint-server: build: ./midpoint-server/ depends_on: - - midpoint-data + - midpoint-data expose: - - 8080 + - "8080" + - "4438" ports: - - 8080:8080 - volumes: - - midpoint_home:/opt/midpoint/var + - "8080:80" + - "4438:443" + environment: + - ACTIVE_PROFILE=default networks: - - front - - back + - front + - back secrets: - - m_database_password.txt + - m_database_password.txt + - source: midpoint-sp-key.pem + target: shib_sp-key.pem + - source: midpoint-host-key.pem + target: host-key.pem + volumes: + - midpoint_home:/opt/midpoint/var + - type: bind + source: ./configs-and-secrets/shibboleth/midpoint/sp-cert.pem + target: /etc/shibboleth/sp-cert.pem + - type: bind + source: ./configs-and-secrets/shibboleth/midpoint/shibboleth2.xml + target: /etc/shibboleth/shibboleth2.xml + - type: bind + source: ./configs-and-secrets/shibboleth/idp-metadata.xml + target: /etc/shibboleth/idp-metadata.xml + - type: bind + source: ./configs-and-secrets/httpd/midpoint/host-cert.pem + target: /etc/pki/tls/certs/host-cert.pem + - type: bind + source: ./configs-and-secrets/httpd/midpoint/host-cert.pem + target: /etc/pki/tls/certs/cachain.pem idp: build: ./idp/ @@ -273,14 +297,18 @@ secrets: file: ./configs-and-secrets/grouper/grouper.hibernate.properties grouper-loader.properties: file: ./configs-and-secrets/grouper/grouper-loader.properties - host-key.pem: - file: ./configs-and-secrets/httpd/host-key.pem + grouper-host-key.pem: + file: ./configs-and-secrets/httpd/grouper/host-key.pem rabbitmq_password.txt: file: ./configs-and-secrets/grouper/rabbitmq_password.txt subject.properties: file: ./configs-and-secrets/grouper/subject.properties - sp-key.pem: - file: ./configs-and-secrets/shibboleth/sp-key.pem + grouper-sp-key.pem: + file: ./configs-and-secrets/shibboleth/grouper/sp-key.pem + midpoint-host-key.pem: + file: ./configs-and-secrets/httpd/midpoint/host-key.pem + midpoint-sp-key.pem: + file: ./configs-and-secrets/shibboleth/midpoint/sp-key.pem m_database_password.txt: file: ./configs-and-secrets/midpoint/database_password.txt diff --git a/grouper-midpoint/mp-gr/idp/shibboleth-idp/conf/attribute-filter.xml b/grouper-midpoint/mp-gr/idp/shibboleth-idp/conf/attribute-filter.xml index 62000f1..21ffdb8 100644 --- a/grouper-midpoint/mp-gr/idp/shibboleth-idp/conf/attribute-filter.xml +++ b/grouper-midpoint/mp-gr/idp/shibboleth-idp/conf/attribute-filter.xml @@ -34,4 +34,14 @@ + + + + + + + + + + diff --git a/grouper-midpoint/mp-gr/idp/shibboleth-idp/conf/metadata-providers.xml b/grouper-midpoint/mp-gr/idp/shibboleth-idp/conf/metadata-providers.xml index 9fc5b77..f70135e 100644 --- a/grouper-midpoint/mp-gr/idp/shibboleth-idp/conf/metadata-providers.xml +++ b/grouper-midpoint/mp-gr/idp/shibboleth-idp/conf/metadata-providers.xml @@ -26,6 +26,7 @@ + + + + + + + example.org + + + + + + + +MIIDEzCCAfugAwIBAgIUS9SuTXwsFVVG+LjOEAbLqqT/el0wDQYJKoZIhvcNAQEL +BQAwFTETMBEGA1UEAwwKaWRwdGVzdGJlZDAeFw0xNTEyMTEwMjIwMjZaFw0zNTEy +MTEwMjIwMjZaMBUxEzARBgNVBAMMCmlkcHRlc3RiZWQwggEiMA0GCSqGSIb3DQEB +AQUAA4IBDwAwggEKAoIBAQCMAoDHx8xCIfv/6QKqt9mcHYmEJ8y2dKprUbpdcOjH +YvNPIl/lHPsUyrb+Nc+q2CDeiWjVk1mWYq0UpIwpBMuw1H6+oOqr4VQRi65pin0M +SfE0MWIaFo5FPvpvoptkHD4gvREbm4swyXGMczcMRfqgalFXhUD2wz8W3XAM5Cq2 +03XeJbj6TwjvKatG5XPdeUe2FBGuOO2q54L1hcIGnLMCQrg7D31lR13PJbjnJ0No +5C3k8TPuny6vJsBC03GNLNKfmrKVTdzr3VKp1uay1G3DL9314fgmbl8HA5iRQmy+ +XInUU6/8NXZSF59p3ITAOvZQeZsbJjg5gGDip5OZo9YlAgMBAAGjWzBZMB0GA1Ud +DgQWBBRPlM4VkKZ0U4ec9GrIhFQl0hNbLDA4BgNVHREEMTAvggppZHB0ZXN0YmVk +hiFodHRwczovL2lkcHRlc3RiZWQvaWRwL3NoaWJib2xldGgwDQYJKoZIhvcNAQEL +BQADggEBAIZ0a1ov3my3ljJG588I/PHx+TxAWONWmpKbO9c/qI3Drxk4oRIffiac +ANxdvtabgIzrlk5gMMisD7oyqHJiWgKv5Bgctd8w3IS3lLl7wHX65mTKQRXniG98 +NIjkvfrhe2eeJxecOqnDI8GOhIGCIqZUn8ShdM/yHjhQ2Mh0Hj3U0LlKvnmfGSQl +j0viGwbFCaNaIP3zc5UmCrdE5h8sWL3Fu7ILKM9RyFa2ILHrJScV9t623IcHffHP +IeaY/WtuapsrqRFxuQL9QFWN0FsRIdLmjTq+00+B/XnnKRKFBuWfjhHLF/uu8f+E +t6Lf23Kb8yD6ZR7dihMZAGHnYQ/hlhM= + + + + + + + + + +MIIDFDCCAfygAwIBAgIVAN3vv+b7KN5Se9m1RZsCllp/B/hdMA0GCSqGSIb3DQEB +CwUAMBUxEzARBgNVBAMMCmlkcHRlc3RiZWQwHhcNMTUxMjExMDIyMDE0WhcNMzUx +MjExMDIyMDE0WjAVMRMwEQYDVQQDDAppZHB0ZXN0YmVkMIIBIjANBgkqhkiG9w0B +AQEFAAOCAQ8AMIIBCgKCAQEAh91caeY0Q85uhaUyqFwP2bMjwMFxMzRlAoqBHd7g +u6eo4duaeLz1BaoR2XTBpNNvFR5oHH+TkKahVDGeH5+kcnIpxI8JPdsZml1srvf2 +Z6dzJsulJZUdpqnngycTkGtZgEoC1vmYVky2BSAIIifmdh6s0epbHnMGLsHzMKfJ +Cb/Q6dYzRWTCPtzE2VMuQqqWgeyMr7u14x/Vqr9RPEFsgY8GIu5jzB6AyUIwrLg+ +MNkv6aIdcHwxYTGL7ijfy6rSWrgBflQoYRYNEnseK0ZHgJahz4ovCag6wZAoPpBs +uYlY7lEr89Ucb6NHx3uqGMsXlDFdE4QwfDLLhCYHPvJ0uwIDAQABo1swWTAdBgNV +HQ4EFgQUAkOgED3iYdmvQEOMm6u/JmD/UTQwOAYDVR0RBDEwL4IKaWRwdGVzdGJl +ZIYhaHR0cHM6Ly9pZHB0ZXN0YmVkL2lkcC9zaGliYm9sZXRoMA0GCSqGSIb3DQEB +CwUAA4IBAQBIdd4YWlnvJjql8+zKKgmWgIY7U8DA8e6QcbAf8f8cdE33RSnjI63X +sv/y9GfmbAVAD6RIAXPFFeRYJ08GOxGI9axfNaKdlsklJ9bk4ducHqgCSWYVer3s +RQBjxyOfSTvk9YCJvdJVQRJLcCvxwKakFCsOSnV3t9OvN86Ak+fKPVB5j2fM/0fZ +Kqjn3iqgdNPTLXPsuJLJO5lITRiBa4onmVelAiCstI9PQiaEck+oAHnMTnC9JE/B +DHv3e4rwq3LznlqPw0GSd7xqNTdMDwNOWjkuOr3sGpWS8ms/ZHHXV1Vd22uPe70i +s00xrv14zLifcc8oj5DYzOhYRifRXgHX + + + + + + + + + +MIIDEzCCAfugAwIBAgIUG6Nn1rlERS1vsi88tcdzSYX0oqAwDQYJKoZIhvcNAQEL +BQAwFTETMBEGA1UEAwwKaWRwdGVzdGJlZDAeFw0xNTEyMTEwMjIwMTRaFw0zNTEy +MTEwMjIwMTRaMBUxEzARBgNVBAMMCmlkcHRlc3RiZWQwggEiMA0GCSqGSIb3DQEB +AQUAA4IBDwAwggEKAoIBAQCBXv0o3fmT8iluyLjJ4lBAVCW+ZRVyEXPYQuRi7vfD +cO4a6d1kxiJLsaK0W88VNxjFQRr8PgDkWr28vwoH1rgk4pLsszLD48DBzD942peJ +l/S6FnsIJjmaHcBh4pbNhU4yowu63iKkvttrcZAEbpEro6Z8CziWEx8sywoaYEQG +ifPkr9ORV6Cn3txq+9gMBePG41GrtZrUGIu+xrndL0Shh4Pq0eq/9MAsVlIIXEa8 +9WfH8J2kFcTOfoWtIc70b7TLZQsx4YnNcnrGLSUEcstFyPLX+Xtv5SNZF89OOIxX +VNjNvgE5DbJb9hMM4UAFqI+1bo9QqtxwThjc/sOvIxzNAgMBAAGjWzBZMB0GA1Ud +DgQWBBStTyogRPuAVG6q7yPyav1uvE+7pTA4BgNVHREEMTAvggppZHB0ZXN0YmVk +hiFodHRwczovL2lkcHRlc3RiZWQvaWRwL3NoaWJib2xldGgwDQYJKoZIhvcNAQEL +BQADggEBAFMfoOv+oISGjvamq7+Y4G7ep5vxlAPeK3RATYPYvAmyH946qZXh98ni +QXyuqZW5P5eEt86toY45IwDU5r09SKwHughEe99iiEkxh0mb2qo84qX9/qcg+kyN +jeLd/OSyolpUCEFNwOFcog7pj7Eer+6AHbwTn1Mjb5TBsKwtDMJsaxPvdj0u7M5r +xL/wHkFhn1rCo2QiojzjSlV3yLTh49iTyhE3cG+RxaNKDCxhp0jSSLX1BW/ZoPA8 ++PMJEA+Q0QbyRD8aJOHN5O8jGxCa/ZzcOnYVL6AsEXoDiY3vAUYh1FUonOWw0m9H +p+tGUbGS2l873J5PrsbpeKEVR/IIoKo= + + + + + + + urn:mace:shibboleth:1.0:nameIdentifier + urn:oasis:names:tc:SAML:2.0:nameid-format:transient + + + + + + + + + + + + + localhost + + + + + + +MIIDEzCCAfugAwIBAgIUS9SuTXwsFVVG+LjOEAbLqqT/el0wDQYJKoZIhvcNAQEL +BQAwFTETMBEGA1UEAwwKaWRwdGVzdGJlZDAeFw0xNTEyMTEwMjIwMjZaFw0zNTEy +MTEwMjIwMjZaMBUxEzARBgNVBAMMCmlkcHRlc3RiZWQwggEiMA0GCSqGSIb3DQEB +AQUAA4IBDwAwggEKAoIBAQCMAoDHx8xCIfv/6QKqt9mcHYmEJ8y2dKprUbpdcOjH +YvNPIl/lHPsUyrb+Nc+q2CDeiWjVk1mWYq0UpIwpBMuw1H6+oOqr4VQRi65pin0M +SfE0MWIaFo5FPvpvoptkHD4gvREbm4swyXGMczcMRfqgalFXhUD2wz8W3XAM5Cq2 +03XeJbj6TwjvKatG5XPdeUe2FBGuOO2q54L1hcIGnLMCQrg7D31lR13PJbjnJ0No +5C3k8TPuny6vJsBC03GNLNKfmrKVTdzr3VKp1uay1G3DL9314fgmbl8HA5iRQmy+ +XInUU6/8NXZSF59p3ITAOvZQeZsbJjg5gGDip5OZo9YlAgMBAAGjWzBZMB0GA1Ud +DgQWBBRPlM4VkKZ0U4ec9GrIhFQl0hNbLDA4BgNVHREEMTAvggppZHB0ZXN0YmVk +hiFodHRwczovL2lkcHRlc3RiZWQvaWRwL3NoaWJib2xldGgwDQYJKoZIhvcNAQEL +BQADggEBAIZ0a1ov3my3ljJG588I/PHx+TxAWONWmpKbO9c/qI3Drxk4oRIffiac +ANxdvtabgIzrlk5gMMisD7oyqHJiWgKv5Bgctd8w3IS3lLl7wHX65mTKQRXniG98 +NIjkvfrhe2eeJxecOqnDI8GOhIGCIqZUn8ShdM/yHjhQ2Mh0Hj3U0LlKvnmfGSQl +j0viGwbFCaNaIP3zc5UmCrdE5h8sWL3Fu7ILKM9RyFa2ILHrJScV9t623IcHffHP +IeaY/WtuapsrqRFxuQL9QFWN0FsRIdLmjTq+00+B/XnnKRKFBuWfjhHLF/uu8f+E +t6Lf23Kb8yD6ZR7dihMZAGHnYQ/hlhM= + + + + + + + + + +MIIDFDCCAfygAwIBAgIVAN3vv+b7KN5Se9m1RZsCllp/B/hdMA0GCSqGSIb3DQEB +CwUAMBUxEzARBgNVBAMMCmlkcHRlc3RiZWQwHhcNMTUxMjExMDIyMDE0WhcNMzUx +MjExMDIyMDE0WjAVMRMwEQYDVQQDDAppZHB0ZXN0YmVkMIIBIjANBgkqhkiG9w0B +AQEFAAOCAQ8AMIIBCgKCAQEAh91caeY0Q85uhaUyqFwP2bMjwMFxMzRlAoqBHd7g +u6eo4duaeLz1BaoR2XTBpNNvFR5oHH+TkKahVDGeH5+kcnIpxI8JPdsZml1srvf2 +Z6dzJsulJZUdpqnngycTkGtZgEoC1vmYVky2BSAIIifmdh6s0epbHnMGLsHzMKfJ +Cb/Q6dYzRWTCPtzE2VMuQqqWgeyMr7u14x/Vqr9RPEFsgY8GIu5jzB6AyUIwrLg+ +MNkv6aIdcHwxYTGL7ijfy6rSWrgBflQoYRYNEnseK0ZHgJahz4ovCag6wZAoPpBs +uYlY7lEr89Ucb6NHx3uqGMsXlDFdE4QwfDLLhCYHPvJ0uwIDAQABo1swWTAdBgNV +HQ4EFgQUAkOgED3iYdmvQEOMm6u/JmD/UTQwOAYDVR0RBDEwL4IKaWRwdGVzdGJl +ZIYhaHR0cHM6Ly9pZHB0ZXN0YmVkL2lkcC9zaGliYm9sZXRoMA0GCSqGSIb3DQEB +CwUAA4IBAQBIdd4YWlnvJjql8+zKKgmWgIY7U8DA8e6QcbAf8f8cdE33RSnjI63X +sv/y9GfmbAVAD6RIAXPFFeRYJ08GOxGI9axfNaKdlsklJ9bk4ducHqgCSWYVer3s +RQBjxyOfSTvk9YCJvdJVQRJLcCvxwKakFCsOSnV3t9OvN86Ak+fKPVB5j2fM/0fZ +Kqjn3iqgdNPTLXPsuJLJO5lITRiBa4onmVelAiCstI9PQiaEck+oAHnMTnC9JE/B +DHv3e4rwq3LznlqPw0GSd7xqNTdMDwNOWjkuOr3sGpWS8ms/ZHHXV1Vd22uPe70i +s00xrv14zLifcc8oj5DYzOhYRifRXgHX + + + + + + + + + +MIIDEzCCAfugAwIBAgIUG6Nn1rlERS1vsi88tcdzSYX0oqAwDQYJKoZIhvcNAQEL +BQAwFTETMBEGA1UEAwwKaWRwdGVzdGJlZDAeFw0xNTEyMTEwMjIwMTRaFw0zNTEy +MTEwMjIwMTRaMBUxEzARBgNVBAMMCmlkcHRlc3RiZWQwggEiMA0GCSqGSIb3DQEB +AQUAA4IBDwAwggEKAoIBAQCBXv0o3fmT8iluyLjJ4lBAVCW+ZRVyEXPYQuRi7vfD +cO4a6d1kxiJLsaK0W88VNxjFQRr8PgDkWr28vwoH1rgk4pLsszLD48DBzD942peJ +l/S6FnsIJjmaHcBh4pbNhU4yowu63iKkvttrcZAEbpEro6Z8CziWEx8sywoaYEQG +ifPkr9ORV6Cn3txq+9gMBePG41GrtZrUGIu+xrndL0Shh4Pq0eq/9MAsVlIIXEa8 +9WfH8J2kFcTOfoWtIc70b7TLZQsx4YnNcnrGLSUEcstFyPLX+Xtv5SNZF89OOIxX +VNjNvgE5DbJb9hMM4UAFqI+1bo9QqtxwThjc/sOvIxzNAgMBAAGjWzBZMB0GA1Ud +DgQWBBStTyogRPuAVG6q7yPyav1uvE+7pTA4BgNVHREEMTAvggppZHB0ZXN0YmVk +hiFodHRwczovL2lkcHRlc3RiZWQvaWRwL3NoaWJib2xldGgwDQYJKoZIhvcNAQEL +BQADggEBAFMfoOv+oISGjvamq7+Y4G7ep5vxlAPeK3RATYPYvAmyH946qZXh98ni +QXyuqZW5P5eEt86toY45IwDU5r09SKwHughEe99iiEkxh0mb2qo84qX9/qcg+kyN +jeLd/OSyolpUCEFNwOFcog7pj7Eer+6AHbwTn1Mjb5TBsKwtDMJsaxPvdj0u7M5r +xL/wHkFhn1rCo2QiojzjSlV3yLTh49iTyhE3cG+RxaNKDCxhp0jSSLX1BW/ZoPA8 ++PMJEA+Q0QbyRD8aJOHN5O8jGxCa/ZzcOnYVL6AsEXoDiY3vAUYh1FUonOWw0m9H +p+tGUbGS2l873J5PrsbpeKEVR/IIoKo= + + + + + + + + + + + + + + diff --git a/midpoint/configs-and-secrets/midpoint/shibboleth/shibboleth2.xml b/midpoint/configs-and-secrets/midpoint/shibboleth/shibboleth2.xml new file mode 100644 index 0000000..a644264 --- /dev/null +++ b/midpoint/configs-and-secrets/midpoint/shibboleth/shibboleth2.xml @@ -0,0 +1,136 @@ + + + + + + + + + + + + + + + + + SAML2 + + + + SAML2 Local + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/midpoint/configs-and-secrets/midpoint/shibboleth/sp-cert.pem b/midpoint/configs-and-secrets/midpoint/shibboleth/sp-cert.pem new file mode 100644 index 0000000..0f5474e --- /dev/null +++ b/midpoint/configs-and-secrets/midpoint/shibboleth/sp-cert.pem @@ -0,0 +1,22 @@ +-----BEGIN CERTIFICATE----- +MIIDqDCCApCgAwIBAgIJAKUZrfriIt9cMA0GCSqGSIb3DQEBCwUAMGkxCzAJBgNV +BAYTAlVTMQswCQYDVQQIDAJNSTESMBAGA1UEBwwJQW5uIEFyYm9yMRcwFQYDVQQK +DA5JbnRlcm5ldDIvVElFUjEgMB4GA1UEAwwXZXZvbHZldW0uc3AuZXhhbXBsZS5v +cmcwHhcNMTgwOTE0MDU0NjU3WhcNMTkwOTE0MDU0NjU3WjBpMQswCQYDVQQGEwJV +UzELMAkGA1UECAwCTUkxEjAQBgNVBAcMCUFubiBBcmJvcjEXMBUGA1UECgwOSW50 +ZXJuZXQyL1RJRVIxIDAeBgNVBAMMF2V2b2x2ZXVtLnNwLmV4YW1wbGUub3JnMIIB +IjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAw5v1zxlM94yaBssgNNbIUJwW +XxbGxgSs2AWBeg2aEi/VQd2UE5ivZakNJlqWSJyHo2xE4kxeSyBBxinjSyhmpNao +xIcqQsgW0gxo4SEHo3kUXWPo+of/pj6CslutsSJZWGTRV0dHITvaWX+NM8eXMfgu +mJFwy3RMdLaWQhY1Dyi2jNoO+DZnfNgPyPeEZcmORaoeEID9QdZfHtcgTf2QfSHq ++xsTwHB6Ro5t7YD2ma8Krb/XcDTfsq3qJemd7LhPj5lGmhYSMgDbgwEkZgZ1kBOP +lfsP2BvX5nipv7Vd1C5YXmv+NDR8V3yAWBC7ZAenxGmrnkaSVXnpUplUsGGm1QID +AQABo1MwUTAdBgNVHQ4EFgQUuxSZwW6V1P/b0tsTM32OU/v/n+UwHwYDVR0jBBgw +FoAUuxSZwW6V1P/b0tsTM32OU/v/n+UwDwYDVR0TAQH/BAUwAwEB/zANBgkqhkiG +9w0BAQsFAAOCAQEAJWLXEfZkPeUyiGvsIUjczzdF3ptqXoP9aETS2pOV9sTri19R +TsQZW6XQRHGtuEOsqEGH8yiTdGR5hbGC+ynH/xTJnK+tBn/R3KrgxLKyMvoUzAPl +mhVq1dh+ZEtbsRpQRRubP6nm9kXNma0cXrkJSzuWM0W+l/xSOOYiSRRk3XWJfVjn +9jQlcJRh5SOkKN08oZHrCYKxToEuOfV8PtRj3T80DhsBTv2SHqhg4cBhzQPb0Kjm +9m4IkYOz8c5ZtuHDGnqMHw60Nyt+jyik4mMFP2frcOVP0W0sgwcfHllYzHoA/Khq +Yk3TBVs1BjPuNDJWHct8Eo68YP2/ZvzqfVM87Q== +-----END CERTIFICATE----- diff --git a/midpoint/configs-and-secrets/midpoint/shibboleth/sp-key.pem b/midpoint/configs-and-secrets/midpoint/shibboleth/sp-key.pem new file mode 100644 index 0000000..b4c7a68 --- /dev/null +++ b/midpoint/configs-and-secrets/midpoint/shibboleth/sp-key.pem @@ -0,0 +1,28 @@ +-----BEGIN PRIVATE KEY----- +MIIEvgIBADANBgkqhkiG9w0BAQEFAASCBKgwggSkAgEAAoIBAQDDm/XPGUz3jJoG +yyA01shQnBZfFsbGBKzYBYF6DZoSL9VB3ZQTmK9lqQ0mWpZInIejbETiTF5LIEHG +KeNLKGak1qjEhypCyBbSDGjhIQejeRRdY+j6h/+mPoKyW62xIllYZNFXR0chO9pZ +f40zx5cx+C6YkXDLdEx0tpZCFjUPKLaM2g74Nmd82A/I94RlyY5Fqh4QgP1B1l8e +1yBN/ZB9Ier7GxPAcHpGjm3tgPaZrwqtv9dwNN+yreol6Z3suE+PmUaaFhIyANuD +ASRmBnWQE4+V+w/YG9fmeKm/tV3ULlhea/40NHxXfIBYELtkB6fEaaueRpJVeelS +mVSwYabVAgMBAAECggEAeQxOdTaG9ro/puyUpZ40oA23mmiR4YCLJbNiiJFaQt7u +7a+dLvNRt2uCA7YTQiP7nBooFpKD16HCkkrhqWT7AA8GqXero2AHHz0mugqim3sW +KyTkzATVI5+TaaRqPC+xco4RLh2h2uMbID9atixRWE7pJuj6EC2MEr3bBlKPyyyj +gYEi7PLZC5oEMHCZSteVik0yXI3kJJEneuVgFHTc+mwuz/qzqJP7f93i77c/FcRd +pWCo1fg0Xuxh3M17Y/0e0ZzSBowbRVv7VkJDKZmdAYE+DaODdaIR8rrQVqkIEX4A +4m/ufAS5j2Rck0MEY9mu5STQByo1EGiAsxTp8pVCkQKBgQD905GZiMIZ+yBM1aXa +ZJj/BF2a/s/wf3N6YLtfobWGDAGXDIe07lr+jSK1+vYRcqHW/a6/H0JsVg+gD9Gs +10p0ry8AVWqR+5GRRDUKBMBXVDxMFZybXvMzRnR67SJA6TVEirMHYeawtzEjzha0 +csIo0kCe3Ke22mR8aebFSFDonwKBgQDFSMTvC/y18k8n9NQ3Rsu2Z4itH3nZ3fM3 +e7+gFxQyCXJHR/kTaAPVb2HAsuA+lAemnEHJUhOjao0QiUilWkE44wSfx7LwFPWP +XO89oOWGKhOclkzs2nvxOcC/pEjWm83cgOz/IPWqkw0/wefmh6RDcPz1JgwO2Jij +P14FGG9YCwKBgQDPdmOlODBeB/Iomt+Kl3qtxaW0j9zp12JNfk7oJUY3IA0Uprss +2T0qnbTnRQ5myGkbThHMSQKDhfwTeZqJSRakNKOYBDisxQ//yd4IKEYFmuYF0gxE +ueDR4h5GcxfyMirFsRAPUqe5fKH/f+zy5HFp6B/FONkkDXDgd7aVPTxURQKBgF8q +sUUXJTqnvqNpqQ1ZK1+8JeRNcLw2IuM64L9bIrTYdbYI9A/2dxL4fdE0+JN3WRF4 +AwwYeby044N8lfydwySr7kkdTiYeFi6oCAhUmyPTHE7G+iivZGaDE4Xeu/w6gF3E +G48e2SMFeLiu0y0TdZvK31tqlRp8RXVKVhJjLSLtAoGBAP01ZMUJu5AU19c7xRTy +kfVzE6PI+E8ZZ6qEWMs2Xt3NQL4Bffh94QQCmQYX3AY7xVD1gAQgbLXx4lEDQdzu +i/kV4t+oeYwXSn1UEgOQj504qwR3gi4JZdfa0LbiMzhp9qyxofyk7Lre7Tc3Xmu1 +jyigTF7oAYoPBWk/mAthK1wO +-----END PRIVATE KEY----- diff --git a/midpoint/docker-compose.yml b/midpoint/docker-compose.yml index 88d6af0..430dcde 100644 --- a/midpoint/docker-compose.yml +++ b/midpoint/docker-compose.yml @@ -17,48 +17,66 @@ services: networks: - back volumes: - - midpoint_mysql:/var/lib/mysql + - midpoint_data:/var/lib/mysql midpoint-server: build: ./midpoint-server/ - depends_on: - - midpoint-data expose: - - 8080 + - 443 ports: - - 8080:8080 - volumes: - - midpoint_home:/opt/midpoint/var + - 8443:443 + environment: + - AUTHENTICATION + - ENV + - USERTOKEN + - REPO_DATABASE_TYPE + - REPO_JDBC_URL + - REPO_HOST + - REPO_PORT + - REPO_DATABASE + - REPO_USER + - REPO_PASSWORD_FILE + - KEYSTORE_PASSWORD_FILE + - MEM networks: - - back + - back secrets: - - m_database_password.txt - - m_keystore_password.txt -# the following is just to demonstrate required normalization of logging parameters -# environment: -# - LOGFILE=midpoint.log -# - COMPONENT=midpoint;tier -# - "USERTOKEN=user token " -# - ENV=demo only -# -# repository configuration examples -# - REPO_DATABASE_TYPE=mariadb -# - REPO_HOST=xyz -# - REPO_PORT=10000 -# the following overrides default URL construction -# - REPO_JDBC_URL=jdbc:mariadb://midpoint-data:3306/midpoint + - m_database_password.txt + - m_keystore_password.txt + - m_sp-key.pem + - m_host-key.pem + volumes: + - midpoint_home:/opt/midpoint/var + - type: bind + source: ./configs-and-secrets/midpoint/shibboleth/shibboleth2.xml + target: /etc/shibboleth/shibboleth2.xml + - type: bind + source: ./configs-and-secrets/midpoint/shibboleth/idp-metadata.xml + target: /etc/shibboleth/idp-metadata.xml + - type: bind + source: ./configs-and-secrets/midpoint/shibboleth/sp-cert.pem + target: /etc/shibboleth/sp-cert.pem + - type: bind + source: ./configs-and-secrets/midpoint/httpd/host-cert.pem + target: /etc/pki/tls/certs/host-cert.pem + - type: bind + source: ./configs-and-secrets/midpoint/httpd/host-cert.pem + target: /etc/pki/tls/certs/cachain.pem networks: back: driver: bridge - secrets: + m_host-key.pem: + file: ./configs-and-secrets/midpoint/httpd/host-key.pem + m_sp-key.pem: + file: ./configs-and-secrets/midpoint/shibboleth/sp-key.pem m_database_password.txt: - file: ./configs-and-secrets/midpoint/database_password.txt + file: ./configs-and-secrets/midpoint/application/database_password.txt m_keystore_password.txt: - file: ./configs-and-secrets/midpoint/keystore_password.txt + file: ./configs-and-secrets/midpoint/application/keystore_password.txt volumes: - midpoint_mysql: + midpoint_data: midpoint_home: diff --git a/midpoint/midpoint-data/Dockerfile b/midpoint/midpoint-data/Dockerfile index fcaa4e0..3249b23 100644 --- a/midpoint/midpoint-data/Dockerfile +++ b/midpoint/midpoint-data/Dockerfile @@ -23,13 +23,9 @@ RUN mysql_install_db \ && echo "/usr/bin/mysqld_safe &" > /tmp/config \ && echo "mysqladmin --silent --wait=30 ping || exit 1" >> /tmp/config \ && echo "mysql -e \"CREATE USER 'root'@'%' IDENTIFIED BY '`cat /tmp/database_password.txt`';\"" >> /tmp/config \ - && echo "echo ok0" >> /tmp/config \ && echo "mysql -e 'GRANT ALL PRIVILEGES ON *.* TO \"root\"@\"%\" WITH GRANT OPTION;'" >> /tmp/config \ - && echo "echo ok1" >> /tmp/config \ && echo "mysql -e 'CREATE DATABASE midpoint CHARACTER SET utf8 COLLATE utf8_bin;'" >> /tmp/config \ - && echo "echo ok2" >> /tmp/config \ && echo "mysql -e \"SET PASSWORD FOR 'root'@'localhost' = PASSWORD('`cat /tmp/database_password.txt`');\"" >> /tmp/config \ - && echo "echo ok3" >> /tmp/config \ && cat /tmp/config \ && bash /tmp/config \ && rm -f /tmp/config /tmp/database_password.txt diff --git a/midpoint/midpoint-server/Dockerfile b/midpoint/midpoint-server/Dockerfile index 4e58c39..6baaf22 100644 --- a/midpoint/midpoint-server/Dockerfile +++ b/midpoint/midpoint-server/Dockerfile @@ -6,22 +6,34 @@ FROM tier/shibboleth_sp MAINTAINER info@evolveum.com -# TODO switch to other appropriate Java implementation - RUN yum -y install java-1.8.0-openjdk +RUN rm /etc/shibboleth/sp-key.pem /etc/shibboleth/sp-cert.pem + +COPY container_files/httpd/conf/* /etc/httpd/conf.d/ +COPY container_files/shibboleth/* /etc/shibboleth/ +COPY container_files/usr-local-bin/* /usr/local/bin/ + +RUN cp /dev/null /etc/httpd/conf.d/ssl.conf \ + && sed -i 's/LogFormat "/LogFormat "httpd;access_log;%{ENV}e;%{USERTOKEN}e;/g' /etc/httpd/conf/httpd.conf \ + && echo -e "\nErrorLogFormat \"httpd;error_log;%{ENV}e;%{USERTOKEN}e;[%{u}t] [%-m:%l] [pid %P:tid %T] %7F: %E: [client\ %a] %M% ,\ referer\ %{Referer}i\"" >> /etc/httpd/conf/httpd.conf \ + && sed -i 's/CustomLog "logs\/access_log"/CustomLog "\/tmp\/logpipe"/g' /etc/httpd/conf/httpd.conf \ + && sed -i 's/ErrorLog "logs\/error_log"/ErrorLog "\/tmp\/logpipe"/g' /etc/httpd/conf/httpd.conf \ + && echo -e "\nPassEnv ENV" >> /etc/httpd/conf/httpd.conf \ + && echo -e "\nPassEnv USERTOKEN" >> /etc/httpd/conf/httpd.conf + # Build arguments ARG MP_VERSION=3.9-SNAPSHOT ARG MP_DIST_FILE=midpoint-${MP_VERSION}-dist.tar.gz -ENV MP_DIR=/opt/midpoint - -# Copying files +ENV MP_DIR /opt/midpoint RUN mkdir -p ${MP_DIR}/var + COPY ${MP_DIST_FILE} ${MP_DIR} -COPY container_files/ ${MP_DIR}/ +COPY container_files/mp-dir/ ${MP_DIR}/ + RUN echo 'Extracting midPoint archive...' \ && tar xzf ${MP_DIR}/midpoint-${MP_VERSION}-dist.tar.gz -C ${MP_DIR} --strip-components=1 @@ -30,39 +42,29 @@ VOLUME ${MP_DIR}/var # Repository parameters ENV REPO_HOST midpoint-data -ENV REPO_PORT 3306 +ENV REPO_PORT default ENV REPO_USER root ENV REPO_DATABASE midpoint ENV REPO_JDBC_URL default ENV REPO_PASSWORD_FILE /run/secrets/m_database_password.txt ENV REPO_DATABASE_TYPE mariadb -ENV KEYSTORE_PASSWORD_FILE /run/secrets/m_keystore_password.txt - # Logging parameters -ENV COMPONENT midpoint -ENV LOGFILE midpoint.log ENV ENV demo ENV USERTOKEN $MP_VERSION +# Authentication/web + +ENV AUTHENTICATION internal +ENV SSO_HEADER uid +ENV AJP_ENABLED true +ENV AJP_PORT 9090 +ENV LOGOUT_URL https://localhost:8443/Shibboleth.sso/Logout + # Other parameters -ENV MEM 2048M - -# Execution - -CMD java -Xmx$MEM -Xms2048M -Dfile.encoding=UTF8 \ - -Dmidpoint.home=$MP_DIR/var \ - -Dmidpoint.repository.database=$REPO_DATABASE_TYPE \ - -Dmidpoint.repository.jdbcUsername=$REPO_USER \ - -Dmidpoint.repository.jdbcPassword_FILE=$REPO_PASSWORD_FILE \ - -Dmidpoint.repository.jdbcUrl="`$MP_DIR/repository-url`" \ - -Dmidpoint.repository.hibernateHbm2ddl=none \ - -Dmidpoint.repository.missingSchemaAction=create \ - -Dmidpoint.repository.initializationFailTimeout=60000 \ - -Dmidpoint.keystore.keyStorePassword_FILE=$KEYSTORE_PASSWORD_FILE \ - -Dmidpoint.logging.console.enabled=true \ - -Dmidpoint.logging.console.prefix="`$MP_DIR/log-prefix`" \ - -Dmidpoint.logging.console.timezone=UTC \ - -jar $MP_DIR/lib/midpoint.war +ENV KEYSTORE_PASSWORD_FILE /run/secrets/m_keystore_password.txt +ENV MEM 2048m + +ENTRYPOINT ["/usr/local/bin/entrypoint.sh"] diff --git a/midpoint/midpoint-server/container_files/httpd/conf/midpoint.conf.auth.internal b/midpoint/midpoint-server/container_files/httpd/conf/midpoint.conf.auth.internal new file mode 100644 index 0000000..690a4cd --- /dev/null +++ b/midpoint/midpoint-server/container_files/httpd/conf/midpoint.conf.auth.internal @@ -0,0 +1,6 @@ + +Timeout 2400 +ProxyTimeout 2400 +ProxyBadHeader Ignore + +ProxyPass /midpoint ajp://localhost:9090/midpoint timeout=2400 \ No newline at end of file diff --git a/midpoint/midpoint-server/container_files/httpd/conf/midpoint.conf.auth.shibboleth b/midpoint/midpoint-server/container_files/httpd/conf/midpoint.conf.auth.shibboleth new file mode 100644 index 0000000..e827b9f --- /dev/null +++ b/midpoint/midpoint-server/container_files/httpd/conf/midpoint.conf.auth.shibboleth @@ -0,0 +1,15 @@ + +Timeout 2400 +ProxyTimeout 2400 +ProxyBadHeader Ignore + +ProxyPass /midpoint ajp://localhost:9090/midpoint timeout=2400 + + + + AuthType shibboleth + ShibRequestSetting requireSession 1 + ShibRequireSession on + ShibUseHeaders On + require shibboleth + diff --git a/midpoint/midpoint-server/container_files/httpd/conf/ssl-enable.conf b/midpoint/midpoint-server/container_files/httpd/conf/ssl-enable.conf new file mode 100644 index 0000000..35bf295 --- /dev/null +++ b/midpoint/midpoint-server/container_files/httpd/conf/ssl-enable.conf @@ -0,0 +1,28 @@ +# modern configuration, tweak to your needs +SSLProtocol all -SSLv3 -TLSv1 -TLSv1.1 +SSLCipherSuite ECDHE-ECDSA-AES256-GCM-SHA384:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-CHACHA20-POLY1305:ECDHE-RSA-CHACHA20-POLY1305:ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES256-SHA384:ECDHE-RSA-AES256-SHA384:ECDHE-ECDSA-AES128-SHA256:ECDHE-RSA-AES128-SHA256 +SSLHonorCipherOrder on +SSLCompression off + +# OCSP Stapling, only in httpd 2.3.3 and later +SSLUseStapling on +SSLStaplingResponderTimeout 5 +SSLStaplingReturnResponderErrors off +SSLStaplingCache shmcb:/var/run/ocsp(128000) + +Listen 443 https + + RewriteEngine on + RewriteRule "^/$" "/midpoint/" [R] + + + SSLEngine on + SSLCertificateChainFile /etc/pki/tls/certs/cachain.pem + + SSLCertificateFile /etc/pki/tls/certs/host-cert.pem + + SSLCertificateKeyFile /etc/pki/tls/private/host-key.pem + + # HSTS (mod_headers is required) (15768000 seconds = 6 months) + Header always set Strict-Transport-Security "max-age=15768000" + diff --git a/midpoint/midpoint-server/container_files/log-prefix b/midpoint/midpoint-server/container_files/log-prefix deleted file mode 100755 index fb7c278..0000000 --- a/midpoint/midpoint-server/container_files/log-prefix +++ /dev/null @@ -1,7 +0,0 @@ -#!/bin/bash - -C=${COMPONENT//[;]/_} -L=${LOGFILE//[;]/_} -E=${ENV//[; ]/_} -U=${USERTOKEN//[; ]/_} -echo $C\;$L\;$E\;$U\; diff --git a/midpoint/midpoint-server/container_files/mp-dir/active-spring-profiles b/midpoint/midpoint-server/container_files/mp-dir/active-spring-profiles new file mode 100755 index 0000000..40058e6 --- /dev/null +++ b/midpoint/midpoint-server/container_files/mp-dir/active-spring-profiles @@ -0,0 +1,13 @@ +#!/bin/bash + +case $AUTHENTICATION in + shibboleth) + echo "default,sso" + ;; + internal) + echo "default" + ;; + *) + echo "default" +esac + diff --git a/midpoint/midpoint-server/container_files/repository-url b/midpoint/midpoint-server/container_files/mp-dir/repository-url similarity index 51% rename from midpoint/midpoint-server/container_files/repository-url rename to midpoint/midpoint-server/container_files/mp-dir/repository-url index 8681880..2ba287a 100755 --- a/midpoint/midpoint-server/container_files/repository-url +++ b/midpoint/midpoint-server/container_files/mp-dir/repository-url @@ -1,6 +1,33 @@ #!/bin/bash +function resolvePort() { + if [ $REPO_PORT == "default" ]; then + case $REPO_DATABASE_TYPE in + mariadb) + echo 3306 + ;; + mysql) + echo 3306 + ;; + oracle) + echo 1521 + ;; + postgresql) + echo 5432 + ;; + sqlserver) + echo 1433 + ;; + *) + echo "~~~~~ please supply JDBC port for your repository ~~~~~" + esac + else + echo $REPO_PORT + fi +} + if [ $REPO_JDBC_URL == "default" ]; then + REPO_PORT=$( resolvePort ) case $REPO_DATABASE_TYPE in mariadb) echo "jdbc:mariadb://$REPO_HOST:$REPO_PORT/$REPO_DATABASE?characterEncoding=utf8" diff --git a/midpoint/midpoint-server/container_files/shibboleth/attribute-map.xml b/midpoint/midpoint-server/container_files/shibboleth/attribute-map.xml new file mode 100644 index 0000000..a6725f3 --- /dev/null +++ b/midpoint/midpoint-server/container_files/shibboleth/attribute-map.xml @@ -0,0 +1,153 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/shibboleth-integration/mp-gr/midpoint-server/container_files/shibboleth/native.logger b/midpoint/midpoint-server/container_files/shibboleth/native.logger similarity index 100% rename from shibboleth-integration/mp-gr/midpoint-server/container_files/shibboleth/native.logger rename to midpoint/midpoint-server/container_files/shibboleth/native.logger diff --git a/shibboleth-integration/mp-gr/midpoint-server/container_files/shibboleth/shibd.logger b/midpoint/midpoint-server/container_files/shibboleth/shibd.logger similarity index 100% rename from shibboleth-integration/mp-gr/midpoint-server/container_files/shibboleth/shibd.logger rename to midpoint/midpoint-server/container_files/shibboleth/shibd.logger diff --git a/midpoint/midpoint-server/container_files/usr-local-bin/entrypoint.sh b/midpoint/midpoint-server/container_files/usr-local-bin/entrypoint.sh new file mode 100755 index 0000000..446fc2a --- /dev/null +++ b/midpoint/midpoint-server/container_files/usr-local-bin/entrypoint.sh @@ -0,0 +1,38 @@ +#!/bin/bash + +# normalizing logging variables as required by TIER +export ENV=${ENV//[; ]/_} +export USERTOKEN=${USERTOKEN//[; ]/_} + +echo "Linking secrets and config files; using authentication: $AUTHENTICATION" +ln -sf /run/secrets/m_sp-key.pem /etc/shibboleth/sp-key.pem +ln -sf /run/secrets/m_host-key.pem /etc/pki/tls/private/host-key.pem +ln -sf /etc/httpd/conf.d/midpoint.conf.auth.$AUTHENTICATION /etc/httpd/conf.d/midpoint.conf + +httpd-shib-foreground & + +if [ "$AUTHENTICATION" = "shibboleth" ]; then + LOGOUT_URL_DIRECTIVE="-Dauth.logout.url=$LOGOUT_URL" +else + LOGOUT_URL_DIRECTIVE= +fi + +java -Xmx$MEM -Xms2048m -Dfile.encoding=UTF8 \ + -Dmidpoint.home=$MP_DIR/var \ + -Dmidpoint.repository.database=$REPO_DATABASE_TYPE \ + -Dmidpoint.repository.jdbcUsername=$REPO_USER \ + -Dmidpoint.repository.jdbcPassword_FILE=$REPO_PASSWORD_FILE \ + -Dmidpoint.repository.jdbcUrl="`$MP_DIR/repository-url`" \ + -Dmidpoint.repository.hibernateHbm2ddl=none \ + -Dmidpoint.repository.missingSchemaAction=create \ + -Dmidpoint.repository.initializationFailTimeout=60000 \ + -Dmidpoint.keystore.keyStorePassword_FILE=$KEYSTORE_PASSWORD_FILE \ + -Dmidpoint.logging.console.enabled=true \ + -Dmidpoint.logging.console.prefix="midpoint;midpoint.log;$ENV;$USERTOKEN;" \ + -Dmidpoint.logging.console.timezone=UTC \ + -Dspring.profiles.active="`$MP_DIR/active-spring-profiles`" \ + -Dauth.sso.header=$SSO_HEADER \ + $LOGOUT_URL_DIRECTIVE \ + -Dserver.tomcat.ajp.enabled=$AJP_ENABLED \ + -Dserver.tomcat.ajp.port=$AJP_PORT \ + -jar $MP_DIR/lib/midpoint.war diff --git a/shibboleth-integration/README.md b/shibboleth-integration/README.md deleted file mode 100644 index 3dc739e..0000000 --- a/shibboleth-integration/README.md +++ /dev/null @@ -1,78 +0,0 @@ -# Overview - -This is a demonstration of midPoint - Grouper integration. It is a work in progress. It is described in more detail [here](https://spaces.at.internet2.edu/pages/viewpage.action?spaceKey=TIERENTREG&title=midPoint+-+Grouper+integration+demo). - -This demonstration is derived from [TIER Grouper composition](https://github.internet2.edu/docker/grouper/tree/master/test-compose). - -There are the following containers: - -- `sources`: source data (MySQL), simulating systems of record -- `midpoint-server`: midPoint application (GUI, REST, tasks, etc); it reads from `sources`, updates its own repository and `directory` -- `midpoint-data`: midPoint repository (MySQL) -- `directory`: central LDAP directory; used also by Grouper and Shibboleth IdP -- `grouper-ui`, `grouper-daemon`, `grouper-ws`, `gsh`: Grouper containers -- `grouper-data`: the Grouper repository (MySQL) -- `idp`: Shibboleth identity provider; it uses `directory` as the auhentication source -- `targets`: target(s) where identities should be provisioned (currently MySQL) - -All files needed to build and compose these containers are in `mp-gr` directory. - -# Building and starting -## Downloading midPoint - -Before building, please build or download current midpoint-3.9-SNAPSHOT-dist.tar.gz file and put it into `mp-gr/midpoint-server` directory. There are the following options: -1. Build midPoint from sources as described [here](https://wiki.evolveum.com/display/midPoint/Building+MidPoint+From+Source+Code) -2. Use `mp-gr/download-midpoint` script -3. Download midPoint manually from [Evolveum Nexus](https://nexus.evolveum.com/nexus/content/repositories/snapshots/com/evolveum/midpoint/dist/3.9-SNAPSHOT/) - note you have to choose the correct version - -## Creating Docker composition - -After midPoint archive is correctly placed into `mp-gr/midpoint-server` directory, please execute the following commands: - -``` -$ cd mp-gr -$ docker-compose up --build -``` - -## Uploading initial objects - -After Docker containers are up, check that you can log into midPoint at `http://localhost:8080/midpoint` using `administrator/5ecr3t`. -Then execute the following: - -``` -$ ./upload-objects -Uploading midpoint-objects/objectTemplates/template-org-course.xml (objectTemplates, d35bdec6-643b-41d8-ad5d-8eeb701169d1) -Uploading midpoint-objects/objectTemplates/template-role-generic-group.xml (objectTemplates, 804f8658-0828-4dab-a2ed-f13985e4f80b) -Uploading midpoint-objects/objectTemplates/template-role-affiliation.xml (objectTemplates, d87aa04f-189c-4d6f-b6e1-216dad622142) -Uploading midpoint-objects/objectTemplates/template-org-department.xml (objectTemplates, 0caf2f69-7c72-4946-b218-d84e78b2a057) -Uploading midpoint-objects/resources/scriptedsql-sis-courses.xml (resources, 13660d60-071b-4596-9aa1-5efcd1256c04) -Uploading midpoint-objects/resources/ldap-main.xml (resources, 0a37121f-d515-4a23-9b6d-554c5ef61272) -Uploading midpoint-objects/resources/scriptedsql-sis-persons.xml (resources, 4d70a0da-02dd-41cf-b0a1-00e75d3eaa15) -Uploading midpoint-objects/resources/scriptedsql-grouper2.xml (resources, 6dcb84f5-bf82-4931-9072-fbdf87f96442) -Uploading midpoint-objects/systemConfigurations/SystemConfiguration.xml (systemConfigurations, 00000000-0000-0000-0000-000000000001) -Uploading midpoint-objects/orgs/org-departments.xml (orgs, bee44c51-2469-411d-bac7-695728e9c241) -Uploading midpoint-objects/orgs/org-courses.xml (orgs, 225e9360-0639-40ba-8a31-7f31bef067be) -Uploading midpoint-objects/roles/metarole-department.xml (roles, ffa9eaec-9539-4d15-97aa-24cd5b92ca5b) -Uploading midpoint-objects/roles/role-grouper-sysadmin.xml (roles, d48ec05b-fffd-4262-acd3-d9ff63365b62) -Uploading midpoint-objects/roles/metarole-course.xml (roles, 8aa99e7b-f7d3-4585-9800-14bab4d26a43) -Uploading midpoint-objects/roles/metarole-affiliation.xml (roles, fecae27b-d1d3-40ae-95fa-8f7e44e2ee70) -Uploading midpoint-objects/roles/role-grouper-basic.xml (roles, c89f31dd-8d4f-4e0a-82cb-58ff9d8c1b2f) -Uploading midpoint-objects/roles/metarole-generic-group.xml (roles, c691e15a-f30b-4e15-8445-532db07ceeeb) -``` - -## First steps after installation (importing persons, and so on) - -Now log into midPoint as `administrator`, and - -1. Go through all 4 resources, and execute `Test resource` on each of them. Verify that everything is OK (green). -2. Open role `role-grouper-sysadmin` and reconcile it. Verify that LDAP group of `cn=sysadmingroup,ou=Groups,dc=internet2,dc=edu` was created. -3. Manually import `midpoint-objects-manual/tasks/task-import-sis-persons.xml` and wait for its successful completion. It should import 1000 users from SIS Persons and create appropriate midPoint users and LDAP accounts. -4. After the previous task is done, manually import `midpoint-objects-manual/tasks/task-import-sis-courses.xml` and wait for its successful completion. It should import courses for the users from SIS Courses and create appropriate groups and group membership in LDAP. -5. Select Grouper administrator: in midPoint open e.g. user `banderson` and assign him a role `role-grouper-sysadmin`. Also, set up his password to some value, e.g. `password`. Check that he is now member of LDAP group `cn=sysadmingroup,ou=Groups,dc=internet2,dc=edu`. -6. Wait for a minute so that Grouper gets synchronized. Then try to log in as `banderson` using `https://localhost/grouper`. - -# TODO - - - see the TODO items in [wiki page](https://spaces.at.internet2.edu/pages/viewpage.action?spaceKey=TIERENTREG&title=midPoint+-+Grouper+integration+demo) - - performance of initial import from courses (500ms per user) - - fix hardcoded password for grouper loader LDAP diff --git a/shibboleth-integration/download-midpoint b/shibboleth-integration/download-midpoint deleted file mode 100644 index 5cb8de8..0000000 --- a/shibboleth-integration/download-midpoint +++ /dev/null @@ -1,19 +0,0 @@ -#!/bin/bash - -# There's something wrong with Evolveum nexus, so we have to manually resolve 3.9-SNAPSHOT - -echo "Determining midPoint 3.9-SNAPSHOT version" -echo "-----------------------------------------" -v=`curl "http://nexus.evolveum.com/nexus/content/repositories/snapshots/com/evolveum/midpoint/dist/3.9-SNAPSHOT/maven-metadata.xml" | sed -n 's:.*\(.*\).*:\1:p' | sed -n '1 p'` -echo "-----------------------------------------" -echo "Current midPoint 3.9-SNAPSHOT version is $v; starting the download" -echo "-----------------------------------------" -curl --output mp-gr/midpoint-server/midpoint-3.9-SNAPSHOT-dist.tar.gz "https://evolveum.com/downloads/midpoint-tier/midpoint-3.9-SNAPSHOT-dist.tar.gz" -echo "-----------------------------------------" -echo "Checking the download..." -if tar -tf mp-gr/midpoint-server/midpoint-3.9-SNAPSHOT-dist.tar.gz >/dev/null; then - echo "OK" -else - echo "The file was not downloaded correctly" -fi - diff --git a/shibboleth-integration/midpoint-objects-manual/tasks/task-import-sis-courses.xml b/shibboleth-integration/midpoint-objects-manual/tasks/task-import-sis-courses.xml deleted file mode 100644 index 9aca2fb..0000000 --- a/shibboleth-integration/midpoint-objects-manual/tasks/task-import-sis-courses.xml +++ /dev/null @@ -1,29 +0,0 @@ - - Import SIS courses - - account - ri:AccountObjectClass - - 1535408076153-0-1 - - runnable - ImportingAccounts - http://midpoint.evolveum.com/xml/ns/public/model/synchronization/task/import/handler-3 - - single - loose - diff --git a/shibboleth-integration/midpoint-objects-manual/tasks/task-import-sis-persons.xml b/shibboleth-integration/midpoint-objects-manual/tasks/task-import-sis-persons.xml deleted file mode 100644 index 1fb2e20..0000000 --- a/shibboleth-integration/midpoint-objects-manual/tasks/task-import-sis-persons.xml +++ /dev/null @@ -1,28 +0,0 @@ - - Import SIS persons - - account - ri:AccountObjectClass - - 1535407239440-0-1 - - runnable - ImportingAccounts - http://midpoint.evolveum.com/xml/ns/public/model/synchronization/task/import/handler-3 - - single - loose - diff --git a/shibboleth-integration/midpoint-objects/objectTemplates/template-org-course.xml b/shibboleth-integration/midpoint-objects/objectTemplates/template-org-course.xml deleted file mode 100644 index 4eafd08..0000000 --- a/shibboleth-integration/midpoint-objects/objectTemplates/template-org-course.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - template-org-course - - strong - - - RoleType - 8aa99e7b-f7d3-4585-9800-14bab4d26a43 - - - - assignment - - - - \ No newline at end of file diff --git a/shibboleth-integration/midpoint-objects/objectTemplates/template-org-department.xml b/shibboleth-integration/midpoint-objects/objectTemplates/template-org-department.xml deleted file mode 100644 index df9b223..0000000 --- a/shibboleth-integration/midpoint-objects/objectTemplates/template-org-department.xml +++ /dev/null @@ -1,18 +0,0 @@ - - - template-org-department - - strong - - - RoleType - ffa9eaec-9539-4d15-97aa-24cd5b92ca5b - - - - assignment - - - - \ No newline at end of file diff --git a/shibboleth-integration/midpoint-objects/objectTemplates/template-role-affiliation.xml b/shibboleth-integration/midpoint-objects/objectTemplates/template-role-affiliation.xml deleted file mode 100644 index 3a9c726..0000000 --- a/shibboleth-integration/midpoint-objects/objectTemplates/template-role-affiliation.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - template-role-affiliation - - strong - - - RoleType - fecae27b-d1d3-40ae-95fa-8f7e44e2ee70 - - - - assignment - - - \ No newline at end of file diff --git a/shibboleth-integration/midpoint-objects/objectTemplates/template-role-generic-group.xml b/shibboleth-integration/midpoint-objects/objectTemplates/template-role-generic-group.xml deleted file mode 100644 index 1205f6d..0000000 --- a/shibboleth-integration/midpoint-objects/objectTemplates/template-role-generic-group.xml +++ /dev/null @@ -1,17 +0,0 @@ - - - template-role-generic-group - - strong - - - RoleType - c691e15a-f30b-4e15-8445-532db07ceeeb - - - - assignment - - - \ No newline at end of file diff --git a/shibboleth-integration/midpoint-objects/orgs/org-courses.xml b/shibboleth-integration/midpoint-objects/orgs/org-courses.xml deleted file mode 100644 index 71d1f7e..0000000 --- a/shibboleth-integration/midpoint-objects/orgs/org-courses.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - courses - Courses - \ No newline at end of file diff --git a/shibboleth-integration/midpoint-objects/orgs/org-departments.xml b/shibboleth-integration/midpoint-objects/orgs/org-departments.xml deleted file mode 100644 index 5320c1e..0000000 --- a/shibboleth-integration/midpoint-objects/orgs/org-departments.xml +++ /dev/null @@ -1,6 +0,0 @@ - - - departments - Departments - \ No newline at end of file diff --git a/shibboleth-integration/midpoint-objects/resources/ldap-main.xml b/shibboleth-integration/midpoint-objects/resources/ldap-main.xml deleted file mode 100644 index dbd0cb8..0000000 --- a/shibboleth-integration/midpoint-objects/resources/ldap-main.xml +++ /dev/null @@ -1,444 +0,0 @@ - - - - - - - OpenLDAP (directory) - - - - - c:connectorType - com.evolveum.polygon.connector.ldap.LdapConnector - - - - - - - 389 - directory - dc=internet2,dc=edu - cn=Directory Manager - - password - - nsUniqueId - auto - uid - memberOf - createTimestamp - nsAccountLock - - - - - false - false - false - - - - - - ri:inetOrgPerson - ri:eduPerson - ri:groupOfUniqueNames - ri:groupOfNames - ri:organizationalUnit - - - - - - account - Normal Account - true - ri:inetOrgPerson - ri:eduPerson - - ri:dn - Distinguished Name - - 0 - - false - mr:stringIgnoreCase - - strong - - name - - - - - - - - ri:cn - Common Name - - 0 - - false - - strong - - fullName - - - - - ri:sn - Surname - - 0 - - false - - strong - - familyName - - - - - ri:givenName - Given Name - - 0 - - false - - strong - - givenName - - - - - ri:uid - Login Name - false - mr:stringIgnoreCase - - strong - - name - - - - - ri:mail - Mail - mr:stringIgnoreCase - false - - strong - - emailAddress - - - - - ri:employeeNumber - false - - strong - - employeeNumber - - - - - ri:businessCategory - false - - - ri:eduPersonAffiliation - false - - - false - ri:group - entitlement - course-group - generic-group - objectToSubject - ri:uniqueMember - ri:dn - - - - - http://prism.evolveum.com/xml/ns/public/matching-rule-3#stringIgnoreCase - attributes/ri:dn - cn=root,dc=internet2,dc=edu - - - - - - - - - - - - - - - - entitlement - course-group - LDAP Group for courses - ri:groupOfUniqueNames - - ri:uniqueMember - mr:distinguishedName - minimal - - - ri:dn - mr:stringIgnoreCase - - strong - - identifier - - - - - - - - ri:cn - mr:stringIgnoreCase - - weak - - identifier - - - - - - entitlement - generic-group - LDAP Group - ri:groupOfUniqueNames - - ri:uniqueMember - mr:distinguishedName - minimal - - - ri:dn - mr:stringIgnoreCase - - strong - true - - identifier - - - - - - - - ri:cn - mr:stringIgnoreCase - - weak - - identifier - - - - - - - - - true - - - name - - - declare namespace ri="http://midpoint.evolveum.com/xml/ns/public/resource/instance-3"; - $account/attributes/ri:uid - - - - - - linked - true - - - deleted - true - - http://midpoint.evolveum.com/xml/ns/public/model/action-3#unlink - - - - unlinked - true - - http://midpoint.evolveum.com/xml/ns/public/model/action-3#link - - - - unmatched - true - - http://midpoint.evolveum.com/xml/ns/public/model/action-3#addFocus - - - - - course-group sync - ri:groupOfUniqueNames - entitlement - course-group - OrgType - true - - - - - - - identifier - - $shadow/attributes/ri:cn - - - - subtype - course - - - - - linked - true - - - deleted - true - - http://midpoint.evolveum.com/xml/ns/public/model/action-3#unlink - - - - unlinked - true - - http://midpoint.evolveum.com/xml/ns/public/model/action-3#link - - - - unmatched - - - - generic-group sync - ri:groupOfUniqueNames - entitlement - generic-group - RoleType - true - - - - - - - identifier - - $shadow/attributes/ri:cn - - - - subtype - generic-group - - - - - linked - true - - - deleted - true - - http://midpoint.evolveum.com/xml/ns/public/model/action-3#unlink - - - - unlinked - true - - http://midpoint.evolveum.com/xml/ns/public/model/action-3#link - - - - unmatched - - - - - true - - diff --git a/shibboleth-integration/midpoint-objects/resources/scriptedsql-grouper2.xml b/shibboleth-integration/midpoint-objects/resources/scriptedsql-grouper2.xml deleted file mode 100644 index 7894c7e..0000000 --- a/shibboleth-integration/midpoint-objects/resources/scriptedsql-grouper2.xml +++ /dev/null @@ -1,157 +0,0 @@ - - - - - Grouper SQL NEW - - - - - connectorType - net.tirasa.connid.bundles.db.scriptedsql.ScriptedSQLConnector - - - - - - - - grouper-data - 3306 - - root - - - - grouper - - GROOVY - - /opt/midpoint/var/res/grouper2/SearchScript.groovy - /opt/midpoint/var/res/grouper2/TestScript.groovy - /opt/midpoint/var/res/grouper2/SchemaScript.groovy - /opt/midpoint/var/res/grouper2/SyncScript.groovy - true - - - - - - org.mariadb.jdbc.Driver - jdbc:mysql://%h:%p/%d?useUnicode=true&characterEncoding=utf8&connectionCollation=utf8_bin - true - true - false - false - - - - - - - - - - - account - Normal Account - true - ri:AccountObjectClass - - ri:subject_id - Subject ID - - - ri:subject_identifier0 - Subject Identifier - - - ri:name - Name - - - ri:group - Subject Groups - - strong - - extension/grouper_group - - - - - - entitlement - group - Group - ri:GroupObjectClass - - - - - - - - - diff --git a/shibboleth-integration/midpoint-objects/resources/scriptedsql-sis-courses.xml b/shibboleth-integration/midpoint-objects/resources/scriptedsql-sis-courses.xml deleted file mode 100644 index 5b34689..0000000 --- a/shibboleth-integration/midpoint-objects/resources/scriptedsql-sis-courses.xml +++ /dev/null @@ -1,212 +0,0 @@ - - - - - SQL SIS courses (sources) - - - - - connectorType - net.tirasa.connid.bundles.db.scriptedsql.ScriptedSQLConnector - - - - - - - - sources - 3306 - - root - - - - sis - - GROOVY - - /opt/midpoint/var/res/sis/SearchScript.groovy - /opt/midpoint/var/res/sis/TestScript.groovy - /opt/midpoint/var/res/sis/SchemaScript.groovy - - true - - - - - - org.mariadb.jdbc.Driver - jdbc:mysql://%h:%p/%d?useUnicode=true&characterEncoding=utf8&connectionCollation=utf8_bin - true - true - false - false - - - - - - - - - - - account - Normal Account - true - ri:AccountObjectClass - - ri:uid - UID - - - ri:courseId - Course ID - - strong - - - OrgType - - - name - - - - - - true - - - - - - - name - - - - - - - - displayName - - - - - - OrgType - 225e9360-0639-40ba-8a31-7f31bef067be - - - - assignment - - - - - - - - identifier - - - - - course - - - subtype - - - - - course - - - - - assignment - - - - - - - - - - - - - - true - - - - name - - - declare namespace ri="http://midpoint.evolveum.com/xml/ns/public/resource/instance-3"; - $account/attributes/ri:uid - - - - - - - linked - true - - - deleted - true - - http://midpoint.evolveum.com/xml/ns/public/model/action-3#unlink - - - - - unlinked - true - - http://midpoint.evolveum.com/xml/ns/public/model/action-3#link - - - - unmatched - true - - - - - - - diff --git a/shibboleth-integration/midpoint-objects/resources/scriptedsql-sis-persons.xml b/shibboleth-integration/midpoint-objects/resources/scriptedsql-sis-persons.xml deleted file mode 100644 index b76751c..0000000 --- a/shibboleth-integration/midpoint-objects/resources/scriptedsql-sis-persons.xml +++ /dev/null @@ -1,379 +0,0 @@ - - - - - SQL SIS persons (sources) - - - - - connectorType - net.tirasa.connid.bundles.db.scriptedsql.ScriptedSQLConnector - - - - - - - - sources - 3306 - - root - - - - sis - - GROOVY - - /opt/midpoint/var/res/sis-persons/SearchScript.groovy - /opt/midpoint/var/res/sis-persons/TestScript.groovy - /opt/midpoint/var/res/sis-persons/SchemaScript.groovy - - true - - - - - - org.mariadb.jdbc.Driver - jdbc:mysql://%h:%p/%d?useUnicode=true&characterEncoding=utf8&connectionCollation=utf8_bin - true - true - false - false - - - - - - - - - - - account - Normal Account - true - ri:AccountObjectClass - - ri:uid - UID - - - name - - - - strong - - - RoleType - c89f31dd-8d4f-4e0a-82cb-58ff9d8c1b2f - - grouper-basic - - - - - assignment - - - - - - - - - - ri:fullName - Full Name - - - fullName - - - - - ri:surname - Surname - - - familyName - - - - - ri:givenName - Given Name - - - givenName - - - - - ri:mail - Mail - mr:stringIgnoreCase - - - emailAddress - - - - - - ri:department - - strong - - - OrgType - - - name - - - - - - true - - - - - - - name - - - - - - - - displayName - - - - - - OrgType - bee44c51-2469-411d-bac7-695728e9c241 - - - - assignment - - - - - - - - identifier - - - - - department - - - subtype - - - - - department - - - - - assignment - - - - - - - - - - ri:affiliation - - strong - - - RoleType - - - name - - - - - - true - - - - - - - name - - - - - - - - displayName - - - - - - - - identifier - - - - - affiliation - - - subtype - - - - - affiliation - - - - - assignment - - - - - - - - - - - - - - true - - - - name - - - declare namespace ri="http://midpoint.evolveum.com/xml/ns/public/resource/instance-3"; - $account/attributes/ri:uid - - - - - - - linked - true - - - deleted - true - - http://midpoint.evolveum.com/xml/ns/public/model/action-3#unlink - - - - - unlinked - true - - http://midpoint.evolveum.com/xml/ns/public/model/action-3#link - - - - unmatched - true - - http://midpoint.evolveum.com/xml/ns/public/model/action-3#addFocus - - - - - - - diff --git a/shibboleth-integration/midpoint-objects/roles/metarole-affiliation.xml b/shibboleth-integration/midpoint-objects/roles/metarole-affiliation.xml deleted file mode 100644 index be64d72..0000000 --- a/shibboleth-integration/midpoint-objects/roles/metarole-affiliation.xml +++ /dev/null @@ -1,29 +0,0 @@ - - metarole-affiliation - - - - - ri:eduPersonAffiliation - - strong - - - - - - - 2 - - diff --git a/shibboleth-integration/midpoint-objects/roles/metarole-course.xml b/shibboleth-integration/midpoint-objects/roles/metarole-course.xml deleted file mode 100644 index 3e26105..0000000 --- a/shibboleth-integration/midpoint-objects/roles/metarole-course.xml +++ /dev/null @@ -1,38 +0,0 @@ - - metarole-course - - - - entitlement - course-group - - - - - - - ri:group - - - - - entitlement - course-group - - - - - - - 2 - - diff --git a/shibboleth-integration/midpoint-objects/roles/metarole-department.xml b/shibboleth-integration/midpoint-objects/roles/metarole-department.xml deleted file mode 100644 index 96947e3..0000000 --- a/shibboleth-integration/midpoint-objects/roles/metarole-department.xml +++ /dev/null @@ -1,29 +0,0 @@ - - metarole-department - - - - - ri:businessCategory - - strong - - - - - - - 2 - - diff --git a/shibboleth-integration/midpoint-objects/roles/metarole-generic-group.xml b/shibboleth-integration/midpoint-objects/roles/metarole-generic-group.xml deleted file mode 100644 index f0e93c5..0000000 --- a/shibboleth-integration/midpoint-objects/roles/metarole-generic-group.xml +++ /dev/null @@ -1,38 +0,0 @@ - - metarole-generic-group - - - - entitlement - generic-group - - - - - - - ri:group - - - - - entitlement - generic-group - - - - - - - 2 - - diff --git a/shibboleth-integration/midpoint-objects/roles/role-grouper-basic.xml b/shibboleth-integration/midpoint-objects/roles/role-grouper-basic.xml deleted file mode 100644 index c119b28..0000000 --- a/shibboleth-integration/midpoint-objects/roles/role-grouper-basic.xml +++ /dev/null @@ -1,18 +0,0 @@ - - role-grouper-basic - - - - - 1 - - diff --git a/shibboleth-integration/midpoint-objects/roles/role-grouper-sysadmin.xml b/shibboleth-integration/midpoint-objects/roles/role-grouper-sysadmin.xml deleted file mode 100644 index 5b559f8..0000000 --- a/shibboleth-integration/midpoint-objects/roles/role-grouper-sysadmin.xml +++ /dev/null @@ -1,17 +0,0 @@ - - role-grouper-sysadmin - - - - generic-group - sysadmingroup - diff --git a/shibboleth-integration/midpoint-objects/systemConfigurations/SystemConfiguration.xml b/shibboleth-integration/midpoint-objects/systemConfigurations/SystemConfiguration.xml deleted file mode 100644 index 146ee38..0000000 --- a/shibboleth-integration/midpoint-objects/systemConfigurations/SystemConfiguration.xml +++ /dev/null @@ -1,167 +0,0 @@ - - SystemConfiguration - - 2018-08-15T13:30:55.282+02:00 - 2018-08-15T13:30:55.372+02:00 - http://midpoint.evolveum.com/xml/ns/public/gui/channels-3#init - - - 2018-08-15T13:30:55.562+02:00 - - - add - c:SystemConfigurationType - - - com.evolveum.midpoint.model.impl.lens.ChangeExecutor.executeDelta - handled_error - 1000000000000000009 - Object of type 'SystemConfigurationType' with oid '00000000-0000-0000-0000-000000000001' was not found. - - SystemConfiguration - - handled_error - http://midpoint.evolveum.com/xml/ns/public/gui/channels-3#init - - - - - ERROR - ro.isdc.wro.extensions.processor.css.Less4jProcessor - - - OFF - org.hibernate.engine.jdbc.spi.SqlExceptionHelper - - - OFF - org.hibernate.engine.jdbc.batch.internal.BatchingBatch - - - WARN - org.hibernate.engine.jdbc.batch.internal.AbstractBatchImpl - - - OFF - org.hibernate.internal.ExceptionMapperStandardImpl - - - OFF - net.sf.jasperreports.engine.fill.JRFillDataset - - - WARN - org.apache.wicket.resource.PropertiesFactory - - - ERROR - org.springframework.context.support.ResourceBundleMessageSource - - - INFO - com.evolveum.midpoint.model.impl.lens.projector.Projector - - - INFO - com.evolveum.midpoint.model.impl.lens.Clockwork - - - %date [%X{subsystem}] [%thread] %level \(%logger\): %msg%n - MIDPOINT_LOG - ${midpoint.home}/log/midpoint.log - ${midpoint.home}/log/midpoint-%d{yyyy-MM-dd}.%i.log - 10 - 100MB - true - - - %date %level: %msg%n - MIDPOINT_PROFILE_LOG - ${midpoint.home}/log/midpoint-profile.log - ${midpoint.home}/log/midpoint-profile-%d{yyyy-MM-dd}.%i.log - 10 - 100MB - true - - MIDPOINT_LOG - INFO - - false -
false
-
-
- - RoleType - affiliation - - - - OrgType - department - - - - OrgType - course - - - - RoleType - generic-group - - - - - P3M - - - P1M - - - - true - - - - /self/profile - - View/edit your profile - - fa fa-user - - green - http://midpoint.evolveum.com/xml/ns/public/security/authorization-ui-3#selfProfile - http://midpoint.evolveum.com/xml/ns/public/security/authorization-ui-3#selfAll - - - /self/credentials - - View/edit your credentials - - fa fa-shield - - blue - http://midpoint.evolveum.com/xml/ns/public/security/authorization-ui-3#selfCredentials - http://midpoint.evolveum.com/xml/ns/public/security/authorization-ui-3#selfAll - - - /admin/users - - - fa fa-users - - red - http://midpoint.evolveum.com/xml/ns/public/security/authorization-ui-3#users - - - /admin/resources - - - fa fa-database - - purple - http://midpoint.evolveum.com/xml/ns/public/security/authorization-ui-3#resources - - true - -
diff --git a/shibboleth-integration/mp-gr/configs-and-secrets/grouper/database_password.txt b/shibboleth-integration/mp-gr/configs-and-secrets/grouper/database_password.txt deleted file mode 100644 index e69de29..0000000 diff --git a/shibboleth-integration/mp-gr/configs-and-secrets/grouper/grouper-loader.properties b/shibboleth-integration/mp-gr/configs-and-secrets/grouper/grouper-loader.properties deleted file mode 100644 index d73a54a..0000000 --- a/shibboleth-integration/mp-gr/configs-and-secrets/grouper/grouper-loader.properties +++ /dev/null @@ -1,64 +0,0 @@ -################################# -## LDAP connections -################################# -# specify the ldap connection with user, pass, url -# the string after "ldap." is the ID of the connection, and it should not have -# spaces or other special chars in it. In this case is it "personLdap" - -#note the URL should start with ldap: or ldaps: if it is SSL. -#It should contain the server and port (optional if not default), and baseDn, -#e.g. ldaps://ldapserver.school.edu:636/dc=school,dc=edu -#ldap.demo.url = ldap://directory:389/dc=internet2,dc=edu -ldap.demo.url = ldap://directory:389 - -#optional, if authenticated -ldap.demo.user = cn=admin,dc=internet2,dc=edu - -#optional, if authenticated note the password can be stored encrypted in an external file -#ldap.demo.pass = ${java.lang.System.getenv().get('SUBJECT_SOURCE_LDAP_PASSWORD_FILE') != null ? org.apache.commons.io.FileUtils.readFileToString(java.lang.System.getenv().get('SUBJECT_SOURCE_LDAP_PASSWORD_FILE'), "utf-8") : java.lang.System.getenv().get('SUBJECT_SOURCE_LDAP_PASSWORD')} -ldap.demo.pass=password - -#optional, if you are using tls, set this to true. Generally you will not be using an SSL URL to use TLS... -ldap.demo.tls = false - -#optional, if using sasl -#ldap.personLdap.saslAuthorizationId = -#ldap.personLdap.saslRealm = - -#optional (note, time limit is for search operations, timeout is for connection timeouts), -#most of these default to vt-ldap defaults. times are in millis -#validateOnCheckout defaults to true if all other validate methods are false -#ldap.personLdap.batchSize = -#ldap.personLdap.countLimit = -#ldap.personLdap.timeLimit = -#ldap.personLdap.timeout = -#ldap.personLdap.minPoolSize = -#ldap.personLdap.maxPoolSize = -#ldap.personLdap.validateOnCheckIn = -#ldap.personLdap.validateOnCheckOut = -#ldap.personLdap.validatePeriodically = -#ldap.personLdap.validateTimerPeriod = -#ldap.personLdap.pruneTimerPeriod = -#if connections expire after a certain amount of time, this is it, in millis, defaults to 300000 (5 minutes) -#ldap.personLdap.expirationTime = - -#make the paths fully qualified and not relative to the loader group. -loader.ldap.requireTopStemAsStemFromConfigGroup=false - -##################################### -## Messaging integration with change log -##################################### -changeLog.consumer.rabbitMqMessagingSample.quartzCron = 0 * * * * ? - -# note, change "messagingSample" in key to be the name of the consumer. e.g. changeLog.consumer.someNameAnyName.class -changeLog.consumer.rabbitMqMessagingSample.class = edu.internet2.middleware.grouper.changeLog.esb.consumer.EsbConsumer - -changeLog.consumer.rabbitMqMessagingSample.publisher.class = edu.internet2.middleware.grouper.changeLog.esb.consumer.EsbMessagingPublisher -changeLog.consumer.rabbitMqMessagingSample.publisher.messagingSystemName = rabbitmq -# note, routingKey property is valid only for rabbitmq. For other messaging systems, it is ignored. -changeLog.consumer.rabbitMqMessagingSample.publisher.routingKey = -## queue or topic -changeLog.consumer.rabbitMqMessagingSample.publisher.messageQueueType = queue -changeLog.consumer.rabbitMqMessagingSample.publisher.queueOrTopicName = sampleQueue -## this is optional if not using "id" for subjectId, need to be a subject attribute in the sources.xml -#changeLog.consumer.rabbitMqMessagingSample.publisher.addSubjectAttributes = email diff --git a/shibboleth-integration/mp-gr/configs-and-secrets/grouper/grouper.client.properties b/shibboleth-integration/mp-gr/configs-and-secrets/grouper/grouper.client.properties deleted file mode 100644 index ee9895f..0000000 --- a/shibboleth-integration/mp-gr/configs-and-secrets/grouper/grouper.client.properties +++ /dev/null @@ -1,112 +0,0 @@ -# -# Copyright 2014 Internet2 -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. -# - -# -# Grouper client configuration -# $Id: grouper.client.example.properties,v 1.24 2009-12-30 04:23:02 mchyzer Exp $ -# - -# The grouper client uses Grouper Configuration Overlays (documented on wiki) -# By default the configuration is read from grouper.client.base.properties -# (which should not be edited), and the grouper.client.properties overlays -# the base settings. See the grouper.client.base.properties for the possible -# settings that can be applied to the grouper.client.properties - -######################################## -## LDAP connection settings -######################################## - -# url of directory, including the base DN (distinguished name) -# e.g. ldap://server.school.edu/dc=school,dc=edu -# e.g. ldaps://server.school.edu/dc=school,dc=edu -grouperClient.ldap.url = - -# kerberos principal used to connect to ldap -grouperClient.ldap.login = - -# password for shared secret authentication to ldap -# or you can put a filename with an encrypted password -grouperClient.ldap.password = - -######################################## -## Web service Connection settings -######################################## - -# url of web service, should include everything up to the first resource to access -# e.g. http://groups.school.edu:8090/grouper-ws/servicesRest -# e.g. https://groups.school.edu/grouper-ws/servicesRest -grouperClient.webService.url = https://grouper-ws/grouper-ws/servicesRest - -# kerberos principal used to connect to web service -grouperClient.webService.login = banderson - -# password for shared secret authentication to web service -# or you can put a filename with an encrypted password -grouperClient.webService.password.elConfig = ${java.lang.System.getenv().get('GROUPER_CLIENT_WEBSERVICE_PASSWORD_FILE') != null ? org.apache.commons.io.FileUtils.readFileToString(java.lang.System.getenv().get('GROUPER_CLIENT_WEBSERVICE_PASSWORD_FILE'), "utf-8") : java.lang.System.getenv().get('GROUPER_CLIENT_WEBSERVICE_PASSWORD') } - - -################################ -## Grouper Messaging System -################################ - -# name of messaging system which is the default -grouper.messaging.default.name.of.messaging.system = rabbitmq - -# name of a messaging system. note, "grouperBuiltinMessaging" can be arbitrary -# grouper.messaging.system.grouperBuiltinMessaging.name = grouperBuiltinMessaging - -# class that implements edu.internet2.middleware.grouperClient.messaging.GrouperMessagingSystem -# grouper.messaging.system.grouperBuiltinMessaging.class = edu.internet2.middleware.grouper.messaging.GrouperBuiltinMessagingSystem - -# name of a messaging system. note, "grouperBuiltinMessaging" can be arbitrary -grouper.messaging.system.rabbitmqSystem.name = rabbitmqSystem - -# class that implements edu.internet2.middleware.grouperClient.messaging.GrouperMessagingSystem -grouper.messaging.system.rabbitmqSystem.class = edu.internet2.middleware.grouperMessagingRabbitmq.GrouperMessagingRabbitmqSystem - -# host address of rabbitmq queue -grouper.messaging.system.rabbitmqSystem.host = mq - -# virtual host of rabbitmq queue -grouper.messaging.system.rabbitmqSystem.virtualhost = - -# port of rabbitmq queue -grouper.messaging.system.rabbitmqSystem.port = - -grouper.messaging.system.rabbitmqSystem.defaultPageSize = 10 - -grouper.messaging.system.rabbitmqSystem.maxPageSize = 50 - - -# name of a messaging system, required -grouper.messaging.system.rabbitmq.name = rabbitmq - -# default system settings to this messaging system, note, there is only one level of inheritance -grouper.messaging.system.rabbitmq.defaultSystemName = rabbitmqSystem - -grouper.messaging.system.rabbitmq.user = guest - -#pass -grouper.messaging.system.rabbitmq.password.elConfig = ${java.lang.System.getenv().get('RABBITMQ_PASSWORD_FILE') != null ? org.apache.commons.io.FileUtils.readFileToString(java.lang.System.getenv().get('RABBITMQ_PASSWORD_FILE'), "utf-8") : java.lang.System.getenv().get('RABBITMQ_PASSWORD') } -# set the following three properties if you want to use TLS connection to rabbitmq. All three need to be populated. -# TLS Version -#grouper.messaging.system.rabbitmqSystem.tlsVersion = TLSv1.1 - -# path to trust store file -#grouper.messaging.system.rabbitmqSystem.pathToTrustStore = - -# trust passphrase -#grouper.messaging.system.rabbitmqSystem.trustPassphrase = diff --git a/shibboleth-integration/mp-gr/configs-and-secrets/grouper/grouper.hibernate.properties b/shibboleth-integration/mp-gr/configs-and-secrets/grouper/grouper.hibernate.properties deleted file mode 100644 index f4849ba..0000000 --- a/shibboleth-integration/mp-gr/configs-and-secrets/grouper/grouper.hibernate.properties +++ /dev/null @@ -1,29 +0,0 @@ -# -# Grouper Hibernate Configuration -# $Id: grouper.hibernate.example.properties,v 1.9 2009-08-11 20:18:09 mchyzer Exp $ -# - -# The grouper hibernate config uses Grouper Configuration Overlays (documented on wiki) -# By default the configuration is read from grouper.hibernate.base.properties -# (which should not be edited), and the grouper.hibernate.properties overlays -# the base settings. See the grouper.hibernate.base.properties for the possible -# settings that can be applied to the grouper.hibernate.properties - -######################################## -## DB settings -######################################## - -# e.g. mysql: jdbc:mysql://localhost:3306/grouper -# e.g. p6spy (log sql): [use the URL that your DB requires] -# e.g. oracle: jdbc:oracle:thin:@server.school.edu:1521:sid -# e.g. hsqldb (a): jdbc:hsqldb:dist/run/grouper;create=true -# e.g. hsqldb (b): jdbc:hsqldb:hsql://localhost:9001/grouper -# e.g. postgres: jdbc:postgresql://localhost:5432/database -# e.g. mssql: jdbc:sqlserver://localhost:3280;databaseName=grouper -hibernate.connection.url = jdbc:mysql://grouper-data:3306/grouper?CharSet=utf8&useUnicode=true&characterEncoding=utf8 - -hibernate.connection.username = root -# If you are using an empty password, depending upon your version of -# Java and Ant you may need to specify a password of "". -# Note: you can keep passwords external and encrypted: https://bugs.internet2.edu/jira/browse/GRP-122 -hibernate.connection.password.elConfig = ${java.lang.System.getenv().get('GROUPER_DATABASE_PASSWORD_FILE') != null ? org.apache.commons.io.FileUtils.readFileToString(java.lang.System.getenv().get('GROUPER_DATABASE_PASSWORD_FILE'), "utf-8") : java.lang.System.getenv().get('GROUPER_DATABASE_PASSWORD') } diff --git a/shibboleth-integration/mp-gr/configs-and-secrets/grouper/grouper.properties b/shibboleth-integration/mp-gr/configs-and-secrets/grouper/grouper.properties deleted file mode 100644 index c931287..0000000 --- a/shibboleth-integration/mp-gr/configs-and-secrets/grouper/grouper.properties +++ /dev/null @@ -1,25 +0,0 @@ -# -# Grouper Configuration -# $Id: grouper.example.properties,v 1.48 2009-12-16 06:02:30 mchyzer Exp $ -# - -# Grouper uses Grouper Configuration Overlays (documented on wiki) -# By default the configuration is read from grouper.base.properties -# (which should not be edited), and the grouper.properties overlays -# the base settings. See the grouper.base.properties for the possible -# settings that can be applied to the grouper.properties - -#if groups like the wheel group should be auto-created for convenience (note: check config needs to be on) -configuration.autocreate.system.groups = true - -# A wheel group allows you to enable non-GrouperSystem subjects to act -# like a root user when interacting with the registry. -groups.wheel.use = true - -# Set to the name of the group you want to treat as the wheel group. -# The members of this group will be treated as root-like users. -groups.wheel.group = etc:sysadmingroup - -# Used to allow Include Exclude groups -grouperIncludeExclude.use = true -grouperIncludeExclude.requireGroups.use = true diff --git a/shibboleth-integration/mp-gr/configs-and-secrets/grouper/rabbitmq_password.txt b/shibboleth-integration/mp-gr/configs-and-secrets/grouper/rabbitmq_password.txt deleted file mode 100644 index 158f675..0000000 --- a/shibboleth-integration/mp-gr/configs-and-secrets/grouper/rabbitmq_password.txt +++ /dev/null @@ -1 +0,0 @@ -guest \ No newline at end of file diff --git a/shibboleth-integration/mp-gr/configs-and-secrets/grouper/subject.properties b/shibboleth-integration/mp-gr/configs-and-secrets/grouper/subject.properties deleted file mode 100644 index 535e728..0000000 --- a/shibboleth-integration/mp-gr/configs-and-secrets/grouper/subject.properties +++ /dev/null @@ -1,75 +0,0 @@ -subject.sources.xml.location = - -subjectApi.source.ldap.id = ldap -subjectApi.source.ldap.name = EDU Ldap -subjectApi.source.ldap.types = person -subjectApi.source.ldap.adapterClass = edu.internet2.middleware.grouper.subj.GrouperJndiSourceAdapter -subjectApi.source.ldap.param.INITIAL_CONTEXT_FACTORY.value = com.sun.jndi.ldap.LdapCtxFactory -subjectApi.source.ldap.param.PROVIDER_URL.value = ldap://directory:389 -subjectApi.source.ldap.param.SECURITY_AUTHENTICATION.value = simple -subjectApi.source.ldap.param.SECURITY_PRINCIPAL.value = cn=admin,dc=internet2,dc=edu -subjectApi.source.ldap.param.SECURITY_CREDENTIALS.value.elConfig = ${java.lang.System.getenv().get('SUBJECT_SOURCE_LDAP_PASSWORD_FILE') != null ? org.apache.commons.io.FileUtils.readFileToString(java.lang.System.getenv().get('SUBJECT_SOURCE_LDAP_PASSWORD_FILE'), "utf-8") : java.lang.System.getenv().get('SUBJECT_SOURCE_LDAP_PASSWORD')} -subjectApi.source.ldap.param.SubjectID_AttributeType.value = uid -subjectApi.source.ldap.param.SubjectID_formatToLowerCase.value = false -subjectApi.source.ldap.param.Name_AttributeType.value = cn -subjectApi.source.ldap.param.Description_AttributeType.value = cn -subjectApi.source.ldap.param.VTLDAP_VALIDATOR.value = ConnectLdapValidator -subjectApi.source.ldap.param.subjectVirtualAttribute_0_searchAttribute0.value = ${subjectUtils.defaultIfBlank(subject.getAttributeValueOrCommaSeparated('uid'), "")},${subjectUtils.defaultIfBlank(subject.getAttributeValueOrCommaSeparated('cn'), "")},${subjectUtils.defaultIfBlank(subject.getAttributeValueOrCommaSeparated('exampleEduRegId'), "")} -subjectApi.source.ldap.param.sortAttribute0.value = cn -subjectApi.source.ldap.param.searchAttribute0.value = searchAttribute0 - -# STATUS SECTION for searches to filter out inactives and allow -# the user to filter by status with e.g. status=all -# this is optional, and advanced -# -# field in database or ldap or endpoint that is the status field -#subjectApi.source.example.param.statusDatastoreFieldName.value = status - -# search string from user which represents the status. e.g. status=active -#subjectApi.source.example.param.statusLabel.value = status - -# available statuses from screen (if not specified, any will be allowed). comma separated list. -# Note, this is optional and you probably dont want to configure it, it is mostly necessary -# when you have multiple sources with statuses... if someone types an invalid status -# and you have this configured, it will not filter by it -#subjectApi.source.example.param.statusesFromUser.value = Active, Inactive, Pending, All - -# all label from the user -#subjectApi.source.example.param.statusAllFromUser.value = All - -# if no status is specified, this will be used (e.g. for active only). Note, the value should be of the -# form the user would type in -#subjectApi.source.example.param.statusSearchDefault.value = status=active - -# translate between screen values of status, and the data store value. Increment the 0 to 1, 2, etc for more translations. -# so the user could enter: status=active, and that could translate to status_col=A. The 'user' is what the user types in, -# the 'datastore' is what is in the datastore. The user part is not case-sensitive. Note, this could be a many to one -#subjectApi.source.example.param.statusTranslateUser0.value = active -#subjectApi.source.example.param.statusTranslateDatastore0.value = A - -# subject identifier to store in grouper's member table. this is used to increase speed of loader and perhaps for provisioning -# you can have up to max 1 subject identifier -#subjectApi.source.example.param.subjectIdentifierAttribute0.value = uid - -#searchSubject: find a subject by ID. ID is generally an opaque and permanent identifier, e.g. 12345678. -# Each subject has one and only on ID. Returns one result when searching for one ID. -subjectApi.source.ldap.search.searchSubject.param.filter.value = (&(uid=%TERM%)(objectclass=person)) -subjectApi.source.ldap.search.searchSubject.param.scope.value = SUBTREE_SCOPE -subjectApi.source.ldap.search.searchSubject.param.base.value = ou=people,dc=internet2,dc=edu - -#searchSubjectByIdentifier: find a subject by identifier. Identifier is anything that uniquely -# identifies the user, e.g. jsmith or jsmith@institution.edu. -# Subjects can have multiple identifiers. Note: it is nice to have if identifiers are unique -# even across sources. Returns one result when searching for one identifier. -subjectApi.source.ldap.search.searchSubjectByIdentifier.param.filter.value = (&(|(uid=%TERM%)(employeeNumber=%TERM%))(objectclass=person)) -subjectApi.source.ldap.search.searchSubjectByIdentifier.param.scope.value = SUBTREE_SCOPE -subjectApi.source.ldap.search.searchSubjectByIdentifier.param.base.value = ou=people,dc=internet2,dc=edu - -# search: find subjects by free form search. Returns multiple results. - -subjectApi.source.ldap.search.search.param.filter.value = (&(|(|(uid=%TERM%)(cn=*%TERM%*))(uid=%TERM%*))(objectclass=person)) -subjectApi.source.ldap.search.search.param.scope.value = SUBTREE_SCOPE -subjectApi.source.ldap.search.search.param.base.value = ou=people,dc=internet2,dc=edu - -subjectApi.source.ldap.attributes = givenName, sn, uid, mail, employeeNumber -subjectApi.source.ldap.internalAttributes = searchAttribute0 diff --git a/shibboleth-integration/mp-gr/configs-and-secrets/midpoint/database_password.txt b/shibboleth-integration/mp-gr/configs-and-secrets/midpoint/database_password.txt deleted file mode 100644 index 11bac01..0000000 --- a/shibboleth-integration/mp-gr/configs-and-secrets/midpoint/database_password.txt +++ /dev/null @@ -1 +0,0 @@ -456654 diff --git a/shibboleth-integration/mp-gr/docker-compose.yml b/shibboleth-integration/mp-gr/docker-compose.yml deleted file mode 100644 index 8658809..0000000 --- a/shibboleth-integration/mp-gr/docker-compose.yml +++ /dev/null @@ -1,320 +0,0 @@ -# -# Building: -# - docker-compose up --build -# -# It assumes that midpoint-3.9-SNAPSHOT-dist.tar.gz is present in the 'midpoint-server' directory. (TODO: eliminate this!) -# - -version: "3.3" - -services: - grouper-daemon: - build: ./grouper-daemon/ - command: bash -c "while ! curl -s grouper-data:3306 > /dev/null; do echo waiting for mysql on grouper-data to start; sleep 3; done; while ! curl -s ldap://directory:389 > /dev/null; do echo waiting for ldap on directory to start; sleep 3; done; exec daemon" - depends_on: - - grouper-data - - directory - environment: - - ENV=dev - - GROUPER_CLIENT_WEBSERVICE_PASSWORD_FILE=password - - GROUPER_DATABASE_PASSWORD_FILE=/run/secrets/g_database_password.txt - - RABBITMQ_PASSWORD_FILE=/run/secrets/rabbitmq_password.txt - - SUBJECT_SOURCE_LDAP_PASSWORD=password - - USERTOKEN=build-2 - networks: - - back - secrets: - - g_database_password.txt - - rabbitmq_password.txt - - source: grouper.hibernate.properties - target: grouper_grouper.hibernate.properties - - source: grouper-loader.properties - target: grouper_grouper-loader.properties - - source: subject.properties - target: grouper_subject.properties - volumes: - - type: bind - source: ./configs-and-secrets/grouper/grouper.properties - target: /opt/grouper/conf/grouper.properties - - type: bind - source: ./configs-and-secrets/grouper/grouper.client.properties - target: /opt/grouper/conf/grouper.client.properties - - - grouper-ui: - build: ./grouper-ui/ - command: bash -c "while ! curl -s grouper-data:3306 > /dev/null; do echo waiting for mysql on grouper-data to start; sleep 3; done; while ! curl -s ldap://directory:389 > /dev/null; do echo waiting for ldap on directory to start; sleep 3; done; exec ui" - depends_on: - - grouper-data - - directory - environment: - - ENV=dev - - GROUPER_DATABASE_PASSWORD_FILE=/run/secrets/g_database_password.txt - - SUBJECT_SOURCE_LDAP_PASSWORD=password - - USERTOKEN=build-2 - networks: - - front - - back - ports: - - "80:80" - - "443:443" - secrets: - - g_database_password.txt - - source: grouper.hibernate.properties - target: grouper_grouper.hibernate.properties - - source: grouper-loader.properties - target: grouper_grouper-loader.properties - - source: subject.properties - target: grouper_subject.properties - - source: grouper-sp-key.pem - target: shib_sp-key.pem - - source: grouper-host-key.pem - target: host-key.pem - volumes: - - type: bind - source: ./configs-and-secrets/grouper/grouper.properties - target: /opt/grouper/conf/grouper.properties - - type: bind - source: ./configs-and-secrets/grouper/grouper.client.properties - target: /opt/grouper/conf/grouper.client.properties - - type: bind - source: ./configs-and-secrets/shibboleth/grouper/sp-cert.pem - target: /etc/shibboleth/sp-cert.pem - - type: bind - source: ./configs-and-secrets/shibboleth/grouper/shibboleth2.xml - target: /etc/shibboleth/shibboleth2.xml - - type: bind - source: ./configs-and-secrets/shibboleth/idp-metadata.xml - target: /etc/shibboleth/idp-metadata.xml - - type: bind - source: ./configs-and-secrets/httpd/grouper/host-cert.pem - target: /etc/pki/tls/certs/host-cert.pem - - type: bind - source: ./configs-and-secrets/httpd/grouper/host-cert.pem - target: /etc/pki/tls/certs/cachain.pem - - -# grouper-ws: -# build: ./grouper-ws/ -# command: bash -c "while ! curl -s grouper-data:3306 > /dev/null; do echo waiting for mysql on grouper-data to start; sleep 3; done; while ! curl -s ldap://directory:389 > /dev/null; do echo waiting for ldap on directory to start; sleep 3; done; exec ws" -# depends_on: -# - grouper-data -# - directory -# environment: -# - ENV=dev -# - GROUPER_DATABASE_PASSWORD_FILE=/run/secrets/g_database_password.txt -# - SUBJECT_SOURCE_LDAP_PASSWORD=password -# - USERTOKEN=build-2 -# networks: -# - front -# - back -# ports: -# - "8443:443" -# secrets: -# - g_database_password.txt -# - source: grouper.hibernate.properties -# target: grouper_grouper.hibernate.properties -# - source: grouper-loader.properties -# target: grouper_grouper-loader.properties -# - source: subject.properties -# target: grouper_subject.properties -# - source: sp-key.pem -# target: shib_sp-key.pem -# - source: host-key.pem -# volumes: -# - type: bind -# source: ./configs-and-secrets/grouper/grouper.properties -# target: /opt/grouper/conf/grouper.properties -# - type: bind -# source: ./configs-and-secrets/grouper/grouper.client.properties -# target: /opt/grouper/conf/grouper.client.properties -# - type: bind -# source: ./configs-and-secrets/httpd/host-cert.pem -# target: /etc/pki/tls/certs/host-cert.pem -# - type: bind -# source: ./configs-and-secrets/httpd/host-cert.pem -# target: /etc/pki/tls/certs/cachain.pem -# -# gsh: -# build: ./gsh/ -# depends_on: -# - grouper-data -# - directory -# environment: -# - ENV=dev -# - GROUPER_DATABASE_PASSWORD_FILE=/run/secrets/g_database_password.txt -# - SUBJECT_SOURCE_LDAP_PASSWORD=password -# - USERTOKEN=build-2 -# networks: -# - back -# secrets: -# - g_database_password.txt -# - source: grouper.hibernate.properties -# target: grouper_grouper.hibernate.properties -# - source: grouper-loader.properties -# target: grouper_grouper-loader.properties -# - source: subject.properties -# target: grouper_subject.properties -# volumes: -# - type: bind -# source: ./configs-and-secrets/grouper/grouper.properties -# target: /opt/grouper/conf/grouper.properties -# - type: bind -# source: ./configs-and-secrets/grouper/grouper.client.properties -# target: /opt/grouper/conf/grouper.client.properties - - grouper-data: - build: ./grouper-data/ - expose: - - "3306" - networks: - - back - ports: - - "3306:3306" - volumes: - - grouper_mysql:/var/lib/mysql - - directory: - build: ./directory/ - expose: - - "389" - ports: - - "389:389" - networks: - - back - volumes: - - ldap:/var/lib/dirsrv - - sources: - build: ./sources/ - expose: - - "3306" - ports: - - "13306:3306" - networks: - - back - volumes: - - source_mysql:/var/lib/mysql - - targets: - build: ./targets/ - expose: - - "3306" - ports: - - "23306:389" - networks: - - back - volumes: - - target_mysql:/var/lib/mysql - - midpoint-data: - build: ./midpoint-data/ - expose: - - "3306" - ports: - - "33306:3306" - networks: - - back - volumes: - - midpoint_mysql:/var/lib/mysql - - midpoint-server: - build: ./midpoint-server/ - depends_on: - - midpoint-data - expose: - - "8080" - - "4438" - ports: - - "8080:80" - - "4438:443" - networks: - - front - - back - secrets: - - m_database_password.txt - - source: midpoint-sp-key.pem - target: shib_sp-key.pem - - source: midpoint-host-key.pem - target: host-key.pem - volumes: - - midpoint_home:/opt/midpoint/var - - type: bind - source: ./configs-and-secrets/shibboleth/midpoint/sp-cert.pem - target: /etc/shibboleth/sp-cert.pem - - type: bind - source: ./configs-and-secrets/shibboleth/midpoint/shibboleth2.xml - target: /etc/shibboleth/shibboleth2.xml - - type: bind - source: ./configs-and-secrets/shibboleth/idp-metadata.xml - target: /etc/shibboleth/idp-metadata.xml - - type: bind - source: ./configs-and-secrets/httpd/midpoint/host-cert.pem - target: /etc/pki/tls/certs/host-cert.pem - - type: bind - source: ./configs-and-secrets/httpd/midpoint/host-cert.pem - target: /etc/pki/tls/certs/cachain.pem - - idp: - build: ./idp/ - depends_on: - - directory - environment: - - JETTY_MAX_HEAP=64m - - JETTY_BROWSER_SSL_KEYSTORE_PASSWORD=password - - JETTY_BACKCHANNEL_SSL_KEYSTORE_PASSWORD=password - networks: - - front - - back - ports: - - "4443:4443" - - mq: - image: rabbitmq:management - environment: - - RABBITMQ_NODENAME=docker-rabbit - hostname: rabbitmq - networks: - - front - - back - ports: - - "15672:15672" - - -networks: - front: - driver: bridge - back: - driver: bridge - - -secrets: - g_database_password.txt: - file: ./configs-and-secrets/grouper/database_password.txt - grouper.hibernate.properties: - file: ./configs-and-secrets/grouper/grouper.hibernate.properties - grouper-loader.properties: - file: ./configs-and-secrets/grouper/grouper-loader.properties - grouper-host-key.pem: - file: ./configs-and-secrets/httpd/grouper/host-key.pem - rabbitmq_password.txt: - file: ./configs-and-secrets/grouper/rabbitmq_password.txt - subject.properties: - file: ./configs-and-secrets/grouper/subject.properties - grouper-sp-key.pem: - file: ./configs-and-secrets/shibboleth/grouper/sp-key.pem - midpoint-host-key.pem: - file: ./configs-and-secrets/httpd/midpoint/host-key.pem - midpoint-sp-key.pem: - file: ./configs-and-secrets/shibboleth/midpoint/sp-key.pem - m_database_password.txt: - file: ./configs-and-secrets/midpoint/database_password.txt - - -volumes: - grouper_mysql: - source_mysql: - target_mysql: - ldap: - midpoint_mysql: - midpoint_home: diff --git a/shibboleth-integration/mp-gr/grouper-daemon/Dockerfile b/shibboleth-integration/mp-gr/grouper-daemon/Dockerfile deleted file mode 100644 index f620350..0000000 --- a/shibboleth-integration/mp-gr/grouper-daemon/Dockerfile +++ /dev/null @@ -1,5 +0,0 @@ -FROM tier/grouper:latest - -LABEL author="tier-packaging@internet2.edu " - -CMD ["daemon"] diff --git a/shibboleth-integration/mp-gr/grouper-data/Dockerfile b/shibboleth-integration/mp-gr/grouper-data/Dockerfile deleted file mode 100644 index 5ca6a12..0000000 --- a/shibboleth-integration/mp-gr/grouper-data/Dockerfile +++ /dev/null @@ -1,40 +0,0 @@ -FROM tier/grouper:latest - -LABEL author="tier-packaging@internet2.edu " - -RUN yum install -y epel-release \ - && yum update -y \ - && yum install -y mariadb-server mariadb \ - && yum clean all \ - && rm -rf /var/cache/yum - -COPY container_files/seed-data/ /seed-data/ -COPY container_files/conf/ /opt/grouper/grouper.apiBinary/conf/ - -RUN mysql_install_db \ - && chown -R mysql:mysql /var/lib/mysql/ \ - && sed -i 's/^\(bind-address\s.*\)/# \1/' /etc/my.cnf \ - && sed -i 's/^\(log_error\s.*\)/# \1/' /etc/my.cnf \ - && sed -i 's/\[mysqld\]/\[mysqld\]\ncharacter_set_server = utf8/' /etc/my.cnf \ - && sed -i 's/\[mysqld\]/\[mysqld\]\ncollation_server = utf8_general_ci/' /etc/my.cnf \ - && sed -i 's/\[mysqld\]/\[mysqld\]\nport = 3306/' /etc/my.cnf \ - && cat /etc/my.cnf \ - && echo "/usr/bin/mysqld_safe &" > /tmp/config \ - && echo "mysqladmin --silent --wait=30 ping || exit 1" >> /tmp/config \ - && echo "mysql -e 'GRANT ALL PRIVILEGES ON *.* TO \"root\"@\"%\" WITH GRANT OPTION;'" >> /tmp/config \ - && echo "mysql -e 'CREATE DATABASE grouper CHARACTER SET utf8 COLLATE utf8_bin;'" >> /tmp/config \ - && bash /tmp/config \ - && rm -f /tmp/config - -RUN (mysqld_safe & ) \ - && while ! curl -s localhost:3306 > /dev/null; do echo waiting for mysqld to start; sleep 1; done; \ - bin/gsh -registry -check -runscript -noprompt && \ - echo "Running demo.gsh" && \ - sleep 10 && \ - bin/gsh /seed-data/demo.gsh && \ - echo "demo.gsh DONE" && \ - rm /seed-data/demo.gsh - -EXPOSE 3306 - -CMD mysqld_safe diff --git a/shibboleth-integration/mp-gr/grouper-data/container_files/conf/grouper.hibernate.properties b/shibboleth-integration/mp-gr/grouper-data/container_files/conf/grouper.hibernate.properties deleted file mode 100644 index 154b8eb..0000000 --- a/shibboleth-integration/mp-gr/grouper-data/container_files/conf/grouper.hibernate.properties +++ /dev/null @@ -1,29 +0,0 @@ -# -# Grouper Hibernate Configuration -# $Id: grouper.hibernate.example.properties,v 1.9 2009-08-11 20:18:09 mchyzer Exp $ -# - -# The grouper hibernate config uses Grouper Configuration Overlays (documented on wiki) -# By default the configuration is read from grouper.hibernate.base.properties -# (which should not be edited), and the grouper.hibernate.properties overlays -# the base settings. See the grouper.hibernate.base.properties for the possible -# settings that can be applied to the grouper.hibernate.properties - -######################################## -## DB settings -######################################## - -# e.g. mysql: jdbc:mysql://localhost:3306/grouper -# e.g. p6spy (log sql): [use the URL that your DB requires] -# e.g. oracle: jdbc:oracle:thin:@server.school.edu:1521:sid -# e.g. hsqldb (a): jdbc:hsqldb:dist/run/grouper;create=true -# e.g. hsqldb (b): jdbc:hsqldb:hsql://localhost:9001/grouper -# e.g. postgres: jdbc:postgresql://localhost:5432/database -# e.g. mssql: jdbc:sqlserver://localhost:3280;databaseName=grouper -hibernate.connection.url = jdbc:mysql://localhost:3306/grouper?CharSet=utf8&useUnicode=true&characterEncoding=utf8 - -hibernate.connection.username = root -# If you are using an empty password, depending upon your version of -# Java and Ant you may need to specify a password of "". -# Note: you can keep passwords external and encrypted: https://bugs.internet2.edu/jira/browse/GRP-122 -hibernate.connection.password = diff --git a/shibboleth-integration/mp-gr/grouper-data/container_files/conf/grouper.properties b/shibboleth-integration/mp-gr/grouper-data/container_files/conf/grouper.properties deleted file mode 100644 index c931287..0000000 --- a/shibboleth-integration/mp-gr/grouper-data/container_files/conf/grouper.properties +++ /dev/null @@ -1,25 +0,0 @@ -# -# Grouper Configuration -# $Id: grouper.example.properties,v 1.48 2009-12-16 06:02:30 mchyzer Exp $ -# - -# Grouper uses Grouper Configuration Overlays (documented on wiki) -# By default the configuration is read from grouper.base.properties -# (which should not be edited), and the grouper.properties overlays -# the base settings. See the grouper.base.properties for the possible -# settings that can be applied to the grouper.properties - -#if groups like the wheel group should be auto-created for convenience (note: check config needs to be on) -configuration.autocreate.system.groups = true - -# A wheel group allows you to enable non-GrouperSystem subjects to act -# like a root user when interacting with the registry. -groups.wheel.use = true - -# Set to the name of the group you want to treat as the wheel group. -# The members of this group will be treated as root-like users. -groups.wheel.group = etc:sysadmingroup - -# Used to allow Include Exclude groups -grouperIncludeExclude.use = true -grouperIncludeExclude.requireGroups.use = true diff --git a/shibboleth-integration/mp-gr/grouper-data/container_files/conf/subject.properties b/shibboleth-integration/mp-gr/grouper-data/container_files/conf/subject.properties deleted file mode 100644 index a823191..0000000 --- a/shibboleth-integration/mp-gr/grouper-data/container_files/conf/subject.properties +++ /dev/null @@ -1,75 +0,0 @@ -subject.sources.xml.location = - -subjectApi.source.ldap.id = ldap -subjectApi.source.ldap.name = EDU Ldap -subjectApi.source.ldap.types = person -subjectApi.source.ldap.adapterClass = edu.internet2.middleware.grouper.subj.GrouperJndiSourceAdapter -subjectApi.source.ldap.param.INITIAL_CONTEXT_FACTORY.value = com.sun.jndi.ldap.LdapCtxFactory -subjectApi.source.ldap.param.PROVIDER_URL.value = ldap://localhost:389 -subjectApi.source.ldap.param.SECURITY_AUTHENTICATION.value = simple -subjectApi.source.ldap.param.SECURITY_PRINCIPAL.value = cn=admin,dc=internet2,dc=edu -subjectApi.source.ldap.param.SECURITY_CREDENTIALS.value = password -subjectApi.source.ldap.param.SubjectID_AttributeType.value = uid -subjectApi.source.ldap.param.SubjectID_formatToLowerCase.value = false -subjectApi.source.ldap.param.Name_AttributeType.value = cn -subjectApi.source.ldap.param.Description_AttributeType.value = cn -subjectApi.source.ldap.param.VTLDAP_VALIDATOR.value = ConnectLdapValidator -subjectApi.source.ldap.param.subjectVirtualAttribute_0_searchAttribute0.value = ${subjectUtils.defaultIfBlank(subject.getAttributeValueOrCommaSeparated('uid'), "")},${subjectUtils.defaultIfBlank(subject.getAttributeValueOrCommaSeparated('cn'), "")},${subjectUtils.defaultIfBlank(subject.getAttributeValueOrCommaSeparated('exampleEduRegId'), "")} -subjectApi.source.ldap.param.sortAttribute0.value = cn -subjectApi.source.ldap.param.searchAttribute0.value = searchAttribute0 - -# STATUS SECTION for searches to filter out inactives and allow -# the user to filter by status with e.g. status=all -# this is optional, and advanced -# -# field in database or ldap or endpoint that is the status field -#subjectApi.source.example.param.statusDatastoreFieldName.value = status - -# search string from user which represents the status. e.g. status=active -#subjectApi.source.example.param.statusLabel.value = status - -# available statuses from screen (if not specified, any will be allowed). comma separated list. -# Note, this is optional and you probably dont want to configure it, it is mostly necessary -# when you have multiple sources with statuses... if someone types an invalid status -# and you have this configured, it will not filter by it -#subjectApi.source.example.param.statusesFromUser.value = Active, Inactive, Pending, All - -# all label from the user -#subjectApi.source.example.param.statusAllFromUser.value = All - -# if no status is specified, this will be used (e.g. for active only). Note, the value should be of the -# form the user would type in -#subjectApi.source.example.param.statusSearchDefault.value = status=active - -# translate between screen values of status, and the data store value. Increment the 0 to 1, 2, etc for more translations. -# so the user could enter: status=active, and that could translate to status_col=A. The 'user' is what the user types in, -# the 'datastore' is what is in the datastore. The user part is not case-sensitive. Note, this could be a many to one -#subjectApi.source.example.param.statusTranslateUser0.value = active -#subjectApi.source.example.param.statusTranslateDatastore0.value = A - -# subject identifier to store in grouper's member table. this is used to increase speed of loader and perhaps for provisioning -# you can have up to max 1 subject identifier -#subjectApi.source.example.param.subjectIdentifierAttribute0.value = uid - -#searchSubject: find a subject by ID. ID is generally an opaque and permanent identifier, e.g. 12345678. -# Each subject has one and only on ID. Returns one result when searching for one ID. -subjectApi.source.ldap.search.searchSubject.param.filter.value = (&(uid=%TERM%)(objectclass=person)) -subjectApi.source.ldap.search.searchSubject.param.scope.value = SUBTREE_SCOPE -subjectApi.source.ldap.search.searchSubject.param.base.value = ou=people,dc=internet2,dc=edu - -#searchSubjectByIdentifier: find a subject by identifier. Identifier is anything that uniquely -# identifies the user, e.g. jsmith or jsmith@institution.edu. -# Subjects can have multiple identifiers. Note: it is nice to have if identifiers are unique -# even across sources. Returns one result when searching for one identifier. -subjectApi.source.ldap.search.searchSubjectByIdentifier.param.filter.value = (&(|(uid=%TERM%)(employeeNumber=%TERM%))(objectclass=person)) -subjectApi.source.ldap.search.searchSubjectByIdentifier.param.scope.value = SUBTREE_SCOPE -subjectApi.source.ldap.search.searchSubjectByIdentifier.param.base.value = ou=people,dc=internet2,dc=edu - -# search: find subjects by free form search. Returns multiple results. - -subjectApi.source.ldap.search.search.param.filter.value = (&(|(|(uid=%TERM%)(cn=*%TERM%*))(uid=%TERM%*))(objectclass=person)) -subjectApi.source.ldap.search.search.param.scope.value = SUBTREE_SCOPE -subjectApi.source.ldap.search.search.param.base.value = ou=people,dc=internet2,dc=edu - -subjectApi.source.ldap.attributes = givenName, sn, uid, mail, employeeNumber -subjectApi.source.ldap.internalAttributes = searchAttribute0 diff --git a/shibboleth-integration/mp-gr/grouper-data/container_files/seed-data/demo.backup b/shibboleth-integration/mp-gr/grouper-data/container_files/seed-data/demo.backup deleted file mode 100644 index 276bd22..0000000 --- a/shibboleth-integration/mp-gr/grouper-data/container_files/seed-data/demo.backup +++ /dev/null @@ -1,274 +0,0 @@ -gs = GrouperSession.startRootSession(); -#addRootStem("basis", "basis"); -addRootStem("ref", "ref"); -#addRootStem("bundle", "bundle"); -#addRootStem("app", "app"); -#addRootStem("org", "org"); -#testStem = addRootStem("test", "test"); - -addStem("ref", "course", "course") - -#addGroup("etc","coursesLoader", "coursesLoader"); -#groupAddType("etc:coursesLoader", "grouperLoader"); -#setGroupAttr("etc:coursesLoader", "grouperLoaderDbName", "grouper"); -#setGroupAttr("etc:coursesLoader", "grouperLoaderType", "SQL_GROUP_LIST"); -#setGroupAttr("etc:coursesLoader", "grouperLoaderScheduleType", "CRON"); -#setGroupAttr("etc:coursesLoader", "grouperLoaderQuartzCron", "0 * * * * ?"); -#setGroupAttr("etc:coursesLoader", "grouperLoaderQuartzCron", "0 * * * * ?"); -#setGroupAttr("etc:coursesLoader", "grouperLoaderQuery", "select distinct id as SUBJECT_IDENTIFIER, 'ldap' as SUBJECT_SOURCE_ID, CONCAT('ref:course:', courseID) as GROUP_NAME from SIS_Courses"); - -addStem("ref", "affiliation", "affiliation") -#folder = StemFinder.findByName(gs, "ref:affiliation"); -#AttributeAssign attributeAssign = folder.getAttributeDelegate().addAttribute(RuleUtils.ruleAttributeDefName()).getAttributeAssign(); -#AttributeValueDelegate attributeValueDelegate = attributeAssign.getAttributeValueDelegate(); -#attributeValueDelegate.assignValue(RuleUtils.ruleActAsSubjectSourceIdName(), "g:isa"); -#attributeValueDelegate.assignValue(RuleUtils.ruleActAsSubjectIdName(), "GrouperSystem"); -#attributeValueDelegate.assignValue(RuleUtils.ruleCheckTypeName(), RuleCheckType.groupCreate.name()); -#attributeValueDelegate.assignValue(RuleUtils.ruleCheckStemScopeName(), Stem.Scope.SUB.name()); -#attributeValueDelegate.assignValue(RuleUtils.ruleThenElName(),'${ruleElUtils.assignGroupPrivilege(groupId, "g:gsa", groupId, null, "read")}'); - -group = new GroupSave(gs).assignName("etc:affiliationLoader").assignCreateParentStemsIfNotExist(true).save(); -group.getAttributeDelegate().assignAttribute(LoaderLdapUtils.grouperLoaderLdapAttributeDefName()).getAttributeAssign(); -attributeAssign = group.getAttributeDelegate().retrieveAssignment(null, LoaderLdapUtils.grouperLoaderLdapAttributeDefName(), false, true); -attributeAssign.getAttributeValueDelegate().assignValue(LoaderLdapUtils.grouperLoaderLdapQuartzCronName(), "0 * * * * ?"); -attributeAssign.getAttributeValueDelegate().assignValue(LoaderLdapUtils.grouperLoaderLdapTypeName(), "LDAP_GROUPS_FROM_ATTRIBUTES"); -attributeAssign.getAttributeValueDelegate().assignValue(LoaderLdapUtils.grouperLoaderLdapServerIdName(), "demo"); -attributeAssign.getAttributeValueDelegate().assignValue(LoaderLdapUtils.grouperLoaderLdapFilterName(), "(eduPersonAffiliation=*)"); -attributeAssign.getAttributeValueDelegate().assignValue(LoaderLdapUtils.grouperLoaderLdapSearchDnName(), "ou=People,dc=internet2,dc=edu"); -attributeAssign.getAttributeValueDelegate().assignValue(LoaderLdapUtils.grouperLoaderLdapSubjectAttributeName(), "uid"); -attributeAssign.getAttributeValueDelegate().assignValue(LoaderLdapUtils.grouperLoaderLdapSourceIdName(), "ldap"); -attributeAssign.getAttributeValueDelegate().assignValue(LoaderLdapUtils.grouperLoaderLdapGroupAttributeName(), "eduPersonAffiliation"); -attributeAssign.getAttributeValueDelegate().assignValue(LoaderLdapUtils.grouperLoaderLdapSubjectIdTypeName(), "subjectId"); -#attributeAssign.getAttributeValueDelegate().assignValue(LoaderLdapUtils.grouperLoaderLdapSubjectExpressionName(), '${subjectAttributes["subjectId"]}'); -attributeAssign.getAttributeValueDelegate().assignValue(LoaderLdapUtils.grouperLoaderLdapGroupNameExpressionName(), 'ref:affiliation:${groupAttribute}_systemOfRecord'); -attributeAssign.getAttributeValueDelegate().assignValue(LoaderLdapUtils.grouperLoaderLdapGroupDisplayNameExpressionName(), '${groupAttribute} system of record'); -attributeAssign.getAttributeValueDelegate().assignValue(LoaderLdapUtils.grouperLoaderLdapGroupTypesName(), "addIncludeExclude"); - -group = new GroupSave(gs).assignName("etc:deptLoader").assignCreateParentStemsIfNotExist(true).save(); -group.getAttributeDelegate().assignAttribute(LoaderLdapUtils.grouperLoaderLdapAttributeDefName()).getAttributeAssign(); -attributeAssign = group.getAttributeDelegate().retrieveAssignment(null, LoaderLdapUtils.grouperLoaderLdapAttributeDefName(), false, true); -attributeAssign.getAttributeValueDelegate().assignValue(LoaderLdapUtils.grouperLoaderLdapQuartzCronName(), "0 * * * * ?"); -attributeAssign.getAttributeValueDelegate().assignValue(LoaderLdapUtils.grouperLoaderLdapTypeName(), "LDAP_GROUPS_FROM_ATTRIBUTES"); -attributeAssign.getAttributeValueDelegate().assignValue(LoaderLdapUtils.grouperLoaderLdapServerIdName(), "demo"); -attributeAssign.getAttributeValueDelegate().assignValue(LoaderLdapUtils.grouperLoaderLdapFilterName(), "(businessCategory=*)"); -attributeAssign.getAttributeValueDelegate().assignValue(LoaderLdapUtils.grouperLoaderLdapSearchDnName(), "ou=People,dc=internet2,dc=edu"); -attributeAssign.getAttributeValueDelegate().assignValue(LoaderLdapUtils.grouperLoaderLdapSubjectAttributeName(), "uid"); -attributeAssign.getAttributeValueDelegate().assignValue(LoaderLdapUtils.grouperLoaderLdapSourceIdName(), "ldap"); -attributeAssign.getAttributeValueDelegate().assignValue(LoaderLdapUtils.grouperLoaderLdapGroupAttributeName(), "businessCategory"); -attributeAssign.getAttributeValueDelegate().assignValue(LoaderLdapUtils.grouperLoaderLdapSubjectIdTypeName(), "subjectId"); -#attributeAssign.getAttributeValueDelegate().assignValue(LoaderLdapUtils.grouperLoaderLdapSubjectExpressionName(), '${subjectAttributes["subjectId"]}'); -attributeAssign.getAttributeValueDelegate().assignValue(LoaderLdapUtils.grouperLoaderLdapGroupNameExpressionName(), 'ref:dept:${groupAttribute}'); -attributeAssign.getAttributeValueDelegate().assignValue(LoaderLdapUtils.grouperLoaderLdapGroupDisplayNameExpressionName(), '${groupAttribute}'); - -group = new GroupSave(gs).assignName("etc:coursesLoader").assignCreateParentStemsIfNotExist(true).save(); -group.getAttributeDelegate().assignAttribute(LoaderLdapUtils.grouperLoaderLdapAttributeDefName()).getAttributeAssign(); -attributeAssign = group.getAttributeDelegate().retrieveAssignment(null, LoaderLdapUtils.grouperLoaderLdapAttributeDefName(), false, true); -attributeAssign.getAttributeValueDelegate().assignValue(LoaderLdapUtils.grouperLoaderLdapQuartzCronName(), "0 * * * * ?"); -attributeAssign.getAttributeValueDelegate().assignValue(LoaderLdapUtils.grouperLoaderLdapTypeName(), "LDAP_GROUP_LIST"); -attributeAssign.getAttributeValueDelegate().assignValue(LoaderLdapUtils.grouperLoaderLdapFilterName(), "(cn=*)"); -attributeAssign.getAttributeValueDelegate().assignValue(LoaderLdapUtils.grouperLoaderLdapSearchDnName(), "ou=Courses,ou=Groups,dc=internet2,dc=edu"); -attributeAssign.getAttributeValueDelegate().assignValue(LoaderLdapUtils.grouperLoaderLdapServerIdName(), "demo"); -attributeAssign.getAttributeValueDelegate().assignValue(LoaderLdapUtils.grouperLoaderLdapSourceIdName(), "ldap"); -attributeAssign.getAttributeValueDelegate().assignValue(LoaderLdapUtils.grouperLoaderLdapSubjectExpressionName(), '${loaderLdapElUtils.convertDnToSpecificValue(subjectId)}'); -attributeAssign.getAttributeValueDelegate().assignValue(LoaderLdapUtils.grouperLoaderLdapSubjectAttributeName(), "uniqueMember"); -attributeAssign.getAttributeValueDelegate().assignValue(LoaderLdapUtils.grouperLoaderLdapSubjectIdTypeName(), "subjectId"); -attributeAssign.getAttributeValueDelegate().assignValue(LoaderLdapUtils.grouperLoaderLdapExtraAttributesName(), "cn"); -attributeAssign.getAttributeValueDelegate().assignValue(LoaderLdapUtils.grouperLoaderLdapGroupNameExpressionName(), 'ref:course:${groupAttributes["cn"]}'); - -group = GroupFinder.findByName(gs, "etc:sysadmingroup", true); -group.getAttributeDelegate().assignAttribute(LoaderLdapUtils.grouperLoaderLdapAttributeDefName()).getAttributeAssign(); -attributeAssign = group.getAttributeDelegate().retrieveAssignment(null, LoaderLdapUtils.grouperLoaderLdapAttributeDefName(), false, true); -attributeAssign.getAttributeValueDelegate().assignValue(LoaderLdapUtils.grouperLoaderLdapQuartzCronName(), "0 * * * * ?"); -attributeAssign.getAttributeValueDelegate().assignValue(LoaderLdapUtils.grouperLoaderLdapTypeName(), "LDAP_SIMPLE"); -attributeAssign.getAttributeValueDelegate().assignValue(LoaderLdapUtils.grouperLoaderLdapFilterName(), "(cn=sysadmingroup)"); -attributeAssign.getAttributeValueDelegate().assignValue(LoaderLdapUtils.grouperLoaderLdapSearchDnName(), "ou=Groups,dc=internet2,dc=edu"); -attributeAssign.getAttributeValueDelegate().assignValue(LoaderLdapUtils.grouperLoaderLdapServerIdName(), "demo"); -attributeAssign.getAttributeValueDelegate().assignValue(LoaderLdapUtils.grouperLoaderLdapSourceIdName(), "ldap"); -attributeAssign.getAttributeValueDelegate().assignValue(LoaderLdapUtils.grouperLoaderLdapSubjectExpressionName(), '${loaderLdapElUtils.convertDnToSpecificValue(subjectId)}'); -attributeAssign.getAttributeValueDelegate().assignValue(LoaderLdapUtils.grouperLoaderLdapSubjectAttributeName(), "uniqueMember"); -attributeAssign.getAttributeValueDelegate().assignValue(LoaderLdapUtils.grouperLoaderLdapSubjectIdTypeName(), "subjectId"); - - -#addGroup("bundle", "default_services", "default_services"); -#addGroup("bundle", "student_services", "student_services"); -#addGroup("bundle", "employee_services", "employee_services"); - -#addStem("ref", "student", "student"); -#addStem("ref:student", "class", "class"); -#addGroup("ref:student:class", "freshmen", "freshmen"); -#addGroup("ref:student:class", "sophomore", "sophomore"); -#addGroup("ref:student:class", "junior", "junior"); -#addGroup("ref:student:class", "senior", "senior"); -#addGroup("ref:student:class", "graduate", "graduate"); -#addGroup("ref:student:class", "doctorate", "doctorate"); - -#addGroup("ref:student", "finaid", "finaid"); -#addStem("ref:student", "athlete", "athlete"); -#addGroup("ref:student:athlete", "baseball", "baseball"); -#addGroup("ref:student:athlete", "basketball", "basketball"); -#addGroup("ref:student:athlete", "football", "football"); -#addGroup("ref:student:athlete", "soccer", "soccer"); -#addGroup("ref:student:athlete", "volleyball", "volleyball"); - -#addStem("ref", "employee", "employee"); -#addGroup("ref:employee", "fulltime", "fulltime"); -#addGroup("ref:employee", "parttime", "parttime"); -#addGroup("ref:employee", "tenured", "tenured"); -#addGroup("ref:employee", "emeritus", "emeritus"); - -#addStem("ref", "alumni", "alumni"); - -#addStem("ref", "role", "role"); -#addGroup("ref:role", "president", "president"); -#addGroup("ref:role", "provost", "provost"); -#addGroup("ref:role", "deptSecretary", "deptSecretary"); -#addGroup("ref:role", "dean", "dean"); -#addGroup("ref:role", "director", "director"); -#addGroup("ref:role", "custodian", "custodian"); -#addGroup("ref:role", "deptChair", "deptChair"); -#addGroup("ref:role", "faculty", "faculty"); -#addGroup("ref:role", "programmer", "programmer"); -#addGroup("ref:role", "programSpecialist", "programSpecialist"); -#addGroup("ref:role", "recruiter", "recruiter"); -#addGroup("ref:role", "coach", "coach"); -#addGroup("ref:role", "vicePresident", "vicePresident"); - -#addMember("bundle:student_services", "ref:student:class:freshmen"); -#addMember("bundle:student_services", "ref:student:class:sophomore"); -#addMember("bundle:student_services", "ref:student:class:junior"); -#addMember("bundle:student_services", "ref:student:class:senior"); -#addMember("bundle:student_services", "ref:student:class:graduate"); -#addMember("bundle:student_services", "ref:student:class:doctorate"); - -#addStem("org", "admissions", "admissions"); -#addStem("org:admissions", "etc", "etc"); -#addGroup("org:admissions:etc", "admissions_admin", "admissions_admin"); -#grantPriv("org:admissions", "org:admissions:etc:admissions_admin", NamingPrivilege.STEM); -#addStem("org:admissions", "ref", "ref"); -#addStem("org:admissions", "app", "app"); - -#addStem("org", "bursar", "bursar"); -#addStem("org:bursar", "etc", "etc"); -#addGroup("org:bursar:etc", "bursar_admin", "bursar_admin"); -#grantPriv("org:bursar", "org:bursar:etc:bursar_admin", NamingPrivilege.STEM); -#addStem("org:bursar", "ref", "ref"); -#addStem("org:bursar", "app", "app"); - -#addStem("org", "business", "business"); -#addStem("org:business", "etc", "etc"); -#addGroup("org:business:etc", "business_admin", "business_admin"); -#grantPriv("org:business", "org:business:etc:business_admin", NamingPrivilege.STEM); -#addStem("org:business", "ref", "ref"); -#addStem("org:business", "app", "app"); - -#addStem("org", "computerscience", "computerscience"); -#addStem("org:computerscience", "etc", "etc"); -#addGroup("org:computerscience:etc", "computerscience_admin", "computerscience_admin"); -#grantPriv("org:computerscience", "org:computerscience:etc:computerscience_admin", NamingPrivilege.STEM); -#addStem("org:computerscience", "ref", "ref"); -#addStem("org:computerscience", "app", "app"); - -#addStem("org", "education", "education"); -#addStem("org:education", "etc", "etc"); -#addGroup("org:education:etc", "education_admin", "education_admin"); -#grantPriv("org:education", "org:education:etc:education_admin", NamingPrivilege.STEM); -#addStem("org:education", "ref", "ref"); -#addStem("org:education", "app", "app"); - -#addStem("org", "psychology", "psychology"); -#addStem("org:psychology", "etc", "etc"); -#addGroup("org:psychology:etc", "psychology_admin", "psychology_admin"); -#grantPriv("org:psychology", "org:psychology:etc:psychology_admin", NamingPrivilege.STEM); -#addStem("org:psychology", "ref", "ref"); -#addStem("org:psychology", "app", "app"); - -#addStem("org", "physicaleducation", "physicaleducation"); -#addStem("org:physicaleducation", "etc", "etc"); -#addGroup("org:physicaleducation:etc", "physicaleducation_admin", "physicaleducation_admin"); -#grantPriv("org:physicaleducation", "org:physicaleducation:etc:physicaleducation_admin", NamingPrivilege.STEM); -#addStem("org:physicaleducation", "ref", "ref"); -#2addStem("org:physicaleducation", "app", "app"); - -#addStem("org", "humanresources", "humanresources"); -#addStem("org:humanresources", "etc", "etc"); -#addGroup("org:humanresources:etc", "humanresources_admin", "humanresources_admin"); -#grantPriv("org:humanresources", "org:humanresources:etc:humanresources_admin", NamingPrivilege.STEM); -#addStem("org:humanresources", "ref", "ref"); -#addStem("org:humanresources", "app", "app"); - - - -#banner=addStem("app", "banner", "banner"); -#addStem("app:banner", "etc", "etc"); -#addGroup("app:banner:etc", "banner_admin", "banner_admin"); -#grantPriv("app:banner", "app:banner:etc:banner_admin", NamingPrivilege.STEM); -#addGroup("app:banner", "banner_user_allow", "banner_user_allow"); -#addGroup("app:banner", "banner_user_deny", "banner_user_deny"); -#addGroup("app:banner", "banner_user", "banner_user"); -#addComposite("app:banner:banner_user", CompositeType.UNION, "app:banner:banner_user_allow", "app:banner:banner_user_deny") - -#portal = addStem("app", "portal", "portal"); -#addStem("app:portal", "etc", "etc"); -#addGroup("app:portal:etc", "portal_admin", "portal_admin"); -#grantPriv("app:portal", "app:portal:etc:portal_admin", NamingPrivilege.STEM); -#addGroup("app:portal", "portal_user_allow", "portal_user_allow"); -#addGroup("app:portal", "portal_user_deny", "portal_user_deny"); -#addGroup("app:portal", "portal_user", "portal_user"); -#addComposite("app:portal:portal_user", CompositeType.UNION, "app:portal:portal_user_allow", "app:portal:portal_user_deny") - -#addStem("app", "vpn", "vpn"); -#addStem("app:vpn", "etc", "etc"); -#addGroup("app:vpn:etc", "vpn_admin", "vpn_admin"); -#grantPriv("app:vpn", "app:vpn:etc:vpn_admin", NamingPrivilege.STEM); -#addGroup("app:vpn", "vpn_user_allow", "vpn_user_allow"); -#addGroup("app:vpn", "vpn_user_deny", "vpn_user_deny"); -#addGroup("app:vpn", "vpn_user", "vpn_user"); -#addComposite("app:vpn:vpn_user", CompositeType.UNION, "app:vpn:vpn_user_allow", "app:vpn:vpn_user_deny") - - -## Setup some user favorites -#subject = SubjectFinder.findById("banderson"); -#group = GroupFinder.findByName(gs, "etc:sysadmingroup", true); -#GrouperUserDataApi.favoriteGroupAdd("etc:grouperUi:grouperUiUserData", subject, group); -# -#stem = StemFinder.findByName(gs, "org:computerscience", true); -#GrouperUserDataApi.favoriteStemAdd("etc:grouperUi:grouperUiUserData", subject, stem); - - -##Set up service definitions -#AttributeDef appServiceDef = new AttributeDefSave(gs).assignCreateParentStemsIfNotExist(true).assignAttributeDefType(AttributeDefType.service).assignName("etc:apps:appsServiceDefinition").assignToStem(true).save(); -# -#AttributeDefName appService = new AttributeDefNameSave(gs, appServiceDef).assignCreateParentStemsIfNotExist(true).assignName("etc:apps:appsService").assignDisplayExtension("Central IT production Apps").save(); -# -#banner.getAttributeDelegate().assignAttribute(appService); -#portal.getAttributeDelegate().assignAttribute(appService); -# -#addMember("app:banner:banner_user_allow", "banderson"); - - -## Auto create the PSPNG attributes -#edu.internet2.middleware.grouper.pspng.FullSyncProvisionerFactory.getFullSyncer("pspng_groupOfUniqueNames"); -# -# -#AttributeDef pspngAttributeDef = AttributeDefFinder.findByName("etc:pspng:provision_to_def", true); -#AttributeDefName pspngAttribute = AttributeDefNameFinder.findByName("etc:pspng:provision_to", true); -#AttributeAssignSave attributeAssignSave = new AttributeAssignSave(gs).assignPrintChangesToSystemOut(true); -# -##Assign the PSPNG attribute for the standard groups -#attributeAssignSave.assignAttributeDefName(pspngAttribute); -#attributeAssignSave.assignOwnerStem(testStem); -#attributeAssignSave.addValue("pspng_groupOfUniqueNames"); -#attributeAssignSave.save(); -# -##Assign the PSPNG attribute for the entitlements -#AttributeAssignSave attributeAssignSave2 = new AttributeAssignSave(gs).assignPrintChangesToSystemOut(true); -#attributeAssignSave2.assignAttributeDefName(pspngAttribute); -#attributeAssignSave2.assignOwnerGroup(GroupFinder.findByName(gs, "app:vpn:vpn_user", true)); -#attributeAssignSave2.addValue("pspng_entitlements"); -#attributeAssignSave2.save(); -# -#attributeAssignSave2 = new AttributeAssignSave(gs).assignPrintChangesToSystemOut(true); -#attributeAssignSave2.assignAttributeDefName(pspngAttribute); -#attributeAssignSave2.assignOwnerGroup(GroupFinder.findByName(gs, "app:banner:banner_user", true)); -#attributeAssignSave2.addValue("pspng_entitlements"); -#attributeAssignSave2.save(); diff --git a/shibboleth-integration/mp-gr/grouper-data/container_files/seed-data/demo.gsh b/shibboleth-integration/mp-gr/grouper-data/container_files/seed-data/demo.gsh deleted file mode 100644 index e6b4db3..0000000 --- a/shibboleth-integration/mp-gr/grouper-data/container_files/seed-data/demo.gsh +++ /dev/null @@ -1,65 +0,0 @@ -System.out.println("************** demo.gsh starting..."); - -gs = GrouperSession.startRootSession(); -addRootStem("ref", "ref"); -addStem("ref", "course", "course") -addStem("ref", "affiliation", "affiliation") - -group = new GroupSave(gs).assignName("etc:affiliationLoader").assignCreateParentStemsIfNotExist(true).save(); -group.getAttributeDelegate().assignAttribute(LoaderLdapUtils.grouperLoaderLdapAttributeDefName()).getAttributeAssign(); -attributeAssign = group.getAttributeDelegate().retrieveAssignment(null, LoaderLdapUtils.grouperLoaderLdapAttributeDefName(), false, true); -attributeAssign.getAttributeValueDelegate().assignValue(LoaderLdapUtils.grouperLoaderLdapQuartzCronName(), "0 * * * * ?"); -attributeAssign.getAttributeValueDelegate().assignValue(LoaderLdapUtils.grouperLoaderLdapTypeName(), "LDAP_GROUPS_FROM_ATTRIBUTES"); -attributeAssign.getAttributeValueDelegate().assignValue(LoaderLdapUtils.grouperLoaderLdapServerIdName(), "demo"); -attributeAssign.getAttributeValueDelegate().assignValue(LoaderLdapUtils.grouperLoaderLdapFilterName(), "(eduPersonAffiliation=*)"); -attributeAssign.getAttributeValueDelegate().assignValue(LoaderLdapUtils.grouperLoaderLdapSearchDnName(), "ou=People,dc=internet2,dc=edu"); -attributeAssign.getAttributeValueDelegate().assignValue(LoaderLdapUtils.grouperLoaderLdapSubjectAttributeName(), "uid"); -attributeAssign.getAttributeValueDelegate().assignValue(LoaderLdapUtils.grouperLoaderLdapSourceIdName(), "ldap"); -attributeAssign.getAttributeValueDelegate().assignValue(LoaderLdapUtils.grouperLoaderLdapGroupAttributeName(), "eduPersonAffiliation"); -attributeAssign.getAttributeValueDelegate().assignValue(LoaderLdapUtils.grouperLoaderLdapSubjectIdTypeName(), "subjectId"); -attributeAssign.getAttributeValueDelegate().assignValue(LoaderLdapUtils.grouperLoaderLdapGroupNameExpressionName(), 'ref:affiliation:${groupAttribute}_systemOfRecord'); -attributeAssign.getAttributeValueDelegate().assignValue(LoaderLdapUtils.grouperLoaderLdapGroupDisplayNameExpressionName(), '${groupAttribute} system of record'); -attributeAssign.getAttributeValueDelegate().assignValue(LoaderLdapUtils.grouperLoaderLdapGroupTypesName(), "addIncludeExclude"); - -group = new GroupSave(gs).assignName("etc:deptLoader").assignCreateParentStemsIfNotExist(true).save(); -group.getAttributeDelegate().assignAttribute(LoaderLdapUtils.grouperLoaderLdapAttributeDefName()).getAttributeAssign(); -attributeAssign = group.getAttributeDelegate().retrieveAssignment(null, LoaderLdapUtils.grouperLoaderLdapAttributeDefName(), false, true); -attributeAssign.getAttributeValueDelegate().assignValue(LoaderLdapUtils.grouperLoaderLdapQuartzCronName(), "0 * * * * ?"); -attributeAssign.getAttributeValueDelegate().assignValue(LoaderLdapUtils.grouperLoaderLdapTypeName(), "LDAP_GROUPS_FROM_ATTRIBUTES"); -attributeAssign.getAttributeValueDelegate().assignValue(LoaderLdapUtils.grouperLoaderLdapServerIdName(), "demo"); -attributeAssign.getAttributeValueDelegate().assignValue(LoaderLdapUtils.grouperLoaderLdapFilterName(), "(businessCategory=*)"); -attributeAssign.getAttributeValueDelegate().assignValue(LoaderLdapUtils.grouperLoaderLdapSearchDnName(), "ou=People,dc=internet2,dc=edu"); -attributeAssign.getAttributeValueDelegate().assignValue(LoaderLdapUtils.grouperLoaderLdapSubjectAttributeName(), "uid"); -attributeAssign.getAttributeValueDelegate().assignValue(LoaderLdapUtils.grouperLoaderLdapSourceIdName(), "ldap"); -attributeAssign.getAttributeValueDelegate().assignValue(LoaderLdapUtils.grouperLoaderLdapGroupAttributeName(), "businessCategory"); -attributeAssign.getAttributeValueDelegate().assignValue(LoaderLdapUtils.grouperLoaderLdapSubjectIdTypeName(), "subjectId"); -attributeAssign.getAttributeValueDelegate().assignValue(LoaderLdapUtils.grouperLoaderLdapGroupNameExpressionName(), 'ref:dept:${groupAttribute}'); -attributeAssign.getAttributeValueDelegate().assignValue(LoaderLdapUtils.grouperLoaderLdapGroupDisplayNameExpressionName(), '${groupAttribute}'); - -group = new GroupSave(gs).assignName("etc:coursesLoader").assignCreateParentStemsIfNotExist(true).save(); -group.getAttributeDelegate().assignAttribute(LoaderLdapUtils.grouperLoaderLdapAttributeDefName()).getAttributeAssign(); -attributeAssign = group.getAttributeDelegate().retrieveAssignment(null, LoaderLdapUtils.grouperLoaderLdapAttributeDefName(), false, true); -attributeAssign.getAttributeValueDelegate().assignValue(LoaderLdapUtils.grouperLoaderLdapQuartzCronName(), "0 * * * * ?"); -attributeAssign.getAttributeValueDelegate().assignValue(LoaderLdapUtils.grouperLoaderLdapTypeName(), "LDAP_GROUP_LIST"); -attributeAssign.getAttributeValueDelegate().assignValue(LoaderLdapUtils.grouperLoaderLdapFilterName(), "(cn=*)"); -attributeAssign.getAttributeValueDelegate().assignValue(LoaderLdapUtils.grouperLoaderLdapSearchDnName(), "ou=Courses,ou=Groups,dc=internet2,dc=edu"); -attributeAssign.getAttributeValueDelegate().assignValue(LoaderLdapUtils.grouperLoaderLdapServerIdName(), "demo"); -attributeAssign.getAttributeValueDelegate().assignValue(LoaderLdapUtils.grouperLoaderLdapSourceIdName(), "ldap"); -attributeAssign.getAttributeValueDelegate().assignValue(LoaderLdapUtils.grouperLoaderLdapSubjectExpressionName(), '${loaderLdapElUtils.convertDnToSpecificValue(subjectId)}'); -attributeAssign.getAttributeValueDelegate().assignValue(LoaderLdapUtils.grouperLoaderLdapSubjectAttributeName(), "uniqueMember"); -attributeAssign.getAttributeValueDelegate().assignValue(LoaderLdapUtils.grouperLoaderLdapSubjectIdTypeName(), "subjectId"); -attributeAssign.getAttributeValueDelegate().assignValue(LoaderLdapUtils.grouperLoaderLdapExtraAttributesName(), "cn"); -attributeAssign.getAttributeValueDelegate().assignValue(LoaderLdapUtils.grouperLoaderLdapGroupNameExpressionName(), 'ref:course:${groupAttributes["cn"]}'); - -group = GroupFinder.findByName(gs, "etc:sysadmingroup", true); -group.getAttributeDelegate().assignAttribute(LoaderLdapUtils.grouperLoaderLdapAttributeDefName()).getAttributeAssign(); -attributeAssign = group.getAttributeDelegate().retrieveAssignment(null, LoaderLdapUtils.grouperLoaderLdapAttributeDefName(), false, true); -attributeAssign.getAttributeValueDelegate().assignValue(LoaderLdapUtils.grouperLoaderLdapQuartzCronName(), "0 * * * * ?"); -attributeAssign.getAttributeValueDelegate().assignValue(LoaderLdapUtils.grouperLoaderLdapTypeName(), "LDAP_SIMPLE"); -attributeAssign.getAttributeValueDelegate().assignValue(LoaderLdapUtils.grouperLoaderLdapFilterName(), "(cn=sysadmingroup)"); -attributeAssign.getAttributeValueDelegate().assignValue(LoaderLdapUtils.grouperLoaderLdapSearchDnName(), "ou=Groups,dc=internet2,dc=edu"); -attributeAssign.getAttributeValueDelegate().assignValue(LoaderLdapUtils.grouperLoaderLdapServerIdName(), "demo"); -attributeAssign.getAttributeValueDelegate().assignValue(LoaderLdapUtils.grouperLoaderLdapSourceIdName(), "ldap"); -attributeAssign.getAttributeValueDelegate().assignValue(LoaderLdapUtils.grouperLoaderLdapSubjectExpressionName(), '${loaderLdapElUtils.convertDnToSpecificValue(subjectId)}'); -attributeAssign.getAttributeValueDelegate().assignValue(LoaderLdapUtils.grouperLoaderLdapSubjectAttributeName(), "uniqueMember"); -attributeAssign.getAttributeValueDelegate().assignValue(LoaderLdapUtils.grouperLoaderLdapSubjectIdTypeName(), "subjectId"); diff --git a/shibboleth-integration/mp-gr/grouper-ui/Dockerfile b/shibboleth-integration/mp-gr/grouper-ui/Dockerfile deleted file mode 100644 index 8fec2ae..0000000 --- a/shibboleth-integration/mp-gr/grouper-ui/Dockerfile +++ /dev/null @@ -1,7 +0,0 @@ -FROM tier/grouper:latest - -LABEL author="tier-packaging@internet2.edu " - -#COPY in custom css, images, etc - -CMD ["ui"] diff --git a/shibboleth-integration/mp-gr/grouper-ui/container_files/shibboleth/shibd.logger b/shibboleth-integration/mp-gr/grouper-ui/container_files/shibboleth/shibd.logger deleted file mode 100644 index 2589b43..0000000 --- a/shibboleth-integration/mp-gr/grouper-ui/container_files/shibboleth/shibd.logger +++ /dev/null @@ -1,69 +0,0 @@ -# set overall behavior -log4j.rootCategory=DEBUG, shibd_log, warn_log - -# fairly verbose for DEBUG, so generally leave at DEBUG -log4j.category.XMLTooling.XMLObject=DEBUG -log4j.category.XMLTooling.KeyInfoResolver=DEBUG -log4j.category.Shibboleth.IPRange=DEBUG -log4j.category.Shibboleth.PropertySet=DEBUG - -# raise for low-level tracing of SOAP client HTTP/SSL behavior -log4j.category.XMLTooling.libcurl=DEBUG - -# useful categories to tune independently: -# -# tracing of SAML messages and security policies -#log4j.category.OpenSAML.MessageDecoder=DEBUG -#log4j.category.OpenSAML.MessageEncoder=DEBUG -#log4j.category.OpenSAML.SecurityPolicyRule=DEBUG -#log4j.category.XMLTooling.SOAPClient=DEBUG -# interprocess message remoting -#log4j.category.Shibboleth.Listener=DEBUG -# mapping of requests to applicationId -#log4j.category.Shibboleth.RequestMapper=DEBUG -# high level session cache operations -#log4j.category.Shibboleth.SessionCache=DEBUG -# persistent storage and caching -#log4j.category.XMLTooling.StorageService=DEBUG - -# logs XML being signed or verified if set to DEBUG -log4j.category.XMLTooling.Signature.Debugger=DEBUG, sig_log -log4j.additivity.XMLTooling.Signature.Debugger=false - -# the tran log blocks the "default" appender(s) at runtime -# Level should be left at DEBUG for this category -log4j.category.Shibboleth-TRANSACTION=DEBUG, tran_log -log4j.additivity.Shibboleth-TRANSACTION=false -# uncomment to suppress particular event types -#log4j.category.Shibboleth-TRANSACTION.AuthnRequest=WARN -#log4j.category.Shibboleth-TRANSACTION.Login=WARN -#log4j.category.Shibboleth-TRANSACTION.Logout=WARN - -# define the appenders - -log4j.appender.shibd_log=org.apache.log4j.RollingFileAppender -log4j.appender.shibd_log.fileName=/var/log/shibboleth/shibd.log -log4j.appender.shibd_log.maxFileSize=1000000 -log4j.appender.shibd_log.maxBackupIndex=10 -log4j.appender.shibd_log.layout=org.apache.log4j.PatternLayout -log4j.appender.shibd_log.layout.ConversionPattern=%d{%Y-%m-%d %H:%M:%S} %p %c %x: %m%n - -log4j.appender.warn_log=org.apache.log4j.RollingFileAppender -log4j.appender.warn_log.fileName=/var/log/shibboleth/shibd_warn.log -log4j.appender.warn_log.maxFileSize=1000000 -log4j.appender.warn_log.maxBackupIndex=10 -log4j.appender.warn_log.layout=org.apache.log4j.PatternLayout -log4j.appender.warn_log.layout.ConversionPattern=%d{%Y-%m-%d %H:%M:%S} %p %c %x: %m%n -log4j.appender.warn_log.threshold=WARN - -log4j.appender.tran_log=org.apache.log4j.RollingFileAppender -log4j.appender.tran_log.fileName=/var/log/shibboleth/transaction.log -log4j.appender.tran_log.maxFileSize=1000000 -log4j.appender.tran_log.maxBackupIndex=20 -log4j.appender.tran_log.layout=org.apache.log4j.PatternLayout -log4j.appender.tran_log.layout.ConversionPattern=%d{%Y-%m-%d %H:%M:%S} %p %c %x: %m%n - -log4j.appender.sig_log=org.apache.log4j.FileAppender -log4j.appender.sig_log.fileName=/var/log/shibboleth/signature.log -log4j.appender.sig_log.layout=org.apache.log4j.PatternLayout -log4j.appender.sig_log.layout.ConversionPattern=%m diff --git a/shibboleth-integration/mp-gr/grouper-ws/Dockerfile b/shibboleth-integration/mp-gr/grouper-ws/Dockerfile deleted file mode 100644 index f5c06b9..0000000 --- a/shibboleth-integration/mp-gr/grouper-ws/Dockerfile +++ /dev/null @@ -1,9 +0,0 @@ -FROM tier/grouper:latest - -LABEL author="tier-packaging@internet2.edu " - -COPY container_files/web.xml /opt/grouper/grouper.ws/WEB-INF/ -COPY container_files/tomcat-users.xml /opt/tomcat/conf/ -COPY container_files/server.xml /opt/tomcat/conf/ - -CMD ["ws"] diff --git a/shibboleth-integration/mp-gr/grouper-ws/container_files/server.xml b/shibboleth-integration/mp-gr/grouper-ws/container_files/server.xml deleted file mode 100644 index 20edd02..0000000 --- a/shibboleth-integration/mp-gr/grouper-ws/container_files/server.xml +++ /dev/null @@ -1,180 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/shibboleth-integration/mp-gr/grouper-ws/container_files/tomcat-users.xml b/shibboleth-integration/mp-gr/grouper-ws/container_files/tomcat-users.xml deleted file mode 100644 index f5d6945..0000000 --- a/shibboleth-integration/mp-gr/grouper-ws/container_files/tomcat-users.xml +++ /dev/null @@ -1,46 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/shibboleth-integration/mp-gr/grouper-ws/container_files/web.xml b/shibboleth-integration/mp-gr/grouper-ws/container_files/web.xml deleted file mode 100644 index 03d3deb..0000000 --- a/shibboleth-integration/mp-gr/grouper-ws/container_files/web.xml +++ /dev/null @@ -1,128 +0,0 @@ - - - - - - - - - Grouper service filter - edu.internet2.middleware.grouper.ws.GrouperServiceJ2ee - - - - - Grouper logging filter - edu.internet2.middleware.grouper.ws.j2ee.ServletFilterLogger - - - - - - Grouper service filter - /services/* - - - Grouper service filter - /servicesRest/* - - - AxisServlet - Apache-Axis Servlet - edu.internet2.middleware.grouper.ws.GrouperServiceAxisServlet - 1 - - - - - RestServlet - WS REST Servlet - edu.internet2.middleware.grouper.ws.rest.GrouperRestServlet - 1 - - - StatusServlet - Status Servlet - edu.internet2.middleware.grouper.j2ee.status.GrouperStatusServlet - 1 - - - StatusServlet - /status - - - AxisServlet - /services/* - - - RestServlet - /servicesRest/* - - - - - Web services - /services/* - - - * - - - - - - Web services - /servicesRest/* - - - - * - - - - - - BASIC - Grouper Application - - - - - - The role that is required to log in to web service - - * - - - - 1 - - - diff --git a/shibboleth-integration/mp-gr/gsh/Dockerfile b/shibboleth-integration/mp-gr/gsh/Dockerfile deleted file mode 100644 index 3302328..0000000 --- a/shibboleth-integration/mp-gr/gsh/Dockerfile +++ /dev/null @@ -1,5 +0,0 @@ -FROM tier/grouper:latest - -MAINTAINER tier-packaging@internet2.edu - -CMD ["gsh"] diff --git a/shibboleth-integration/mp-gr/midpoint-data/Dockerfile b/shibboleth-integration/mp-gr/midpoint-data/Dockerfile deleted file mode 100644 index fcaa4e0..0000000 --- a/shibboleth-integration/mp-gr/midpoint-data/Dockerfile +++ /dev/null @@ -1,39 +0,0 @@ -FROM centos:centos7 - -LABEL author="tier-packaging@internet2.edu " - -COPY ./conf/mariadb.repo /etc/yum.repos.d/ - -RUN yum install -y epel-release \ - && yum update -y \ - && yum install -y mariadb-server mariadb \ - && yum clean all \ - && rm -rf /var/cache/yum - -COPY database_password.txt /tmp/ - -RUN mysql_install_db \ - && chown -R mysql:mysql /var/lib/mysql/ \ - && sed -i 's/^\(bind-address\s.*\)/# \1/' /etc/my.cnf \ - && sed -i 's/^\(log_error\s.*\)/# \1/' /etc/my.cnf \ - && sed -i 's/\[mysqld\]/\[mysqld\]\ncharacter_set_server = utf8/' /etc/my.cnf \ - && sed -i 's/\[mysqld\]/\[mysqld\]\ncollation_server = utf8_bin/' /etc/my.cnf \ - && sed -i 's/\[mysqld\]/\[mysqld\]\nport = 3306/' /etc/my.cnf \ - && cat /etc/my.cnf \ - && echo "/usr/bin/mysqld_safe &" > /tmp/config \ - && echo "mysqladmin --silent --wait=30 ping || exit 1" >> /tmp/config \ - && echo "mysql -e \"CREATE USER 'root'@'%' IDENTIFIED BY '`cat /tmp/database_password.txt`';\"" >> /tmp/config \ - && echo "echo ok0" >> /tmp/config \ - && echo "mysql -e 'GRANT ALL PRIVILEGES ON *.* TO \"root\"@\"%\" WITH GRANT OPTION;'" >> /tmp/config \ - && echo "echo ok1" >> /tmp/config \ - && echo "mysql -e 'CREATE DATABASE midpoint CHARACTER SET utf8 COLLATE utf8_bin;'" >> /tmp/config \ - && echo "echo ok2" >> /tmp/config \ - && echo "mysql -e \"SET PASSWORD FOR 'root'@'localhost' = PASSWORD('`cat /tmp/database_password.txt`');\"" >> /tmp/config \ - && echo "echo ok3" >> /tmp/config \ - && cat /tmp/config \ - && bash /tmp/config \ - && rm -f /tmp/config /tmp/database_password.txt - -EXPOSE 3306 - -CMD mysqld_safe diff --git a/shibboleth-integration/mp-gr/midpoint-data/conf/mariadb.repo b/shibboleth-integration/mp-gr/midpoint-data/conf/mariadb.repo deleted file mode 100644 index e24b3a0..0000000 --- a/shibboleth-integration/mp-gr/midpoint-data/conf/mariadb.repo +++ /dev/null @@ -1,6 +0,0 @@ -[mariadb] -name = MariaDB -baseurl = http://yum.mariadb.org/10.1/centos7-amd64 -gpgkey=https://yum.mariadb.org/RPM-GPG-KEY-MariaDB -gpgcheck=1 - diff --git a/shibboleth-integration/mp-gr/midpoint-data/database_password.txt b/shibboleth-integration/mp-gr/midpoint-data/database_password.txt deleted file mode 100644 index 11bac01..0000000 --- a/shibboleth-integration/mp-gr/midpoint-data/database_password.txt +++ /dev/null @@ -1 +0,0 @@ -456654 diff --git a/shibboleth-integration/mp-gr/midpoint-data/readme.txt b/shibboleth-integration/mp-gr/midpoint-data/readme.txt deleted file mode 100644 index e0affb1..0000000 --- a/shibboleth-integration/mp-gr/midpoint-data/readme.txt +++ /dev/null @@ -1 +0,0 @@ -database_password.txt should be synchronized with ../configs-and-secrets/midpoint/database_password.txt diff --git a/shibboleth-integration/mp-gr/midpoint-server/Dockerfile b/shibboleth-integration/mp-gr/midpoint-server/Dockerfile deleted file mode 100644 index ed8352c..0000000 --- a/shibboleth-integration/mp-gr/midpoint-server/Dockerfile +++ /dev/null @@ -1,58 +0,0 @@ -# -# Building assumes midpoint-3.9-SNAPSHOT-dist.tar.gz is present in the current directory. -# - -FROM tier/shibboleth_sp - -MAINTAINER info@evolveum.com - -# TODO switch to other appropriate Java implementation - -RUN yum -y install java-1.8.0-openjdk - -ARG MP_VERSION=3.9-SNAPSHOT -ARG MP_DIST_FILE=midpoint-${MP_VERSION}-dist.tar.gz - -ENV MP_DIR /opt/midpoint - -RUN mkdir -p ${MP_DIR}/var - -COPY ${MP_DIST_FILE} ${MP_DIR} -COPY container_files/mp-home/ ${MP_DIR}/var/ - -RUN echo 'Extracting midPoint archive...' \ - && tar xzf ${MP_DIR}/midpoint-${MP_VERSION}-dist.tar.gz -C ${MP_DIR} --strip-components=1 - -VOLUME ${MP_DIR}/var - -RUN rm /etc/shibboleth/sp-key.pem /etc/shibboleth/sp-cert.pem - -COPY container_files/httpd/conf/* /etc/httpd/conf.d/ -COPY container_files/httpd/possible-conf/* /etc/httpd/possible-conf/ -COPY container_files/shibboleth/* /etc/shibboleth/ -COPY container_files/usr-local-bin/ /usr/local/bin/ - -RUN cp /dev/null /etc/httpd/conf.d/ssl.conf \ - && sed -i 's/LogFormat "/LogFormat "httpd;access_log;%{ENV}e;%{USERTOKEN}e;/g' /etc/httpd/conf/httpd.conf \ - && echo -e "\nErrorLogFormat \"httpd;error_log;%{ENV}e;%{USERTOKEN}e;[%{u}t] [%-m:%l] [pid %P:tid %T] %7F: %E: [client\ %a] %M% ,\ referer\ %{Referer}i\"" >> /etc/httpd/conf/httpd.conf \ - && sed -i 's/CustomLog "logs\/access_log"/CustomLog "\/tmp\/logpipe"/g' /etc/httpd/conf/httpd.conf \ - && sed -i 's/ErrorLog "logs\/error_log"/ErrorLog "\/tmp\/logpipe"/g' /etc/httpd/conf/httpd.conf \ - && echo -e "\nPassEnv ENV" >> /etc/httpd/conf/httpd.conf \ - && echo -e "\nPassEnv USERTOKEN" >> /etc/httpd/conf/httpd.conf - - - -ENV REPO_HOST midpoint-data -ENV REPO_PORT 3306 -ENV REPO_USER root -ENV REPO_DATABASE midpoint -ENV REPO_PASSWORD_FILE /run/secrets/m_database_password.txt -ENV ENV demo -ENV USERTOKEN $MP_VERSION -ENV ACTIVE_PROFILE default,sso -ENV SSO_HEADER uid -ENV AJP_ENABLED true -ENV AJP_PORT 9090 -ENV LOGOUT_URL https://localhost:4438/Shibboleth.sso/Logout - -ENTRYPOINT ["/usr/local/bin/entrypoint.sh"] \ No newline at end of file diff --git a/shibboleth-integration/mp-gr/midpoint-server/container_files/mp-home/icf-connectors/net.tirasa.connid.bundles.db.scriptedsql-2.2.6-SNAPSHOT.jar b/shibboleth-integration/mp-gr/midpoint-server/container_files/mp-home/icf-connectors/net.tirasa.connid.bundles.db.scriptedsql-2.2.6-SNAPSHOT.jar deleted file mode 100644 index 88fcb54..0000000 Binary files a/shibboleth-integration/mp-gr/midpoint-server/container_files/mp-home/icf-connectors/net.tirasa.connid.bundles.db.scriptedsql-2.2.6-SNAPSHOT.jar and /dev/null differ diff --git a/shibboleth-integration/mp-gr/midpoint-server/container_files/mp-home/lib/amqp-client-5.3.0.jar b/shibboleth-integration/mp-gr/midpoint-server/container_files/mp-home/lib/amqp-client-5.3.0.jar deleted file mode 100644 index 27c6942..0000000 Binary files a/shibboleth-integration/mp-gr/midpoint-server/container_files/mp-home/lib/amqp-client-5.3.0.jar and /dev/null differ diff --git a/shibboleth-integration/mp-gr/midpoint-server/container_files/mp-home/res/grouper2/SchemaScript.groovy b/shibboleth-integration/mp-gr/midpoint-server/container_files/mp-home/res/grouper2/SchemaScript.groovy deleted file mode 100644 index 495615d..0000000 --- a/shibboleth-integration/mp-gr/midpoint-server/container_files/mp-home/res/grouper2/SchemaScript.groovy +++ /dev/null @@ -1,84 +0,0 @@ -/* - * ==================== - * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. - * - * Copyright 2013 ForgeRock. All rights reserved. - * - * The contents of this file are subject to the terms of the Common Development - * and Distribution License("CDDL") (the "License"). You may not use this file - * except in compliance with the License. - * - * You can obtain a copy of the License at - * http://opensource.org/licenses/cddl1.php - * See the License for the specific language governing permissions and limitations - * under the License. - * - * When distributing the Covered Code, include this CDDL Header Notice in each file - * and include the License file at http://opensource.org/licenses/cddl1.php. - * If applicable, add the following below this CDDL Header, with the fields - * enclosed by brackets [] replaced by your own identifying information: - * "Portions Copyrighted [year] [name of copyright owner]" - * ==================== - * Portions Copyrighted 2013 ConnId. - */ -import org.identityconnectors.framework.common.objects.AttributeInfo; -import org.identityconnectors.framework.common.objects.AttributeInfo.Flags; -import org.identityconnectors.framework.common.objects.AttributeInfoBuilder; -import org.identityconnectors.framework.common.objects.ObjectClassInfo; -import org.identityconnectors.framework.common.objects.ObjectClassInfoBuilder; - -// Parameters: -// The connector sends the following: -// action: a string describing the action ("SCHEMA" here) -// log: a handler to the Log facility -// builder: SchemaBuilder instance for the connector -// -// The connector will make the final call to builder.build() -// so the scipt just need to declare the different object types. - -// This sample shows how to create 3 basic ObjectTypes: __ACCOUNT__, __GROUP__ and organization. -// Each of them contains one required attribute and normal String attributes - - -log.info("Entering "+action+" Script"); - -// __UID__ = grouper_members.id -// __NAME__ = grouper_members.subject_id -accAttrsInfo = new HashSet(); -accAttrsInfo.add(AttributeInfoBuilder.build("subject_id", String.class)); -accAttrsInfo.add(AttributeInfoBuilder.build("subject_identifier0", String.class)); -accAttrsInfo.add(AttributeInfoBuilder.build("sort_string0", String.class)); -accAttrsInfo.add(AttributeInfoBuilder.build("search_string0", String.class)); -accAttrsInfo.add(AttributeInfoBuilder.build("name", String.class)); -accAttrsInfo.add(AttributeInfoBuilder.build("description", String.class)); -accAttrsInfo.add(AttributeInfoBuilder.build("group", String.class, [Flags.MULTIVALUED] as Set)); -ociAccount = new ObjectClassInfoBuilder().setType("__ACCOUNT__").addAllAttributeInfo(accAttrsInfo).build(); -builder.defineObjectClass(ociAccount); - -// __UID__ = grouper_groups.id -// __NAME__ = grouper_groups.name -grpAttrsInfo = new HashSet(); -grpAttrsInfo.add(AttributeInfoBuilder.build("displayName", String.class)); -grpAttrsInfo.add(AttributeInfoBuilder.build("extension", String.class)); -grpAttrsInfo.add(AttributeInfoBuilder.build("displayExtension", String.class)); -grpAttrsInfo.add(AttributeInfoBuilder.build("description", String.class)); -grpAttrsInfo.add(AttributeInfoBuilder.build("type", String.class)); -ociGroup = new ObjectClassInfoBuilder().setType("__GROUP__").addAllAttributeInfo(grpAttrsInfo).build(); -builder.defineObjectClass(ociGroup); - - -/* -// Declare the organization attributes -// Make the name required -nAIB = new AttributeInfoBuilder("name",String.class); -nAIB.setRequired(true); - -orgAttrsInfo = new HashSet(); -orgAttrsInfo.add(nAIB.build()); -orgAttrsInfo.add(AttributeInfoBuilder.build("description", String.class)); -// Create the organization Object class -final ObjectClassInfo ociOrg = new ObjectClassInfoBuilder().setType("organization").addAllAttributeInfo(orgAttrsInfo).build(); -builder.defineObjectClass(ociOrg); -*/ - -log.info("Schema script done"); diff --git a/shibboleth-integration/mp-gr/midpoint-server/container_files/mp-home/res/grouper2/SearchScript.groovy b/shibboleth-integration/mp-gr/midpoint-server/container_files/mp-home/res/grouper2/SearchScript.groovy deleted file mode 100644 index ea61cdd..0000000 --- a/shibboleth-integration/mp-gr/midpoint-server/container_files/mp-home/res/grouper2/SearchScript.groovy +++ /dev/null @@ -1,112 +0,0 @@ -/* - * ==================== - * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. - * - * Copyright 2013 ForgeRock. All rights reserved. - * - * The contents of this file are subject to the terms of the Common Development - * and Distribution License("CDDL") (the "License"). You may not use this file - * except in compliance with the License. - * - * You can obtain a copy of the License at - * http://opensource.org/licenses/cddl1.php - * See the License for the specific language governing permissions and limitations - * under the License. - * - * When distributing the Covered Code, include this CDDL Header Notice in each file - * and include the License file at http://opensource.org/licenses/cddl1.php. - * If applicable, add the following below this CDDL Header, with the fields - * enclosed by brackets [] replaced by your own identifying information: - * "Portions Copyrighted [year] [name of copyright owner]" - * ==================== - * Portions Copyrighted 2013 ConnId. - */ -import groovy.sql.Sql; -import groovy.sql.DataSet; - -// Parameters: -// The connector sends the following: -// connection: handler to the SQL connection -// objectClass: a String describing the Object class (__ACCOUNT__ / __GROUP__ / other) -// action: a string describing the action ("SEARCH" here) -// log: a handler to the Log facility -// options: a handler to the OperationOptions Map -// query: a handler to the Query Map -// -// The Query map describes the filter used. -// -// query = [ operation: "CONTAINS", left: attribute, right: "value", not: true/false ] -// query = [ operation: "ENDSWITH", left: attribute, right: "value", not: true/false ] -// query = [ operation: "STARTSWITH", left: attribute, right: "value", not: true/false ] -// query = [ operation: "EQUALS", left: attribute, right: "value", not: true/false ] -// query = [ operation: "GREATERTHAN", left: attribute, right: "value", not: true/false ] -// query = [ operation: "GREATERTHANOREQUAL", left: attribute, right: "value", not: true/false ] -// query = [ operation: "LESSTHAN", left: attribute, right: "value", not: true/false ] -// query = [ operation: "LESSTHANOREQUAL", left: attribute, right: "value", not: true/false ] -// query = null : then we assume we fetch everything -// -// AND and OR filter just embed a left/right couple of queries. -// query = [ operation: "AND", left: query1, right: query2 ] -// query = [ operation: "OR", left: query1, right: query2 ] -// -// Returns: A list of Maps. Each map describing one row. -// !!!! Each Map must contain a '__UID__' and '__NAME__' attribute. -// This is required to build a ConnectorObject. - -log.info("Entering "+action+" Script"); - -def sql = new Sql(connection); -def result = [] -def where = ""; - -switch ( objectClass ) { - case "__ACCOUNT__": - sql.eachRow("\ -select m.id, m.name, m.subject_id, m.subject_identifier0, m.sort_string0, m.search_string0, m.description, m.subject_source, m.subject_type, group_concat(distinct g.name) as groups \ -from \ - grouper_members m \ - left join grouper_memberships_all_v gm on m.id=gm.member_id and gm.owner_id in \ - (select m.subject_id \ - from grouper_memberships gm join grouper_members m on gm.member_id=m.id \ - where gm.owner_id = (select subject_id from grouper_members where name='etc:exportedGroups' and subject_type='group')) \ - left join grouper_groups g on gm.owner_id=g.id \ -group by m.id \ -having \ - subject_source = 'ldap' and subject_type = 'person'", - {result.add( - [__UID__:it.id, - __NAME__:it.subject_id, - subject_id:it.subject_id, - subject_identifier0:it.subject_identifier0, - sort_string0:it.sort_string0, - search_string0:it.search_string0, - name:it.name, - description:it.description, - group:it.groups?.tokenize(',')])} ); - break - - case "__GROUP__": - sql.eachRow("SELECT id, name, display_name, extension, display_extension, description, type_of_group FROM grouper_groups WHERE id in \ - (select m.subject_id \ - from grouper_memberships gm join grouper_members m on gm.member_id=m.id \ - where gm.owner_id = (select subject_id from grouper_members where name='etc:exportedGroups' and subject_type='group'))", - {result.add([ - __UID__:it.id, - __NAME__:it.name, - displayName:it.display_name, - extension:it.extension, - displayExtension:it.display_extension, - description:it.description, - type:it.type_of_group])} ); - break - -/* - case "organization": - sql.eachRow("SELECT * FROM Organizations" + where, {result.add([__UID__:it.name, __NAME__:it.name, description:it.description])} ); - break */ - - default: - result; -} - -return result; diff --git a/shibboleth-integration/mp-gr/midpoint-server/container_files/mp-home/res/grouper2/SyncScript.groovy b/shibboleth-integration/mp-gr/midpoint-server/container_files/mp-home/res/grouper2/SyncScript.groovy deleted file mode 100644 index c02e1d7..0000000 --- a/shibboleth-integration/mp-gr/midpoint-server/container_files/mp-home/res/grouper2/SyncScript.groovy +++ /dev/null @@ -1,185 +0,0 @@ -/* - * ==================== - * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. - * - * Copyright 2013 ForgeRock. All rights reserved. - * - * The contents of this file are subject to the terms of the Common Development - * and Distribution License("CDDL") (the "License"). You may not use this file - * except in compliance with the License. - * - * You can obtain a copy of the License at - * http://opensource.org/licenses/cddl1.php - * See the License for the specific language governing permissions and limitations - * under the License. - * - * When distributing the Covered Code, include this CDDL Header Notice in each file - * and include the License file at http://opensource.org/licenses/cddl1.php. - * If applicable, add the following below this CDDL Header, with the fields - * enclosed by brackets [] replaced by your own identifying information: - * "Portions Copyrighted [year] [name of copyright owner]" - * ==================== - * Portions Copyrighted 2013 ConnId. - */ -import groovy.sql.Sql -import groovy.sql.DataSet -import com.rabbitmq.client.* - -// Parameters: -// The connector sends the following: -// connection: handler to the SQL connection -// objectClass: a String describing the Object class (__ACCOUNT__ / __GROUP__ / other) -// action: a string describing the action ("SYNC" or "GET_LATEST_SYNC_TOKEN" here) -// log: a handler to the Log facility -// options: a handler to the OperationOptions Map (null if action = "GET_LATEST_SYNC_TOKEN") -// token: a handler to an Object representing the sync token (null if action = "GET_LATEST_SYNC_TOKEN") -// -// -// Returns: -// if action = "GET_LATEST_SYNC_TOKEN", it must return an object representing the last known -// sync token for the corresponding ObjectClass -// -// if action = "SYNC": -// A list of Maps . Each map describing one update: -// Map should look like the following: -// -// [ -// "token": token object (could be Integer, Date, String) , [!! could be null] -// "operation": ("CREATE_OR_UPDATE"|"DELETE") will always default to CREATE_OR_DELETE , -// "uid": uid (uid of the entry) , -// "previousUid": prevuid (This is for rename ops) , -// "password": password (optional... allows to pass clear text password if needed), -// "attributes":Map of attributes name/values -// ] - -log.info("Entering "+action+" Script"); -def sql = new Sql(connection); - -if (action.equalsIgnoreCase("GET_LATEST_SYNC_TOKEN")) { - return 0 -} else if (action.equalsIgnoreCase("SYNC")) { - - - factory = new ConnectionFactory() - factory.host = 'mq' - factory.port = 5672 - connection = factory.newConnection() - channel = connection.createChannel() - println 'RabbitMQ: conn=' + connection + ', channel=' + channel - - result = [] - - for (;;) { - response = channel.basicGet('sampleQueue', false) - println 'got response: ' + response - if (response == null) { - break - } - body = response.body - if (body == null) { - log.warn('null body in {}', response) - continue - } - text = new String(body) - println 'Got message:\n' + text - - jsonSlurper = new groovy.json.JsonSlurper() - msg = jsonSlurper.parseText(text) - - events = msg?.esbEvent - println 'events = ' + events - if (events == null || events.isEmpty()) { - println 'esbEvent is null or empty, getting next message; events = ' + events - continue - } - - for (event in events) { - - type = event.eventType - if (type != 'MEMBERSHIP_ADD' && type != 'MEMBERSHIP_DELETE') { - println 'event type does not match, getting next message; type = ' + type - continue - } - if (event.sourceId != 'ldap') { - println 'sourceId does not match, getting next message; sourceId = ' + event.sourceId - continue - } - - // the user membership has changed: let's fetch the current status of the user (ConnId requires full 'new state' anyway) - subjectId = event.subjectId - if (subjectId == null) { - println 'subjectId is null, getting next message' - continue - } - println 'subject membership changed: ' + subjectId - - sql.eachRow("\ -select m.id, m.name, m.subject_id, m.subject_identifier0, m.sort_string0, m.search_string0, m.description, m.subject_source, m.subject_type, group_concat(distinct g.name) as groups \ -from \ - grouper_members m \ - left join grouper_memberships_all_v gm on m.id=gm.member_id and gm.owner_id in \ - (select m.subject_id \ - from grouper_memberships gm join grouper_members m on gm.member_id=m.id \ - where gm.owner_id = (select subject_id from grouper_members where name='etc:exportedGroups' and subject_type='group')) \ - left join grouper_groups g on gm.owner_id=g.id \ -group by m.id \ -having \ - subject_source = 'ldap' and subject_type = 'person' and subject_id = '" + subjectId + "'", - {result.add( - [operation:"CREATE_OR_UPDATE", - token:System.currentTimeMillis(), - __UID__:it.id, - __NAME__:it.subject_id, - subject_id:it.subject_id, - subject_identifier0:it.subject_identifier0, - sort_string0:it.sort_string0, - search_string0:it.search_string0, - name:it.name, - description:it.description, - group:it.groups?.tokenize(',')])} ) - } - } - - channel.close() - connection.close() - - println 'result is\n' + result - - return result - -/* - def result = []; - def tstamp = null; - if (token != null){ - tstamp = new java.sql.Timestamp(token); - } - else{ - def today= new Date(); - tstamp = new java.sql.Timestamp(today.time); - } - - switch ( objectClass ) { - case "__ACCOUNT__": - sql.eachRow("select * from Users where timestamp > ${tstamp}", - {result.add([operation:"CREATE_OR_UPDATE", uid:it.uid, token:it.timestamp.getTime(), - attributes:[firstname:it.firstname,fullname:it.fullname, lastname:it.lastname, email:it.email, organization:it.organization]])} - ) - break; - - case "__GROUP__": - sql.eachRow("select * from Groups where timestamp > ${tstamp}", - {result.add([operation:"CREATE_OR_UPDATE", uid:it.gid,token:it.timestamp.getTime(), - attributes:[gid:it.gid,name:it.name,description:it.description]])} - ); - break; - } - - log.ok("Sync script: found "+result.size()+" events to sync"); - return result; -*/ - -} -else { - log.error("Sync script: action '"+action+"' is not implemented in this script"); - return null; -} diff --git a/shibboleth-integration/mp-gr/midpoint-server/container_files/mp-home/res/grouper2/TestScript.groovy b/shibboleth-integration/mp-gr/midpoint-server/container_files/mp-home/res/grouper2/TestScript.groovy deleted file mode 100644 index 45d9477..0000000 --- a/shibboleth-integration/mp-gr/midpoint-server/container_files/mp-home/res/grouper2/TestScript.groovy +++ /dev/null @@ -1,47 +0,0 @@ -/* - * ==================== - * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. - * - * Copyright 2013 ForgeRock. All rights reserved. - * - * The contents of this file are subject to the terms of the Common Development - * and Distribution License("CDDL") (the "License"). You may not use this file - * except in compliance with the License. - * - * You can obtain a copy of the License at - * http://opensource.org/licenses/cddl1.php - * See the License for the specific language governing permissions and limitations - * under the License. - * - * When distributing the Covered Code, include this CDDL Header Notice in each file - * and include the License file at http://opensource.org/licenses/cddl1.php. - * If applicable, add the following below this CDDL Header, with the fields - * enclosed by brackets [] replaced by your own identifying information: - * "Portions Copyrighted [year] [name of copyright owner]" - * ==================== - * Portions Copyrighted 2013 ConnId. - */ -import groovy.sql.Sql -import groovy.sql.DataSet -import com.rabbitmq.client.* - -// Parameters: -// The connector sends the following: -// connection: handler to the SQL connection -// action: a string describing the action ("TEST" here) -// log: a handler to the Log facility - -log.info("Entering "+action+" Script") -def sql = new Sql(connection) - -sql.eachRow("select * from grouper_members limit 10", { println it.subject_id } ) - -factory = new ConnectionFactory() -factory.host = 'mq' -factory.port = 5672 -connection = factory.newConnection() -channel = connection.createChannel() -println 'conn=' + connection + ', channel=' + channel - -channel.close() -connection.close() diff --git a/shibboleth-integration/mp-gr/midpoint-server/container_files/mp-home/res/sis-persons/SchemaScript.groovy b/shibboleth-integration/mp-gr/midpoint-server/container_files/mp-home/res/sis-persons/SchemaScript.groovy deleted file mode 100644 index fc922bf..0000000 --- a/shibboleth-integration/mp-gr/midpoint-server/container_files/mp-home/res/sis-persons/SchemaScript.groovy +++ /dev/null @@ -1,59 +0,0 @@ -/* - * ==================== - * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. - * - * Copyright 2013 ForgeRock. All rights reserved. - * - * The contents of this file are subject to the terms of the Common Development - * and Distribution License("CDDL") (the "License"). You may not use this file - * except in compliance with the License. - * - * You can obtain a copy of the License at - * http://opensource.org/licenses/cddl1.php - * See the License for the specific language governing permissions and limitations - * under the License. - * - * When distributing the Covered Code, include this CDDL Header Notice in each file - * and include the License file at http://opensource.org/licenses/cddl1.php. - * If applicable, add the following below this CDDL Header, with the fields - * enclosed by brackets [] replaced by your own identifying information: - * "Portions Copyrighted [year] [name of copyright owner]" - * ==================== - * Portions Copyrighted 2013 ConnId. - */ -import org.identityconnectors.framework.common.objects.AttributeInfo; -import org.identityconnectors.framework.common.objects.AttributeInfo.Flags; -import org.identityconnectors.framework.common.objects.AttributeInfoBuilder; -import org.identityconnectors.framework.common.objects.ObjectClassInfo; -import org.identityconnectors.framework.common.objects.ObjectClassInfoBuilder; - -// Parameters: -// The connector sends the following: -// action: a string describing the action ("SCHEMA" here) -// log: a handler to the Log facility -// builder: SchemaBuilder instance for the connector -// -// The connector will make the final call to builder.build() -// so the scipt just need to declare the different object types. - -// This sample shows how to create 3 basic ObjectTypes: __ACCOUNT__, __GROUP__ and organization. -// Each of them contains one required attribute and normal String attributes - - -log.info("Entering "+action+" Script"); - -uidAIB = new AttributeInfoBuilder("uid",String.class); -uidAIB.setRequired(true); - -accAttrsInfo = new HashSet(); -accAttrsInfo.add(uidAIB.build()); -accAttrsInfo.add(AttributeInfoBuilder.build("surname", String.class)); -accAttrsInfo.add(AttributeInfoBuilder.build("givenName", String.class)); -accAttrsInfo.add(AttributeInfoBuilder.build("fullName", String.class)); -accAttrsInfo.add(AttributeInfoBuilder.build("department", String.class)); -accAttrsInfo.add(AttributeInfoBuilder.build("mail", String.class)); -accAttrsInfo.add(AttributeInfoBuilder.build("affiliation", String.class, [Flags.MULTIVALUED] as Set)); -ociAccount = new ObjectClassInfoBuilder().setType("__ACCOUNT__").addAllAttributeInfo(accAttrsInfo).build(); -builder.defineObjectClass(ociAccount); - -log.info("Schema script done"); diff --git a/shibboleth-integration/mp-gr/midpoint-server/container_files/mp-home/res/sis-persons/SearchScript.groovy b/shibboleth-integration/mp-gr/midpoint-server/container_files/mp-home/res/sis-persons/SearchScript.groovy deleted file mode 100644 index 9eb9364..0000000 --- a/shibboleth-integration/mp-gr/midpoint-server/container_files/mp-home/res/sis-persons/SearchScript.groovy +++ /dev/null @@ -1,80 +0,0 @@ -/* - * ==================== - * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. - * - * Copyright 2013 ForgeRock. All rights reserved. - * - * The contents of this file are subject to the terms of the Common Development - * and Distribution License("CDDL") (the "License"). You may not use this file - * except in compliance with the License. - * - * You can obtain a copy of the License at - * http://opensource.org/licenses/cddl1.php - * See the License for the specific language governing permissions and limitations - * under the License. - * - * When distributing the Covered Code, include this CDDL Header Notice in each file - * and include the License file at http://opensource.org/licenses/cddl1.php. - * If applicable, add the following below this CDDL Header, with the fields - * enclosed by brackets [] replaced by your own identifying information: - * "Portions Copyrighted [year] [name of copyright owner]" - * ==================== - * Portions Copyrighted 2013 ConnId. - */ -import groovy.sql.Sql; -import groovy.sql.DataSet; - -// Parameters: -// The connector sends the following: -// connection: handler to the SQL connection -// objectClass: a String describing the Object class (__ACCOUNT__ / __GROUP__ / other) -// action: a string describing the action ("SEARCH" here) -// log: a handler to the Log facility -// options: a handler to the OperationOptions Map -// query: a handler to the Query Map -// -// The Query map describes the filter used. -// -// query = [ operation: "CONTAINS", left: attribute, right: "value", not: true/false ] -// query = [ operation: "ENDSWITH", left: attribute, right: "value", not: true/false ] -// query = [ operation: "STARTSWITH", left: attribute, right: "value", not: true/false ] -// query = [ operation: "EQUALS", left: attribute, right: "value", not: true/false ] -// query = [ operation: "GREATERTHAN", left: attribute, right: "value", not: true/false ] -// query = [ operation: "GREATERTHANOREQUAL", left: attribute, right: "value", not: true/false ] -// query = [ operation: "LESSTHAN", left: attribute, right: "value", not: true/false ] -// query = [ operation: "LESSTHANOREQUAL", left: attribute, right: "value", not: true/false ] -// query = null : then we assume we fetch everything -// -// AND and OR filter just embed a left/right couple of queries. -// query = [ operation: "AND", left: query1, right: query2 ] -// query = [ operation: "OR", left: query1, right: query2 ] -// -// Returns: A list of Maps. Each map describing one row. -// !!!! Each Map must contain a '__UID__' and '__NAME__' attribute. -// This is required to build a ConnectorObject. - -log.info("Entering "+action+" Script"); - -def sql = new Sql(connection); -def result = [] -def where = ""; - -switch ( objectClass ) { - case "__ACCOUNT__": - sql.eachRow("select p.uid as uid, surname, givenName, fullName, department, mail, group_concat(affiliation) as affiliations from SIS_PERSONS p left join SIS_AFFILIATIONS a on p.uid = a.uid group by p.uid", {result.add([ - __UID__:it.uid, - __NAME__:it.uid, - uid:it.uid, - surname:it.surname, - givenName:it.givenName, - fullName:it.fullName, - department:it.department, - mail:it.mail, - affiliation:it.affiliations?.tokenize(',')])} ); - break - - default: - result; -} - -return result; diff --git a/shibboleth-integration/mp-gr/midpoint-server/container_files/mp-home/res/sis-persons/TestScript.groovy b/shibboleth-integration/mp-gr/midpoint-server/container_files/mp-home/res/sis-persons/TestScript.groovy deleted file mode 100644 index c887660..0000000 --- a/shibboleth-integration/mp-gr/midpoint-server/container_files/mp-home/res/sis-persons/TestScript.groovy +++ /dev/null @@ -1,38 +0,0 @@ -/* - * ==================== - * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. - * - * Copyright 2013 ForgeRock. All rights reserved. - * - * The contents of this file are subject to the terms of the Common Development - * and Distribution License("CDDL") (the "License"). You may not use this file - * except in compliance with the License. - * - * You can obtain a copy of the License at - * http://opensource.org/licenses/cddl1.php - * See the License for the specific language governing permissions and limitations - * under the License. - * - * When distributing the Covered Code, include this CDDL Header Notice in each file - * and include the License file at http://opensource.org/licenses/cddl1.php. - * If applicable, add the following below this CDDL Header, with the fields - * enclosed by brackets [] replaced by your own identifying information: - * "Portions Copyrighted [year] [name of copyright owner]" - * ==================== - * Portions Copyrighted 2013 ConnId. - */ -import groovy.sql.Sql; -import groovy.sql.DataSet; - -// Parameters: -// The connector sends the following: -// connection: handler to the SQL connection -// action: a string describing the action ("TEST" here) -// log: a handler to the Log facility - -log.info("Entering "+action+" Script"); -def sql = new Sql(connection); - -sql.eachRow("select * from SIS_PERSONS limit 10", { println it.uid } ); - - diff --git a/shibboleth-integration/mp-gr/midpoint-server/container_files/mp-home/res/sis/SchemaScript.groovy b/shibboleth-integration/mp-gr/midpoint-server/container_files/mp-home/res/sis/SchemaScript.groovy deleted file mode 100644 index 6cbee2d..0000000 --- a/shibboleth-integration/mp-gr/midpoint-server/container_files/mp-home/res/sis/SchemaScript.groovy +++ /dev/null @@ -1,54 +0,0 @@ -/* - * ==================== - * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. - * - * Copyright 2013 ForgeRock. All rights reserved. - * - * The contents of this file are subject to the terms of the Common Development - * and Distribution License("CDDL") (the "License"). You may not use this file - * except in compliance with the License. - * - * You can obtain a copy of the License at - * http://opensource.org/licenses/cddl1.php - * See the License for the specific language governing permissions and limitations - * under the License. - * - * When distributing the Covered Code, include this CDDL Header Notice in each file - * and include the License file at http://opensource.org/licenses/cddl1.php. - * If applicable, add the following below this CDDL Header, with the fields - * enclosed by brackets [] replaced by your own identifying information: - * "Portions Copyrighted [year] [name of copyright owner]" - * ==================== - * Portions Copyrighted 2013 ConnId. - */ -import org.identityconnectors.framework.common.objects.AttributeInfo; -import org.identityconnectors.framework.common.objects.AttributeInfo.Flags; -import org.identityconnectors.framework.common.objects.AttributeInfoBuilder; -import org.identityconnectors.framework.common.objects.ObjectClassInfo; -import org.identityconnectors.framework.common.objects.ObjectClassInfoBuilder; - -// Parameters: -// The connector sends the following: -// action: a string describing the action ("SCHEMA" here) -// log: a handler to the Log facility -// builder: SchemaBuilder instance for the connector -// -// The connector will make the final call to builder.build() -// so the scipt just need to declare the different object types. - -// This sample shows how to create 3 basic ObjectTypes: __ACCOUNT__, __GROUP__ and organization. -// Each of them contains one required attribute and normal String attributes - - -log.info("Entering "+action+" Script"); - -uidAIB = new AttributeInfoBuilder("uid",String.class); -uidAIB.setRequired(true); - -accAttrsInfo = new HashSet(); -accAttrsInfo.add(uidAIB.build()); -accAttrsInfo.add(AttributeInfoBuilder.build("courseId", String.class, [Flags.MULTIVALUED] as Set)); -ociAccount = new ObjectClassInfoBuilder().setType("__ACCOUNT__").addAllAttributeInfo(accAttrsInfo).build(); -builder.defineObjectClass(ociAccount); - -log.info("Schema script done"); diff --git a/shibboleth-integration/mp-gr/midpoint-server/container_files/mp-home/res/sis/SearchScript.groovy b/shibboleth-integration/mp-gr/midpoint-server/container_files/mp-home/res/sis/SearchScript.groovy deleted file mode 100644 index 026ef8d..0000000 --- a/shibboleth-integration/mp-gr/midpoint-server/container_files/mp-home/res/sis/SearchScript.groovy +++ /dev/null @@ -1,71 +0,0 @@ -/* - * ==================== - * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. - * - * Copyright 2013 ForgeRock. All rights reserved. - * - * The contents of this file are subject to the terms of the Common Development - * and Distribution License("CDDL") (the "License"). You may not use this file - * except in compliance with the License. - * - * You can obtain a copy of the License at - * http://opensource.org/licenses/cddl1.php - * See the License for the specific language governing permissions and limitations - * under the License. - * - * When distributing the Covered Code, include this CDDL Header Notice in each file - * and include the License file at http://opensource.org/licenses/cddl1.php. - * If applicable, add the following below this CDDL Header, with the fields - * enclosed by brackets [] replaced by your own identifying information: - * "Portions Copyrighted [year] [name of copyright owner]" - * ==================== - * Portions Copyrighted 2013 ConnId. - */ -import groovy.sql.Sql; -import groovy.sql.DataSet; - -// Parameters: -// The connector sends the following: -// connection: handler to the SQL connection -// objectClass: a String describing the Object class (__ACCOUNT__ / __GROUP__ / other) -// action: a string describing the action ("SEARCH" here) -// log: a handler to the Log facility -// options: a handler to the OperationOptions Map -// query: a handler to the Query Map -// -// The Query map describes the filter used. -// -// query = [ operation: "CONTAINS", left: attribute, right: "value", not: true/false ] -// query = [ operation: "ENDSWITH", left: attribute, right: "value", not: true/false ] -// query = [ operation: "STARTSWITH", left: attribute, right: "value", not: true/false ] -// query = [ operation: "EQUALS", left: attribute, right: "value", not: true/false ] -// query = [ operation: "GREATERTHAN", left: attribute, right: "value", not: true/false ] -// query = [ operation: "GREATERTHANOREQUAL", left: attribute, right: "value", not: true/false ] -// query = [ operation: "LESSTHAN", left: attribute, right: "value", not: true/false ] -// query = [ operation: "LESSTHANOREQUAL", left: attribute, right: "value", not: true/false ] -// query = null : then we assume we fetch everything -// -// AND and OR filter just embed a left/right couple of queries. -// query = [ operation: "AND", left: query1, right: query2 ] -// query = [ operation: "OR", left: query1, right: query2 ] -// -// Returns: A list of Maps. Each map describing one row. -// !!!! Each Map must contain a '__UID__' and '__NAME__' attribute. -// This is required to build a ConnectorObject. - -log.info("Entering "+action+" Script"); - -def sql = new Sql(connection); -def result = [] -def where = ""; - -switch ( objectClass ) { - case "__ACCOUNT__": - sql.eachRow("select uid, concat(surname, ', ', givenName, ' (', uid, ')') as name, group_concat(courseId) as courses from SIS_COURSES group by uid", {result.add([__UID__:it.uid, __NAME__:it.name, uid:it.uid, courseId:it.courses?.tokenize(',')])} ); - break - - default: - result; -} - -return result; diff --git a/shibboleth-integration/mp-gr/midpoint-server/container_files/mp-home/res/sis/TestScript.groovy b/shibboleth-integration/mp-gr/midpoint-server/container_files/mp-home/res/sis/TestScript.groovy deleted file mode 100644 index 95f87ad..0000000 --- a/shibboleth-integration/mp-gr/midpoint-server/container_files/mp-home/res/sis/TestScript.groovy +++ /dev/null @@ -1,38 +0,0 @@ -/* - * ==================== - * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER. - * - * Copyright 2013 ForgeRock. All rights reserved. - * - * The contents of this file are subject to the terms of the Common Development - * and Distribution License("CDDL") (the "License"). You may not use this file - * except in compliance with the License. - * - * You can obtain a copy of the License at - * http://opensource.org/licenses/cddl1.php - * See the License for the specific language governing permissions and limitations - * under the License. - * - * When distributing the Covered Code, include this CDDL Header Notice in each file - * and include the License file at http://opensource.org/licenses/cddl1.php. - * If applicable, add the following below this CDDL Header, with the fields - * enclosed by brackets [] replaced by your own identifying information: - * "Portions Copyrighted [year] [name of copyright owner]" - * ==================== - * Portions Copyrighted 2013 ConnId. - */ -import groovy.sql.Sql; -import groovy.sql.DataSet; - -// Parameters: -// The connector sends the following: -// connection: handler to the SQL connection -// action: a string describing the action ("TEST" here) -// log: a handler to the Log facility - -log.info("Entering "+action+" Script"); -def sql = new Sql(connection); - -sql.eachRow("select * from SIS_COURSES limit 10", { println it.uid } ); - - diff --git a/shibboleth-integration/mp-gr/midpoint-server/container_files/mp-home/schema/user-schema.xsd b/shibboleth-integration/mp-gr/midpoint-server/container_files/mp-home/schema/user-schema.xsd deleted file mode 100644 index 329534a..0000000 --- a/shibboleth-integration/mp-gr/midpoint-server/container_files/mp-home/schema/user-schema.xsd +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/shibboleth-integration/mp-gr/sources/Dockerfile b/shibboleth-integration/mp-gr/sources/Dockerfile deleted file mode 100644 index f8dd529..0000000 --- a/shibboleth-integration/mp-gr/sources/Dockerfile +++ /dev/null @@ -1,32 +0,0 @@ -FROM centos:centos7 - -LABEL author="tier-packaging@internet2.edu " - -RUN yum install -y epel-release \ - && yum update -y \ - && yum install -y mariadb-server mariadb \ - && yum clean all \ - && rm -rf /var/cache/yum - -COPY container_files/seed-data/ /seed-data/ - -RUN mysql_install_db \ - && chown -R mysql:mysql /var/lib/mysql/ \ - && sed -i 's/^\(bind-address\s.*\)/# \1/' /etc/my.cnf \ - && sed -i 's/^\(log_error\s.*\)/# \1/' /etc/my.cnf \ - && sed -i 's/\[mysqld\]/\[mysqld\]\ncharacter_set_server = utf8/' /etc/my.cnf \ - && sed -i 's/\[mysqld\]/\[mysqld\]\ncollation_server = utf8_general_ci/' /etc/my.cnf \ - && sed -i 's/\[mysqld\]/\[mysqld\]\nport = 3306/' /etc/my.cnf \ - && cat /etc/my.cnf \ - && echo "/usr/bin/mysqld_safe &" > /tmp/config \ - && echo "mysqladmin --silent --wait=30 ping || exit 1" >> /tmp/config \ - && echo "mysql -e 'GRANT ALL PRIVILEGES ON *.* TO \"root\"@\"%\" WITH GRANT OPTION;'" >> /tmp/config \ - && echo "mysql -e 'CREATE DATABASE sis CHARACTER SET utf8 COLLATE utf8_bin;'" >> /tmp/config \ - && bash /tmp/config \ - && rm -f /tmp/config \ - && mysql sis < /seed-data/persons.sql \ - && mysql sis < /seed-data/courses.sql - -EXPOSE 3306 - -CMD mysqld_safe diff --git a/shibboleth-integration/mp-gr/sources/container_files/seed-data/courses.sql b/shibboleth-integration/mp-gr/sources/container_files/seed-data/courses.sql deleted file mode 100644 index 44452bf..0000000 --- a/shibboleth-integration/mp-gr/sources/container_files/seed-data/courses.sql +++ /dev/null @@ -1,2540 +0,0 @@ -CREATE TABLE SIS_COURSES ( - uid varchar(255) NOT NULL, - surname varchar(255) default NULL, - givenName varchar(255) default NULL, - courseId varchar(255) default NULL, - PRIMARY KEY (uid, courseId) -); - -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kwhite','White','Karl','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kwhite','White','Karl','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kwhite','White','Karl','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kwhite','White','Karl','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('whenderson','Henderson','William','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ddavis','Davis','David','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ddavis','Davis','David','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('cmorrison','Morrison','Colin','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('cmorrison','Morrison','Colin','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('cmorrison','Morrison','Colin','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('cmorrison','Morrison','Colin','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('danderson','Anderson','Donna','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('danderson','Anderson','Donna','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('danderson','Anderson','Donna','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('amorrison','Morrison','Ann','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('amorrison','Morrison','Ann','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('amorrison','Morrison','Ann','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('wprice','Price','William','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('wprice','Price','William','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mroberts','Roberts','Marie','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mroberts','Roberts','Marie','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mroberts','Roberts','Marie','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mroberts','Roberts','Marie','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kjohnson','Johnson','Kiersten','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kjohnson','Johnson','Kiersten','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jbrown','Brown','James','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('agasper','Gasper','Ann','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jscott','Scott','Jennifer','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jscott','Scott','Jennifer','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jscott','Scott','Jennifer','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bbutler','Butler','Betty','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bbutler','Butler','Betty','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bbutler','Butler','Betty','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bbutler','Butler','Betty','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('tmorrison','Morrison','Thomas','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('tmorrison','Morrison','Thomas','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('tmorrison','Morrison','Thomas','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jbrown14','Brown','Jennifer','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jbrown14','Brown','Jennifer','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('gjohnson','Johnson','Greg','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('gjohnson','Johnson','Greg','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('gjohnson','Johnson','Greg','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('rmartinez','Martinez','Robert','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('rmartinez','Martinez','Robert','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jlewis','Lewis','Jo','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jlewis','Lewis','Jo','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jlewis','Lewis','Jo','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mgasper','Gasper','Mary','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mgasper','Gasper','Mary','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mgasper','Gasper','Mary','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mgasper','Gasper','Mary','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kvales','Vales','Karoline','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kvales','Vales','Karoline','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('tgrady','Grady','Thomas','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('tgrady','Grady','Thomas','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kmorrison','Morrison','Kiersten','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dgrady','Grady','David','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dgrady','Grady','David','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mthompson','Thompson','Mary','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mthompson','Thompson','Mary','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mthompson','Thompson','Mary','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mthompson','Thompson','Mary','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bgasper','Gasper','Bill','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bgasper','Gasper','Bill','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dlopez','Lopez','David','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dlopez','Lopez','David','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dlopez','Lopez','David','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('hwhite','White','Heather','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('hwhite','White','Heather','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('hwhite','White','Heather','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ddavis27','Davis','Donna','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ddavis27','Davis','Donna','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ddavis27','Davis','Donna','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ddavis27','Davis','Donna','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bgasper28','Gasper','Bill','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bgasper28','Gasper','Bill','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jjohnson','Johnson','Jennifer','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jjohnson','Johnson','Jennifer','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jjohnson','Johnson','Jennifer','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jjohnson','Johnson','Jennifer','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('amorrison30','Morrison','Ann','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kmartinez','Martinez','Karl','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kmartinez','Martinez','Karl','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kmartinez','Martinez','Karl','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ahenderson','Henderson','Ann','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ahenderson','Henderson','Ann','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('avales','Vales','Ann','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ggonazles','Gonazles','Greg','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ggonazles','Gonazles','Greg','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bdoe','Doe','Blake','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bdoe','Doe','Blake','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bdoe','Doe','Blake','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bdoe','Doe','Blake','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('plangenberg','Langenberg','Paul','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('gvales','Vales','Greg','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('gvales','Vales','Greg','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('gvales','Vales','Greg','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('nhenderson','Henderson','Nancy','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('wthompson','Thompson','William','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('wthompson','Thompson','William','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kvales40','Vales','Karl','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kvales40','Vales','Karl','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kvales40','Vales','Karl','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kvales40','Vales','Karl','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('blee','Lee','Bill','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('blee','Lee','Bill','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('blee','Lee','Bill','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mlee','Lee','Marie','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mlee','Lee','Marie','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mlee','Lee','Marie','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kclark','Clark','Kiersten','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kclark','Clark','Kiersten','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kclark','Clark','Kiersten','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('wscott','Scott','William','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dbutler','Butler','Donna','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dbutler','Butler','Donna','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dbutler','Butler','Donna','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('awhite','White','Ann','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('awhite','White','Ann','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('hdoe','Doe','Heather','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('hdoe','Doe','Heather','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dlangenberg','Langenberg','David','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dlangenberg','Langenberg','David','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dlangenberg','Langenberg','David','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ethompson','Thompson','Eric','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ethompson','Thompson','Eric','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ethompson','Thompson','Eric','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ethompson','Thompson','Eric','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jbrown50','Brown','Jennifer','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jbrown50','Brown','Jennifer','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jbrown50','Brown','Jennifer','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mgonazles','Gonazles','Michael','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('gbutler','Butler','Greg','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('gbutler','Butler','Greg','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('gbutler','Butler','Greg','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mvales','Vales','Mark','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mvales','Vales','Mark','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mvales','Vales','Mark','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mlewis','Lewis','Michael','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mlewis','Lewis','Michael','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mlewis','Lewis','Michael','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mlewis','Lewis','Michael','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('hvales','Vales','Heather','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('hvales','Vales','Heather','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('hvales','Vales','Heather','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jscott56','Scott','Jo','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jscott56','Scott','Jo','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('sdoe','Doe','Sarah','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('sdoe','Doe','Sarah','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('sdoe','Doe','Sarah','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('sdoe','Doe','Sarah','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('svales','Vales','Sarah','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('svales','Vales','Sarah','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('hmorrison','Morrison','Heather','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('hmorrison','Morrison','Heather','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('hmorrison','Morrison','Heather','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('hmorrison','Morrison','Heather','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jlopez','Lopez','Jennifer','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jlopez','Lopez','Jennifer','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jlopez','Lopez','Jennifer','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dlangenberg61','Langenberg','Donna','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dlangenberg61','Langenberg','Donna','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bgrady','Grady','Betty','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bgrady','Grady','Betty','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bgrady','Grady','Betty','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jmorrison','Morrison','Jennifer','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jmorrison','Morrison','Jennifer','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jmorrison','Morrison','Jennifer','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jmorrison','Morrison','Jennifer','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('wvales','Vales','William','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('wvales','Vales','William','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mmartinez','Martinez','Mark','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mmartinez','Martinez','Mark','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mmartinez','Martinez','Mark','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mmartinez','Martinez','Mark','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jmartinez','Martinez','Jennifer','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jmartinez','Martinez','Jennifer','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jmartinez','Martinez','Jennifer','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mgasper67','Gasper','Mary','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mgasper67','Gasper','Mary','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mgasper67','Gasper','Mary','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mgasper67','Gasper','Mary','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dpeterson','Peterson','David','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dpeterson','Peterson','David','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('eprice','Price','Erik','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('eprice','Price','Erik','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('eprice','Price','Erik','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jgasper','Gasper','James','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jgasper','Gasper','James','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jgasper','Gasper','James','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jclark','Clark','Jennifer','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jclark','Clark','Jennifer','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bpeterson','Peterson','Betty','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bpeterson','Peterson','Betty','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('wsmith','Smith','William','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('wsmith','Smith','William','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('lwilliams','Williams','Lisa','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('lwilliams','Williams','Lisa','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('lwilliams','Williams','Lisa','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dgrady76','Grady','David','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dgrady76','Grady','David','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dgrady76','Grady','David','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jmartinez77','Martinez','Jo','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dlewis','Lewis','Donna','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dlewis','Lewis','Donna','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dlewis','Lewis','Donna','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dlewis','Lewis','Donna','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('wscott79','Scott','William','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('wscott79','Scott','William','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ddoe','Doe','Donna','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ddoe','Doe','Donna','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ddoe','Doe','Donna','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ddoe','Doe','Donna','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('gmorrison','Morrison','Greg','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('gmorrison','Morrison','Greg','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('gmorrison','Morrison','Greg','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('khenderson','Henderson','Kim','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kpeterson','Peterson','Karoline','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kpeterson','Peterson','Karoline','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kpeterson','Peterson','Karoline','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kpeterson','Peterson','Karoline','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('eprice84','Price','Erik','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('hsmith','Smith','Heather','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('hsmith','Smith','Heather','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('hsmith','Smith','Heather','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('hsmith','Smith','Heather','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dwilliams','Williams','Donna','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dwilliams','Williams','Donna','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('klopez','Lopez','Karl','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('wjohnson','Johnson','William','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('wjohnson','Johnson','William','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('wbrown','Brown','William','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('hbrown','Brown','Heather','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('hbrown','Brown','Heather','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('hbrown','Brown','Heather','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('hbrown','Brown','Heather','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kroberts','Roberts','Kim','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kroberts','Roberts','Kim','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kroberts','Roberts','Kim','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kroberts','Roberts','Kim','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dwalters','Walters','Donna','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('nlee','Lee','Nancy','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('nlee','Lee','Nancy','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('nlee','Lee','Nancy','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('nlee','Lee','Nancy','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('sgonazles','Gonazles','Sarah','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('sgonazles','Gonazles','Sarah','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('handerson','Anderson','Heather','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('danderson96','Anderson','David','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('danderson96','Anderson','David','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('danderson96','Anderson','David','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('danderson96','Anderson','David','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dgrady97','Grady','David','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dgrady97','Grady','David','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jgrady','Grady','James','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jgrady','Grady','James','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jthompson','Thompson','John','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jthompson','Thompson','John','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kthompson','Thompson','Kiersten','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kthompson','Thompson','Kiersten','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kthompson','Thompson','Kiersten','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jpeterson','Peterson','John','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jpeterson','Peterson','John','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('lmorrison','Morrison','Lisa','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('lmorrison','Morrison','Lisa','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('glee','Lee','Greg','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('glee','Lee','Greg','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('lhenderson','Henderson','Lori','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('lhenderson','Henderson','Lori','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('lhenderson','Henderson','Lori','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('lhenderson','Henderson','Lori','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mscott','Scott','Marie','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ldavis','Davis','Lori','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ldavis','Davis','Lori','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ldavis','Davis','Lori','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jroberts','Roberts','James','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jroberts','Roberts','James','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jroberts','Roberts','James','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jroberts','Roberts','James','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('asmith','Smith','Ann','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mbrown','Brown','Mark','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mbrown','Brown','Mark','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mbrown','Brown','Mark','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kwhite110','White','Kim','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kwhite110','White','Kim','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kwhite110','White','Kim','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kwhite110','White','Kim','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mroberts111','Roberts','Mark','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mroberts111','Roberts','Mark','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mwhite','White','Mark','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mwhite','White','Mark','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mwhite','White','Mark','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jprice','Price','Jim','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jprice','Price','Jim','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('msmith','Smith','Michael','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('msmith','Smith','Michael','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('msmith','Smith','Michael','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('sclark','Clark','Sarah','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('sclark','Clark','Sarah','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('sclark','Clark','Sarah','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dvales','Vales','Donna','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dvales','Vales','Donna','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dvales','Vales','Donna','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kjohnson117','Johnson','Kim','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dsmith','Smith','David','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bwhite','White','Blake','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bwhite','White','Blake','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bwhite','White','Blake','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ldoe','Doe','Lori','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ldoe','Doe','Lori','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dlangenberg121','Langenberg','David','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('gwilliams','Williams','Greg','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('gwilliams','Williams','Greg','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kclark123','Clark','Karoline','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kclark123','Clark','Karoline','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kclark123','Clark','Karoline','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ewilliams','Williams','Eric','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('egonazles','Gonazles','Eric','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('egonazles','Gonazles','Eric','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('egonazles','Gonazles','Eric','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('rprice','Price','Robert','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('rprice','Price','Robert','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('rprice','Price','Robert','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('rprice','Price','Robert','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ewalters','Walters','Erik','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('clangenberg','Langenberg','Colin','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('clangenberg','Langenberg','Colin','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('cmorrison129','Morrison','Colin','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mbutler','Butler','Mary','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mbutler','Butler','Mary','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mbutler','Butler','Mary','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mbutler','Butler','Mary','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('smartinez','Martinez','Sarah','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('smartinez','Martinez','Sarah','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('smartinez','Martinez','Sarah','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('smartinez','Martinez','Sarah','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('klewis','Lewis','Karl','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('klewis','Lewis','Karl','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mwilliams','Williams','Marie','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mwilliams','Williams','Marie','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dsmith134','Smith','David','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dsmith134','Smith','David','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('gpeterson','Peterson','Greg','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('gpeterson','Peterson','Greg','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('gpeterson','Peterson','Greg','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('gpeterson','Peterson','Greg','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bgrady136','Grady','Betty','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bgrady136','Grady','Betty','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mthompson137','Thompson','Mark','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mthompson137','Thompson','Mark','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mthompson137','Thompson','Mark','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mroberts138','Roberts','Mary','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mroberts138','Roberts','Mary','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mroberts138','Roberts','Mary','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mroberts138','Roberts','Mary','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('janderson','Anderson','James','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('janderson','Anderson','James','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('janderson','Anderson','James','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('janderson','Anderson','James','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jscott140','Scott','Jo','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jscott140','Scott','Jo','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jscott140','Scott','Jo','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jscott140','Scott','Jo','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ddavis141','Davis','Donna','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ddavis141','Davis','Donna','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jbutler','Butler','Jennifer','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jbutler','Butler','Jennifer','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jlewis143','Lewis','Jo','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('janderson144','Anderson','John','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mlangenberg','Langenberg','Marie','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mlangenberg','Langenberg','Marie','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jthompson146','Thompson','Jennifer','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jthompson146','Thompson','Jennifer','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jthompson146','Thompson','Jennifer','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('hvales147','Vales','Heather','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jwhite','White','John','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jwhite','White','John','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jwhite','White','John','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jwhite','White','John','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('tgasper','Gasper','Thomas','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('tgasper','Gasper','Thomas','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('tgasper','Gasper','Thomas','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('tgasper','Gasper','Thomas','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bjohnson','Johnson','Bill','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mroberts151','Roberts','Mark','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mroberts151','Roberts','Mark','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('wthompson152','Thompson','William','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('wthompson152','Thompson','William','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('wthompson152','Thompson','William','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mdoe','Doe','Michael','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mdoe','Doe','Michael','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mdoe','Doe','Michael','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bgonazles','Gonazles','Bill','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bgonazles','Gonazles','Bill','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bgonazles','Gonazles','Bill','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mthompson155','Thompson','Mark','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mthompson155','Thompson','Mark','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dlee','Lee','David','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('broberts','Roberts','Bill','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('broberts','Roberts','Bill','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('broberts','Roberts','Bill','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jvales','Vales','John','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jvales','Vales','John','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jvales','Vales','John','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('wwilliams','Williams','William','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('wwilliams','Williams','William','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('wwilliams','Williams','William','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('wwilliams160','Williams','William','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('wwilliams160','Williams','William','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('wwilliams160','Williams','William','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ggasper','Gasper','Greg','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ggasper','Gasper','Greg','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('rlopez','Lopez','Robert','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('rlopez','Lopez','Robert','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('rlopez','Lopez','Robert','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('rlopez','Lopez','Robert','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mgrady','Grady','Michael','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('lpeterson','Peterson','Lisa','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('lpeterson','Peterson','Lisa','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('lpeterson','Peterson','Lisa','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ljohnson','Johnson','Lori','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ljohnson','Johnson','Lori','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('gscott','Scott','Greg','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mprice','Price','Marie','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mprice','Price','Marie','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bprice','Price','Bill','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('aanderson','Anderson','Ann','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('aanderson','Anderson','Ann','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('aanderson','Anderson','Ann','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('aanderson','Anderson','Ann','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bprice170','Price','Blake','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('hscott','Scott','Heather','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('hthompson','Thompson','Heather','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jmorrison173','Morrison','Jo','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jmorrison173','Morrison','Jo','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jmorrison173','Morrison','Jo','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mprice174','Price','Mary','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('hprice','Price','Heather','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kbutler','Butler','Karoline','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kbutler','Butler','Karoline','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kbutler','Butler','Karoline','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kbutler','Butler','Karoline','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bjohnson177','Johnson','Blake','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bjohnson177','Johnson','Blake','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jlee','Lee','Jennifer','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jlee','Lee','Jennifer','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jlee','Lee','Jennifer','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jlee','Lee','Jennifer','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('rwilliams','Williams','Robert','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('rwilliams','Williams','Robert','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('rwilliams','Williams','Robert','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jprice180','Price','Jo','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jprice180','Price','Jo','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kgasper','Gasper','Kim','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kgasper','Gasper','Kim','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kgasper','Gasper','Kim','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kgasper','Gasper','Kim','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('cthompson','Thompson','Colin','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('cthompson','Thompson','Colin','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ethompson183','Thompson','Eric','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ethompson183','Thompson','Eric','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ethompson183','Thompson','Eric','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ethompson183','Thompson','Eric','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bclark','Clark','Betty','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bclark','Clark','Betty','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bclark','Clark','Betty','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('llee','Lee','Lori','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('llee','Lee','Lori','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('llee','Lee','Lori','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kpeterson186','Peterson','Karl','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kpeterson186','Peterson','Karl','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kpeterson186','Peterson','Karl','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('wlee','Lee','William','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('wlee','Lee','William','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('wlee','Lee','William','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('gjohnson188','Johnson','Greg','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('gjohnson188','Johnson','Greg','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mlopez','Lopez','Michael','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mlopez','Lopez','Michael','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mlopez','Lopez','Michael','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mlopez','Lopez','Michael','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('sgrady','Grady','Sarah','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('sgrady','Grady','Sarah','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('pbrown','Brown','Paul','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('pbrown','Brown','Paul','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('pbrown','Brown','Paul','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mwilliams192','Williams','Mary','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mwilliams192','Williams','Mary','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mwilliams192','Williams','Mary','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jlewis193','Lewis','James','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jlewis193','Lewis','James','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('nbrown','Brown','Nancy','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('nbrown','Brown','Nancy','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jwalters','Walters','Jo','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jwalters','Walters','Jo','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('hdoe196','Doe','Heather','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mlewis197','Lewis','Michael','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mlewis197','Lewis','Michael','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mlewis197','Lewis','Michael','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('blewis','Lewis','Bill','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('blewis','Lewis','Bill','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('blewis','Lewis','Bill','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('blewis','Lewis','Bill','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mwalters','Walters','Michael','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mwalters','Walters','Michael','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mwalters','Walters','Michael','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mwalters','Walters','Michael','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('llopez','Lopez','Lisa','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('llopez','Lopez','Lisa','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('llopez','Lopez','Lisa','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jwalters201','Walters','James','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jwalters201','Walters','James','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jwalters201','Walters','James','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jwalters201','Walters','James','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kmorrison202','Morrison','Karoline','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kmorrison202','Morrison','Karoline','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kmorrison202','Morrison','Karoline','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kmorrison202','Morrison','Karoline','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bgrady203','Grady','Bill','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bgrady203','Grady','Bill','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('clewis','Lewis','Colin','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('hwhite205','White','Heather','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('hwhite205','White','Heather','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('hwhite205','White','Heather','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dprice','Price','David','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jlee207','Lee','John','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jlee207','Lee','John','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jlee207','Lee','John','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jbutler208','Butler','John','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bdavis','Davis','Betty','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bdavis','Davis','Betty','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bdavis','Davis','Betty','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bdavis','Davis','Betty','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jroberts210','Roberts','Jennifer','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jroberts210','Roberts','Jennifer','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jroberts210','Roberts','Jennifer','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('gjohnson211','Johnson','Greg','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('gjohnson211','Johnson','Greg','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('gjohnson211','Johnson','Greg','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jlangenberg','Langenberg','Jennifer','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jlangenberg','Langenberg','Jennifer','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jlangenberg','Langenberg','Jennifer','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jlangenberg','Langenberg','Jennifer','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dhenderson','Henderson','Donna','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dhenderson','Henderson','Donna','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dhenderson','Henderson','Donna','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dhenderson','Henderson','Donna','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('pmartinez','Martinez','Paul','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('pmartinez','Martinez','Paul','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('pmartinez','Martinez','Paul','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('pmartinez','Martinez','Paul','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ganderson','Anderson','Greg','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ganderson','Anderson','Greg','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ganderson','Anderson','Greg','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ganderson','Anderson','Greg','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mpeterson','Peterson','Mary','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mpeterson','Peterson','Mary','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mpeterson','Peterson','Mary','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mpeterson','Peterson','Mary','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('klopez217','Lopez','Karoline','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('klopez217','Lopez','Karoline','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('klopez217','Lopez','Karoline','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('klopez217','Lopez','Karoline','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('tgasper218','Gasper','Thomas','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('tgasper218','Gasper','Thomas','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('tgasper218','Gasper','Thomas','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('tgasper218','Gasper','Thomas','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('lsmith','Smith','Lori','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ebutler','Butler','Eric','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ebutler','Butler','Eric','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jvales221','Vales','Jim','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jvales221','Vales','Jim','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jvales221','Vales','Jim','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jvales222','Vales','James','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jvales222','Vales','James','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kjohnson223','Johnson','Karoline','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kjohnson223','Johnson','Karoline','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kscott','Scott','Kiersten','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dwilliams225','Williams','David','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bclark226','Clark','Betty','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bclark226','Clark','Betty','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mwhite227','White','Marie','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('danderson228','Anderson','David','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('danderson228','Anderson','David','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('danderson228','Anderson','David','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dgrady229','Grady','David','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dgrady229','Grady','David','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jgrady230','Grady','James','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jgrady230','Grady','James','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jgrady230','Grady','James','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jdoe','Doe','James','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jdoe','Doe','James','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jdoe','Doe','James','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jdoe','Doe','James','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dmorrison','Morrison','David','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mclark','Clark','Marie','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('plopez','Lopez','Paul','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('plopez','Lopez','Paul','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('plopez','Lopez','Paul','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('plopez','Lopez','Paul','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('hlewis','Lewis','Heather','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dsmith236','Smith','David','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dsmith236','Smith','David','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dsmith236','Smith','David','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dsmith236','Smith','David','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kbutler237','Butler','Kiersten','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kbutler237','Butler','Kiersten','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kbutler237','Butler','Kiersten','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kdavis','Davis','Kim','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kdavis','Davis','Kim','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kdoe','Doe','Kiersten','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kdoe','Doe','Kiersten','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kgrady','Grady','Karl','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kgrady','Grady','Karl','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jprice241','Price','James','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('shenderson','Henderson','Sarah','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('shenderson','Henderson','Sarah','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('shenderson','Henderson','Sarah','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kmorrison243','Morrison','Kiersten','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kmorrison243','Morrison','Kiersten','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mgonazles244','Gonazles','Mark','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('alewis','Lewis','Ann','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('alewis','Lewis','Ann','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('alewis','Lewis','Ann','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('alewis','Lewis','Ann','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mdavis','Davis','Michael','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mdavis','Davis','Michael','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('manderson','Anderson','Marie','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('manderson','Anderson','Marie','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bmorrison','Morrison','Blake','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('msmith249','Smith','Marie','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('msmith249','Smith','Marie','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jdoe250','Doe','James','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jdoe250','Doe','James','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jdoe250','Doe','James','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jgasper251','Gasper','James','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jgasper251','Gasper','James','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jgasper251','Gasper','James','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jscott252','Scott','Jo','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jscott252','Scott','Jo','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jscott252','Scott','Jo','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kwhite253','White','Karoline','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kwhite253','White','Karoline','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kwhite253','White','Karoline','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kwhite253','White','Karoline','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('wbrown254','Brown','William','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('wbrown254','Brown','William','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('wbrown254','Brown','William','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('wbrown254','Brown','William','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mpeterson255','Peterson','Mark','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mpeterson255','Peterson','Mark','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mpeterson255','Peterson','Mark','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mpeterson255','Peterson','Mark','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kthompson256','Thompson','Kiersten','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kthompson256','Thompson','Kiersten','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kthompson256','Thompson','Kiersten','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jscott257','Scott','Jo','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jscott257','Scott','Jo','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jscott257','Scott','Jo','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jscott257','Scott','Jo','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mlangenberg258','Langenberg','Mary','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('khenderson259','Henderson','Karoline','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('khenderson259','Henderson','Karoline','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('hbutler','Butler','Heather','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('hbutler','Butler','Heather','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mbutler261','Butler','Marie','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mbutler261','Butler','Marie','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mbutler261','Butler','Marie','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jmorrison262','Morrison','Jennifer','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jmorrison262','Morrison','Jennifer','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jmorrison262','Morrison','Jennifer','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jmorrison262','Morrison','Jennifer','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('rdavis','Davis','Robert','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('rdavis','Davis','Robert','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('rdavis','Davis','Robert','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('rdavis','Davis','Robert','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kbutler264','Butler','Kim','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kbutler264','Butler','Kim','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kbutler264','Butler','Kim','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kbutler264','Butler','Kim','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jwhite265','White','James','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jwhite265','White','James','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jwhite265','White','James','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jwhite265','White','James','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jwilliams','Williams','James','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('llangenberg','Langenberg','Lisa','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('llangenberg','Langenberg','Lisa','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('llangenberg','Langenberg','Lisa','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jhenderson','Henderson','John','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jhenderson','Henderson','John','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jlangenberg269','Langenberg','Jennifer','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jlangenberg269','Langenberg','Jennifer','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jlangenberg269','Langenberg','Jennifer','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mdoe270','Doe','Michael','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mdoe270','Doe','Michael','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mbrown271','Brown','Mark','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mbrown271','Brown','Mark','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mbrown271','Brown','Mark','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mbrown271','Brown','Mark','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jvales272','Vales','John','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('tdavis','Davis','Thomas','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('tdavis','Davis','Thomas','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ejohnson','Johnson','Eric','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ejohnson','Johnson','Eric','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jpeterson275','Peterson','John','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jpeterson275','Peterson','John','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jpeterson275','Peterson','John','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jpeterson275','Peterson','John','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('gsmith','Smith','Greg','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('gsmith','Smith','Greg','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('klopez278','Lopez','Kim','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('klopez278','Lopez','Kim','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('klopez278','Lopez','Kim','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('sclark279','Clark','Sarah','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('sclark279','Clark','Sarah','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('sclark279','Clark','Sarah','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('abrown','Brown','Ann','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('abrown','Brown','Ann','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jwhite281','White','Jim','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jwhite281','White','Jim','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jwhite281','White','Jim','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jwhite281','White','Jim','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('hgrady','Grady','Heather','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('hgrady','Grady','Heather','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('hgrady','Grady','Heather','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kwhite283','White','Kim','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kwhite283','White','Kim','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bsmith','Smith','Betty','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('elopez','Lopez','Eric','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('elopez','Lopez','Eric','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('elopez','Lopez','Eric','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('pclark','Clark','Paul','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('pclark','Clark','Paul','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('glee287','Lee','Greg','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('glee287','Lee','Greg','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('glee287','Lee','Greg','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('glee287','Lee','Greg','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jwhite288','White','Jennifer','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jwhite288','White','Jennifer','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jwhite288','White','Jennifer','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jwhite288','White','Jennifer','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('rdavis289','Davis','Robert','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('rdavis289','Davis','Robert','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jgasper290','Gasper','James','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('nwhite','White','Nancy','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('nwhite','White','Nancy','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('nwhite','White','Nancy','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('nwhite','White','Nancy','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kpeterson292','Peterson','Kiersten','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kpeterson292','Peterson','Kiersten','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('klewis293','Lewis','Kiersten','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jvales294','Vales','John','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jvales294','Vales','John','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jvales294','Vales','John','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jvales294','Vales','John','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('rdoe','Doe','Robert','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('rdoe','Doe','Robert','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('rdoe','Doe','Robert','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bbrown','Brown','Blake','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bbrown','Brown','Blake','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mlangenberg297','Langenberg','Mark','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mlangenberg297','Langenberg','Mark','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mlangenberg297','Langenberg','Mark','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mlangenberg297','Langenberg','Mark','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('broberts298','Roberts','Bill','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('broberts298','Roberts','Bill','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('broberts298','Roberts','Bill','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('broberts298','Roberts','Bill','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ldoe299','Doe','Lori','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ggasper300','Gasper','Greg','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ggasper300','Gasper','Greg','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ggasper300','Gasper','Greg','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('lroberts','Roberts','Lori','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('lroberts','Roberts','Lori','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('lroberts','Roberts','Lori','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('lroberts','Roberts','Lori','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kwhite302','White','Kiersten','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kwhite302','White','Kiersten','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kwhite302','White','Kiersten','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kwhite302','White','Kiersten','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dwilliams303','Williams','David','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bpeterson304','Peterson','Bill','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bpeterson304','Peterson','Bill','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bpeterson304','Peterson','Bill','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bpeterson304','Peterson','Bill','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('swalters','Walters','Sarah','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('swalters','Walters','Sarah','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('swalters','Walters','Sarah','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('swalters','Walters','Sarah','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('edavis','Davis','Eric','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('edavis','Davis','Eric','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('edavis','Davis','Eric','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bthompson','Thompson','Blake','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bthompson','Thompson','Blake','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bthompson','Thompson','Blake','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bthompson','Thompson','Blake','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('slangenberg','Langenberg','Sarah','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('slangenberg','Langenberg','Sarah','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('slangenberg','Langenberg','Sarah','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dwilliams309','Williams','Donna','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dwilliams309','Williams','Donna','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('cpeterson','Peterson','Colin','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mlee311','Lee','Mary','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('elopez312','Lopez','Eric','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('elopez312','Lopez','Eric','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('pmartinez313','Martinez','Paul','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('pmartinez313','Martinez','Paul','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('pmartinez313','Martinez','Paul','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('lwilliams314','Williams','Lisa','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('lwilliams314','Williams','Lisa','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('lwilliams314','Williams','Lisa','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kpeterson315','Peterson','Kiersten','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kpeterson315','Peterson','Kiersten','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kpeterson315','Peterson','Kiersten','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kpeterson315','Peterson','Kiersten','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kvales316','Vales','Kiersten','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('hbutler317','Butler','Heather','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('hbutler317','Butler','Heather','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('hbutler317','Butler','Heather','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('hbutler317','Butler','Heather','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jwalters318','Walters','John','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kthompson319','Thompson','Kiersten','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kthompson319','Thompson','Kiersten','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kthompson319','Thompson','Kiersten','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kthompson319','Thompson','Kiersten','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mscott320','Scott','Mary','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('rbutler','Butler','Robert','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('rbutler','Butler','Robert','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('rbutler','Butler','Robert','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('rbutler','Butler','Robert','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mclark322','Clark','Mark','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mclark322','Clark','Mark','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('hhenderson','Henderson','Heather','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('hhenderson','Henderson','Heather','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('hdoe324','Doe','Heather','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('hdoe324','Doe','Heather','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('hdoe324','Doe','Heather','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('hdoe324','Doe','Heather','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mdoe325','Doe','Mark','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mdoe325','Doe','Mark','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('klopez326','Lopez','Kiersten','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('klopez326','Lopez','Kiersten','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('klopez326','Lopez','Kiersten','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dlewis327','Lewis','David','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dlewis327','Lewis','David','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dlewis327','Lewis','David','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('wlee328','Lee','William','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('wlee328','Lee','William','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('wlee328','Lee','William','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mthompson329','Thompson','Mary','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('gbrown','Brown','Greg','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('gbrown','Brown','Greg','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('gbrown','Brown','Greg','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('gbrown','Brown','Greg','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('rmartinez331','Martinez','Robert','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('rmartinez331','Martinez','Robert','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('klee','Lee','Karl','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mjohnson','Johnson','Marie','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('lwilliams334','Williams','Lisa','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('lwilliams334','Williams','Lisa','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('lwilliams334','Williams','Lisa','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('tbrown','Brown','Thomas','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('tbrown','Brown','Thomas','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('tbrown','Brown','Thomas','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('tbrown','Brown','Thomas','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jwalters336','Walters','James','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jwalters336','Walters','James','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jwalters336','Walters','James','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('lbutler','Butler','Lisa','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('lbutler','Butler','Lisa','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('lbutler','Butler','Lisa','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('lbutler','Butler','Lisa','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kbrown','Brown','Kiersten','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kbrown','Brown','Kiersten','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('pjohnson','Johnson','Paul','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('pjohnson','Johnson','Paul','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jprice340','Price','John','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jprice341','Price','Jim','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('lhenderson342','Henderson','Lisa','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('lhenderson342','Henderson','Lisa','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kwhite343','White','Kim','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('klopez344','Lopez','Karl','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bgonazles345','Gonazles','Bill','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('apeterson','Peterson','Ann','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dbutler347','Butler','David','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('speterson','Peterson','Sarah','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jpeterson349','Peterson','James','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jpeterson349','Peterson','James','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jpeterson349','Peterson','James','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('gjohnson350','Johnson','Greg','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('gjohnson350','Johnson','Greg','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('gjohnson350','Johnson','Greg','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('lthompson','Thompson','Lisa','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('lthompson','Thompson','Lisa','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('nclark','Clark','Nancy','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('nclark','Clark','Nancy','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('swilliams','Williams','Sarah','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jprice354','Price','Jennifer','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jprice354','Price','Jennifer','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('lclark','Clark','Lori','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('lclark','Clark','Lori','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ghenderson','Henderson','Greg','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ghenderson','Henderson','Greg','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ghenderson','Henderson','Greg','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('egonazles357','Gonazles','Eric','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('egonazles357','Gonazles','Eric','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('egonazles357','Gonazles','Eric','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('egonazles357','Gonazles','Eric','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dlangenberg358','Langenberg','Donna','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dlangenberg358','Langenberg','Donna','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dlangenberg358','Langenberg','Donna','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('cbrown','Brown','Colin','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('cbrown','Brown','Colin','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('cbrown','Brown','Colin','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('twalters','Walters','Thomas','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('twalters','Walters','Thomas','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('twalters','Walters','Thomas','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('swhite','White','Sarah','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('swhite','White','Sarah','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('swhite','White','Sarah','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('swhite','White','Sarah','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('rwalters','Walters','Robert','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('rwalters','Walters','Robert','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('rwalters','Walters','Robert','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('rwalters','Walters','Robert','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('eroberts','Roberts','Erik','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bvales','Vales','Blake','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bvales','Vales','Blake','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bdoe365','Doe','Betty','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bdoe365','Doe','Betty','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bdoe365','Doe','Betty','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bdoe365','Doe','Betty','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('nlee366','Lee','Nancy','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('nlee366','Lee','Nancy','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('nlee366','Lee','Nancy','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('tmorrison367','Morrison','Thomas','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kbutler368','Butler','Kiersten','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kbutler368','Butler','Kiersten','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bdavis369','Davis','Bill','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bdavis369','Davis','Bill','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bdavis369','Davis','Bill','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kdavis370','Davis','Kiersten','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('llewis','Lewis','Lori','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('djohnson','Johnson','Donna','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('djohnson','Johnson','Donna','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('djohnson','Johnson','Donna','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jlangenberg373','Langenberg','James','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jlangenberg373','Langenberg','James','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jlangenberg373','Langenberg','James','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jlangenberg373','Langenberg','James','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('klangenberg','Langenberg','Karoline','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jthompson375','Thompson','John','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jthompson375','Thompson','John','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jgonazles','Gonazles','Jennifer','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mscott377','Scott','Mark','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mscott377','Scott','Mark','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mscott377','Scott','Mark','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mscott377','Scott','Mark','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jsmith378','Smith','Jennifer','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jsmith378','Smith','Jennifer','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mroberts379','Roberts','Marie','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mroberts379','Roberts','Marie','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kprice','Price','Kiersten','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('tclark','Clark','Thomas','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('egasper','Gasper','Erik','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('egasper','Gasper','Erik','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('egasper','Gasper','Erik','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('egasper','Gasper','Erik','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jjohnson383','Johnson','James','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jjohnson383','Johnson','James','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jjohnson383','Johnson','James','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jjohnson383','Johnson','James','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('cdavis','Davis','Colin','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('cdavis','Davis','Colin','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('cdavis','Davis','Colin','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('escott','Scott','Eric','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('escott','Scott','Eric','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('escott','Scott','Eric','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('escott','Scott','Eric','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kmartinez386','Martinez','Karoline','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kmartinez386','Martinez','Karoline','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('lgrady','Grady','Lori','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jmartinez388','Martinez','Jo','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('alangenberg','Langenberg','Ann','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('alangenberg','Langenberg','Ann','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('blewis390','Lewis','Betty','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('pjohnson391','Johnson','Paul','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('pjohnson391','Johnson','Paul','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('pjohnson391','Johnson','Paul','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('llee392','Lee','Lori','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('llee392','Lee','Lori','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('llee392','Lee','Lori','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('slewis','Lewis','Sarah','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('slewis','Lewis','Sarah','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('nwalters','Walters','Nancy','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('nwalters','Walters','Nancy','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('hscott395','Scott','Heather','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('hscott395','Scott','Heather','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('hscott395','Scott','Heather','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('edavis396','Davis','Erik','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dlangenberg397','Langenberg','Donna','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dlangenberg397','Langenberg','Donna','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dlangenberg397','Langenberg','Donna','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('plangenberg398','Langenberg','Paul','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('plangenberg398','Langenberg','Paul','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('plangenberg398','Langenberg','Paul','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mscott399','Scott','Michael','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mscott399','Scott','Michael','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mscott399','Scott','Michael','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mscott399','Scott','Michael','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jgasper400','Gasper','Jo','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jgasper400','Gasper','Jo','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kmartinez401','Martinez','Karoline','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kmartinez401','Martinez','Karoline','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('cwalters','Walters','Colin','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('cgasper','Gasper','Colin','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('cgasper','Gasper','Colin','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('cgasper','Gasper','Colin','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('cgasper','Gasper','Colin','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jwilliams404','Williams','James','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jwilliams404','Williams','James','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jwilliams404','Williams','James','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jwilliams404','Williams','James','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('rwalters405','Walters','Robert','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('rwalters405','Walters','Robert','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('rwalters405','Walters','Robert','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kvales406','Vales','Karl','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bscott','Scott','Bill','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bscott','Scott','Bill','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('hmorrison408','Morrison','Heather','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('hmorrison408','Morrison','Heather','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('hmorrison408','Morrison','Heather','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('hmorrison408','Morrison','Heather','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('eanderson','Anderson','Eric','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mlangenberg410','Langenberg','Mark','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('msmith411','Smith','Mark','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('msmith411','Smith','Mark','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('msmith411','Smith','Mark','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('wpeterson','Peterson','William','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('wpeterson','Peterson','William','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('wpeterson','Peterson','William','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('wpeterson','Peterson','William','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mgasper413','Gasper','Marie','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mgasper413','Gasper','Marie','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mgasper413','Gasper','Marie','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mgasper413','Gasper','Marie','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bvales414','Vales','Blake','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bvales414','Vales','Blake','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bvales414','Vales','Blake','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bgrady415','Grady','Blake','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bgrady415','Grady','Blake','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bgrady415','Grady','Blake','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bgrady415','Grady','Blake','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('plee','Lee','Paul','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('plee','Lee','Paul','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('plee','Lee','Paul','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kwilliams','Williams','Kim','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kwilliams','Williams','Kim','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kwilliams','Williams','Kim','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kwilliams','Williams','Kim','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('wwilliams418','Williams','William','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('wwilliams418','Williams','William','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('wwilliams418','Williams','William','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jbutler419','Butler','Jennifer','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('hvales420','Vales','Heather','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('hvales420','Vales','Heather','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('hvales420','Vales','Heather','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kroberts421','Roberts','Karl','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bdoe422','Doe','Betty','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bdoe422','Doe','Betty','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bdoe422','Doe','Betty','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dclark','Clark','David','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dclark','Clark','David','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mhenderson','Henderson','Michael','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mhenderson','Henderson','Michael','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mhenderson','Henderson','Michael','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dhenderson425','Henderson','David','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dhenderson425','Henderson','David','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dhenderson425','Henderson','David','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dhenderson425','Henderson','David','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dgonazles','Gonazles','David','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dgonazles','Gonazles','David','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dgrady427','Grady','David','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jjohnson428','Johnson','Jennifer','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jjohnson428','Johnson','Jennifer','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jjohnson428','Johnson','Jennifer','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jjohnson428','Johnson','Jennifer','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jlewis429','Lewis','Jennifer','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('klangenberg430','Langenberg','Kim','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('klangenberg430','Langenberg','Kim','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('klangenberg430','Langenberg','Kim','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('klangenberg430','Langenberg','Kim','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ddoe431','Doe','David','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ddoe431','Doe','David','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('escott432','Scott','Eric','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('escott432','Scott','Eric','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('escott432','Scott','Eric','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('lwalters','Walters','Lisa','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('lwalters','Walters','Lisa','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('gsmith434','Smith','Greg','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('gsmith434','Smith','Greg','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('gsmith434','Smith','Greg','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kwalters','Walters','Karl','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('tmorrison436','Morrison','Thomas','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('tmorrison436','Morrison','Thomas','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('tmorrison436','Morrison','Thomas','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bbutler437','Butler','Bill','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mgonazles438','Gonazles','Mark','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('rwalters439','Walters','Robert','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('rwalters439','Walters','Robert','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kclark440','Clark','Karl','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('nvales','Vales','Nancy','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('nvales','Vales','Nancy','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jwalters442','Walters','James','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jwalters442','Walters','James','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jwalters442','Walters','James','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bwilliams','Williams','Bill','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jgrady444','Grady','Jim','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jgrady444','Grady','Jim','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jgrady444','Grady','Jim','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('escott445','Scott','Erik','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('escott445','Scott','Erik','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bclark446','Clark','Bill','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bclark446','Clark','Bill','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bclark446','Clark','Bill','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bclark446','Clark','Bill','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('klopez447','Lopez','Kiersten','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('klopez447','Lopez','Kiersten','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('klopez447','Lopez','Kiersten','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('klopez447','Lopez','Kiersten','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('slee','Lee','Sarah','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dwilliams449','Williams','Donna','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dwilliams449','Williams','Donna','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dwilliams449','Williams','Donna','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dwilliams449','Williams','Donna','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('klewis450','Lewis','Kim','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('elangenberg','Langenberg','Eric','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('elangenberg','Langenberg','Eric','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('elangenberg','Langenberg','Eric','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('elangenberg','Langenberg','Eric','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('rvales','Vales','Robert','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('rvales','Vales','Robert','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('rvales','Vales','Robert','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('rvales','Vales','Robert','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jgasper453','Gasper','Jo','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mgasper454','Gasper','Mark','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mgasper454','Gasper','Mark','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mgasper454','Gasper','Mark','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mgasper454','Gasper','Mark','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jclark455','Clark','James','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bgasper456','Gasper','Betty','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bgasper456','Gasper','Betty','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bgasper456','Gasper','Betty','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bgasper456','Gasper','Betty','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bwilliams457','Williams','Blake','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kprice458','Price','Karl','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kprice458','Price','Karl','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ksmith','Smith','Kiersten','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ksmith','Smith','Kiersten','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ksmith','Smith','Kiersten','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ksmith','Smith','Kiersten','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('lbutler460','Butler','Lori','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('lbutler460','Butler','Lori','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('lbutler460','Butler','Lori','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mlewis461','Lewis','Mark','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mlewis461','Lewis','Mark','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mlewis461','Lewis','Mark','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mlewis461','Lewis','Mark','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jmorrison462','Morrison','Jo','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jmorrison462','Morrison','Jo','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jmorrison462','Morrison','Jo','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('msmith463','Smith','Mary','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('blopez','Lopez','Blake','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('hdavis','Davis','Heather','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bwilliams466','Williams','Betty','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bwilliams466','Williams','Betty','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bwilliams466','Williams','Betty','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bwilliams466','Williams','Betty','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('gdavis','Davis','Greg','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('gdavis','Davis','Greg','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('gdavis','Davis','Greg','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('gdavis','Davis','Greg','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mgonazles468','Gonazles','Michael','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mgonazles468','Gonazles','Michael','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mgonazles468','Gonazles','Michael','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mlopez469','Lopez','Mary','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mlopez469','Lopez','Mary','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mlopez469','Lopez','Mary','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('eroberts470','Roberts','Eric','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('eroberts470','Roberts','Eric','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('eroberts470','Roberts','Eric','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('eroberts470','Roberts','Eric','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bsmith471','Smith','Blake','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bsmith471','Smith','Blake','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bsmith471','Smith','Blake','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bsmith471','Smith','Blake','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('rwilliams472','Williams','Robert','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('rwilliams472','Williams','Robert','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('rwilliams472','Williams','Robert','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('rwilliams472','Williams','Robert','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jdavis','Davis','Jennifer','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jdavis','Davis','Jennifer','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('egrady','Grady','Erik','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dpeterson475','Peterson','Donna','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dpeterson475','Peterson','Donna','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dpeterson475','Peterson','Donna','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('lwilliams476','Williams','Lisa','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('lwilliams476','Williams','Lisa','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('lwilliams476','Williams','Lisa','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('lwilliams476','Williams','Lisa','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('eroberts477','Roberts','Erik','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('eroberts477','Roberts','Erik','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('pvales','Vales','Paul','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('pvales','Vales','Paul','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jscott479','Scott','Jim','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bdavis480','Davis','Betty','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jgrady481','Grady','Jim','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jgrady481','Grady','Jim','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('nbrown482','Brown','Nancy','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('nbrown482','Brown','Nancy','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('nbrown482','Brown','Nancy','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('nbrown482','Brown','Nancy','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('blee483','Lee','Betty','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('blee483','Lee','Betty','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jclark484','Clark','Jim','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jclark484','Clark','Jim','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jclark484','Clark','Jim','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dbrown','Brown','David','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dbrown','Brown','David','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('pgonazles','Gonazles','Paul','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('pgonazles','Gonazles','Paul','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('pgonazles','Gonazles','Paul','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mwhite487','White','Mark','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mwhite487','White','Mark','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mwhite487','White','Mark','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mwhite487','White','Mark','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('svales488','Vales','Sarah','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('svales488','Vales','Sarah','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('svales488','Vales','Sarah','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('svales488','Vales','Sarah','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('egasper489','Gasper','Eric','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kdoe490','Doe','Kim','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kdoe490','Doe','Kim','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bmorrison491','Morrison','Bill','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bmorrison491','Morrison','Bill','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('lvales','Vales','Lori','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('lvales','Vales','Lori','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('lvales','Vales','Lori','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('hdavis493','Davis','Heather','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jthompson494','Thompson','James','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jthompson494','Thompson','James','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kdoe495','Doe','Karl','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kwilliams496','Williams','Kim','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('egasper497','Gasper','Erik','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('pvales498','Vales','Paul','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('sscott','Scott','Sarah','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('sscott','Scott','Sarah','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('tmartinez','Martinez','Thomas','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mvales501','Vales','Marie','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mvales501','Vales','Marie','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mvales501','Vales','Marie','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mvales501','Vales','Marie','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mhenderson502','Henderson','Mark','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mdavis503','Davis','Mark','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mdavis503','Davis','Mark','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mdoe504','Doe','Mary','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mdoe504','Doe','Mary','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mdoe504','Doe','Mary','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bgrady505','Grady','Betty','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bgrady505','Grady','Betty','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bgrady505','Grady','Betty','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mmartinez506','Martinez','Michael','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mmartinez506','Martinez','Michael','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bwalters','Walters','Betty','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bwalters','Walters','Betty','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bwalters','Walters','Betty','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bwalters','Walters','Betty','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('avales508','Vales','Ann','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('avales508','Vales','Ann','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('avales508','Vales','Ann','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('avales508','Vales','Ann','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dlangenberg509','Langenberg','David','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dlangenberg509','Langenberg','David','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('tlopez','Lopez','Thomas','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('tlopez','Lopez','Thomas','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('tlopez','Lopez','Thomas','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('lclark511','Clark','Lisa','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('lclark511','Clark','Lisa','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('panderson','Anderson','Paul','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('panderson','Anderson','Paul','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('panderson','Anderson','Paul','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bjohnson513','Johnson','Bill','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bjohnson513','Johnson','Bill','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bjohnson513','Johnson','Bill','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bjohnson513','Johnson','Bill','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('wlopez','Lopez','William','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('tmartinez515','Martinez','Thomas','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('tmartinez515','Martinez','Thomas','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('wclark','Clark','William','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('wclark','Clark','William','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('wclark','Clark','William','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('wclark','Clark','William','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jwilliams517','Williams','Jim','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('hwilliams','Williams','Heather','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('hwilliams','Williams','Heather','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('hwilliams','Williams','Heather','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('llopez519','Lopez','Lori','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('klopez520','Lopez','Karoline','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('klopez520','Lopez','Karoline','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('klopez520','Lopez','Karoline','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('tlee','Lee','Thomas','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('tlee','Lee','Thomas','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('tlee','Lee','Thomas','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('tlee','Lee','Thomas','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mscott522','Scott','Mary','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mscott522','Scott','Mary','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('danderson523','Anderson','David','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('danderson523','Anderson','David','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jgonazles524','Gonazles','Jim','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('hgasper','Gasper','Heather','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('hgasper','Gasper','Heather','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('hgasper','Gasper','Heather','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ehenderson','Henderson','Eric','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ehenderson','Henderson','Eric','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ehenderson','Henderson','Eric','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bscott527','Scott','Bill','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bscott527','Scott','Bill','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ewhite','White','Eric','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ewhite','White','Eric','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('sroberts','Roberts','Sarah','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('pbutler','Butler','Paul','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('gdavis531','Davis','Greg','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('wjohnson532','Johnson','William','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('escott533','Scott','Eric','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('escott533','Scott','Eric','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('escott533','Scott','Eric','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('escott533','Scott','Eric','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kmartinez534','Martinez','Karl','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kmartinez534','Martinez','Karl','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kmartinez534','Martinez','Karl','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kmartinez534','Martinez','Karl','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kbrown535','Brown','Kiersten','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kbrown535','Brown','Kiersten','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jlangenberg536','Langenberg','John','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jlangenberg536','Langenberg','John','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('gdavis537','Davis','Greg','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('gdavis537','Davis','Greg','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('gdavis537','Davis','Greg','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('gdavis537','Davis','Greg','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('wdoe','Doe','William','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('wdoe','Doe','William','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('wdoe','Doe','William','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kthompson539','Thompson','Kiersten','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kthompson539','Thompson','Kiersten','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ldavis540','Davis','Lisa','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ldavis540','Davis','Lisa','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ldavis540','Davis','Lisa','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bmartinez','Martinez','Blake','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bmartinez','Martinez','Blake','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('lroberts542','Roberts','Lisa','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('lroberts542','Roberts','Lisa','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('lroberts542','Roberts','Lisa','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('lroberts542','Roberts','Lisa','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ksmith543','Smith','Karl','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ksmith543','Smith','Karl','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ksmith543','Smith','Karl','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ksmith543','Smith','Karl','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jclark544','Clark','John','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jclark544','Clark','John','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jbutler545','Butler','Jennifer','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jbutler545','Butler','Jennifer','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jbutler545','Butler','Jennifer','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jgrady546','Grady','John','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jgrady546','Grady','John','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jlee547','Lee','Jennifer','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jlee547','Lee','Jennifer','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jlee547','Lee','Jennifer','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jlee547','Lee','Jennifer','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('csmith','Smith','Colin','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('csmith','Smith','Colin','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('csmith','Smith','Colin','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('csmith','Smith','Colin','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('tpeterson','Peterson','Thomas','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mgonazles550','Gonazles','Marie','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mgonazles550','Gonazles','Marie','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mgonazles550','Gonazles','Marie','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mgonazles550','Gonazles','Marie','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bwhite551','White','Bill','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bwhite551','White','Bill','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('nhenderson552','Henderson','Nancy','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('nhenderson552','Henderson','Nancy','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('blewis553','Lewis','Bill','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('blewis553','Lewis','Bill','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('blewis553','Lewis','Bill','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mjohnson554','Johnson','Michael','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mjohnson554','Johnson','Michael','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ganderson555','Anderson','Greg','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ganderson555','Anderson','Greg','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ganderson555','Anderson','Greg','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('slewis556','Lewis','Sarah','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('slewis556','Lewis','Sarah','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('slewis556','Lewis','Sarah','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dvales557','Vales','Donna','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dvales557','Vales','Donna','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dvales557','Vales','Donna','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jlopez558','Lopez','John','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jlopez558','Lopez','John','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jlopez558','Lopez','John','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jlopez558','Lopez','John','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kmartinez559','Martinez','Karl','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kmartinez559','Martinez','Karl','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kmartinez559','Martinez','Karl','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kmartinez559','Martinez','Karl','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kthompson560','Thompson','Karl','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kroberts561','Roberts','Karoline','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kroberts561','Roberts','Karoline','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kroberts561','Roberts','Karoline','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kroberts561','Roberts','Karoline','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mbrown562','Brown','Mary','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('blopez563','Lopez','Betty','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('blopez563','Lopez','Betty','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('blopez563','Lopez','Betty','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jroberts564','Roberts','Jo','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jroberts564','Roberts','Jo','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jroberts564','Roberts','Jo','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jroberts564','Roberts','Jo','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jlopez565','Lopez','Jennifer','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jlopez565','Lopez','Jennifer','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bwalters566','Walters','Blake','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bwalters566','Walters','Blake','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bwalters566','Walters','Blake','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kvales567','Vales','Karoline','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mlopez568','Lopez','Michael','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mlopez568','Lopez','Michael','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mlopez568','Lopez','Michael','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mlopez568','Lopez','Michael','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('tmorrison569','Morrison','Thomas','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('tmorrison569','Morrison','Thomas','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('tmorrison569','Morrison','Thomas','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('tmorrison569','Morrison','Thomas','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bdavis570','Davis','Blake','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bdavis570','Davis','Blake','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bdavis570','Davis','Blake','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('sdavis','Davis','Sarah','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('sdavis','Davis','Sarah','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('sdavis','Davis','Sarah','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('banderson572','Anderson','Blake','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('banderson572','Anderson','Blake','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('banderson572','Anderson','Blake','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('wanderson','Anderson','William','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('wanderson','Anderson','William','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('wanderson','Anderson','William','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('wanderson','Anderson','William','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bprice574','Price','Bill','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bprice574','Price','Bill','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bprice574','Price','Bill','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bprice574','Price','Bill','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jbutler575','Butler','Jennifer','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jbutler575','Butler','Jennifer','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jbutler575','Butler','Jennifer','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jbutler575','Butler','Jennifer','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jscott576','Scott','Jennifer','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jscott576','Scott','Jennifer','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jscott576','Scott','Jennifer','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ddoe577','Doe','David','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ddoe577','Doe','David','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('tdavis578','Davis','Thomas','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('tdavis578','Davis','Thomas','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('tdavis578','Davis','Thomas','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('tdavis578','Davis','Thomas','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('slangenberg579','Langenberg','Sarah','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('slangenberg579','Langenberg','Sarah','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bvales580','Vales','Betty','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('lpeterson581','Peterson','Lori','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('lpeterson581','Peterson','Lori','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('lpeterson581','Peterson','Lori','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bmartinez582','Martinez','Blake','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bmartinez582','Martinez','Blake','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bmartinez582','Martinez','Blake','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('asmith583','Smith','Ann','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('asmith583','Smith','Ann','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('asmith583','Smith','Ann','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('aprice','Price','Ann','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('aprice','Price','Ann','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ehenderson585','Henderson','Eric','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('lmorrison586','Morrison','Lisa','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('lmorrison586','Morrison','Lisa','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('chenderson','Henderson','Colin','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('lbrown','Brown','Lori','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('lbrown','Brown','Lori','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('lbrown','Brown','Lori','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('lbrown','Brown','Lori','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('psmith','Smith','Paul','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('klee590','Lee','Karl','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('klee590','Lee','Karl','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kdoe591','Doe','Karl','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kdoe591','Doe','Karl','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kdoe591','Doe','Karl','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kdoe591','Doe','Karl','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ldoe592','Doe','Lisa','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mvales593','Vales','Marie','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ahenderson594','Henderson','Ann','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ahenderson594','Henderson','Ann','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('aroberts','Roberts','Ann','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('aroberts','Roberts','Ann','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('aroberts','Roberts','Ann','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dthompson','Thompson','David','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dthompson','Thompson','David','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dbrown597','Brown','Donna','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dbrown597','Brown','Donna','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dbrown597','Brown','Donna','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('tmartinez598','Martinez','Thomas','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('tmartinez598','Martinez','Thomas','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kbrown599','Brown','Karl','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kbrown599','Brown','Karl','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('pclark600','Clark','Paul','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('pclark600','Clark','Paul','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('pclark600','Clark','Paul','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mprice601','Price','Michael','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('lbutler602','Butler','Lisa','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jhenderson603','Henderson','Jennifer','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jhenderson603','Henderson','Jennifer','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kscott604','Scott','Karoline','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kscott604','Scott','Karoline','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kscott604','Scott','Karoline','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ddoe605','Doe','David','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ddoe605','Doe','David','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('djohnson606','Johnson','David','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('pbutler607','Butler','Paul','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('pbutler607','Butler','Paul','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('pbutler607','Butler','Paul','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('pbutler607','Butler','Paul','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jbutler608','Butler','Jennifer','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jbutler608','Butler','Jennifer','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jbutler608','Butler','Jennifer','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jbutler608','Butler','Jennifer','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ksmith609','Smith','Kim','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ksmith609','Smith','Kim','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jpeterson610','Peterson','James','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kbutler611','Butler','Karl','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kbutler611','Butler','Karl','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kbutler611','Butler','Karl','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('wwhite','White','William','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('wwhite','White','William','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dpeterson613','Peterson','David','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dpeterson613','Peterson','David','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dpeterson613','Peterson','David','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dpeterson613','Peterson','David','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('klopez614','Lopez','Karl','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('klopez614','Lopez','Karl','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('klopez614','Lopez','Karl','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('tjohnson','Johnson','Thomas','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mlee616','Lee','Mark','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mlee616','Lee','Mark','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jprice617','Price','Jennifer','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jprice617','Price','Jennifer','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jprice617','Price','Jennifer','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jprice617','Price','Jennifer','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ghenderson618','Henderson','Greg','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('rwalters619','Walters','Robert','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('rwalters619','Walters','Robert','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bmorrison620','Morrison','Betty','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bmorrison620','Morrison','Betty','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('landerson','Anderson','Lisa','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('landerson','Anderson','Lisa','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('landerson','Anderson','Lisa','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('landerson','Anderson','Lisa','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('landerson622','Anderson','Lori','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('landerson622','Anderson','Lori','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('landerson622','Anderson','Lori','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('landerson622','Anderson','Lori','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('pprice','Price','Paul','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('pprice','Price','Paul','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('nsmith','Smith','Nancy','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('nsmith','Smith','Nancy','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('nsmith','Smith','Nancy','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('nsmith','Smith','Nancy','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jpeterson625','Peterson','James','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jpeterson625','Peterson','James','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jpeterson625','Peterson','James','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jpeterson625','Peterson','James','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mlopez626','Lopez','Mary','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mlopez626','Lopez','Mary','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mlopez626','Lopez','Mary','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mlopez626','Lopez','Mary','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dvales627','Vales','Donna','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dvales627','Vales','Donna','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dvales627','Vales','Donna','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dvales627','Vales','Donna','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ethompson628','Thompson','Erik','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('rdoe629','Doe','Robert','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('rdoe629','Doe','Robert','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('rdoe629','Doe','Robert','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('rdoe629','Doe','Robert','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('cjohnson','Johnson','Colin','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('cjohnson','Johnson','Colin','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('cjohnson','Johnson','Colin','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('cjohnson','Johnson','Colin','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mwilliams631','Williams','Michael','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mwilliams631','Williams','Michael','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mwilliams631','Williams','Michael','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mwilliams631','Williams','Michael','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jpeterson632','Peterson','John','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bgonazles633','Gonazles','Bill','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bgonazles633','Gonazles','Bill','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('danderson634','Anderson','David','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kwalters635','Walters','Kim','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kwalters635','Walters','Kim','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kwalters635','Walters','Kim','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kwalters635','Walters','Kim','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('adoe','Doe','Ann','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('adoe','Doe','Ann','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('cdoe','Doe','Colin','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ddoe638','Doe','David','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('edavis639','Davis','Erik','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('edavis639','Davis','Erik','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('edavis639','Davis','Erik','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('edavis639','Davis','Erik','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('hwhite640','White','Heather','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dprice641','Price','David','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dprice641','Price','David','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dprice641','Price','David','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dprice641','Price','David','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('klopez642','Lopez','Kim','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('klopez642','Lopez','Kim','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('klopez642','Lopez','Kim','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('klopez642','Lopez','Kim','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('abrown643','Brown','Ann','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mwhite644','White','Mary','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mwhite644','White','Mary','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kwhite645','White','Kiersten','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kwhite645','White','Kiersten','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kwhite645','White','Kiersten','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kwhite645','White','Kiersten','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('edoe','Doe','Erik','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mgonazles647','Gonazles','Mark','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mgonazles647','Gonazles','Mark','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mgonazles647','Gonazles','Mark','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jhenderson648','Henderson','James','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jhenderson648','Henderson','James','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bsmith649','Smith','Bill','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bsmith649','Smith','Bill','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bsmith649','Smith','Bill','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('lmorrison650','Morrison','Lisa','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('lmorrison650','Morrison','Lisa','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('lmorrison650','Morrison','Lisa','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('llangenberg651','Langenberg','Lori','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('llangenberg651','Langenberg','Lori','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('llangenberg651','Langenberg','Lori','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('llangenberg651','Langenberg','Lori','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jwalters652','Walters','Jim','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jwalters652','Walters','Jim','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('tjohnson653','Johnson','Thomas','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('tjohnson653','Johnson','Thomas','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('tjohnson653','Johnson','Thomas','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jwalters654','Walters','Jo','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jwalters654','Walters','Jo','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bmorrison655','Morrison','Betty','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mclark656','Clark','Michael','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mclark656','Clark','Michael','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mclark656','Clark','Michael','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mclark656','Clark','Michael','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ewilliams657','Williams','Erik','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ewilliams657','Williams','Erik','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ewilliams657','Williams','Erik','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jlewis658','Lewis','John','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jlewis658','Lewis','John','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kgrady659','Grady','Kiersten','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kgrady659','Grady','Kiersten','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('wmartinez','Martinez','William','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('wmartinez','Martinez','William','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('pwilliams','Williams','Paul','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('pwilliams','Williams','Paul','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kjohnson662','Johnson','Kim','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kjohnson662','Johnson','Kim','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kjohnson662','Johnson','Kim','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('smartinez663','Martinez','Sarah','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('smartinez663','Martinez','Sarah','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('smartinez663','Martinez','Sarah','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mvales664','Vales','Marie','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('klangenberg665','Langenberg','Karl','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('msmith666','Smith','Marie','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mvales667','Vales','Mark','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jwalters668','Walters','James','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jwalters668','Walters','James','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jwalters668','Walters','James','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jwalters668','Walters','James','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('pgonazles669','Gonazles','Paul','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('pgonazles669','Gonazles','Paul','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dvales670','Vales','Donna','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dvales670','Vales','Donna','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dclark671','Clark','David','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bdoe672','Doe','Betty','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bdoe672','Doe','Betty','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bdoe672','Doe','Betty','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mbrown673','Brown','Mark','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mbrown673','Brown','Mark','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mbrown673','Brown','Mark','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kdoe674','Doe','Karoline','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kdoe674','Doe','Karoline','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kdoe674','Doe','Karoline','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kdoe674','Doe','Karoline','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('wthompson675','Thompson','William','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('wthompson675','Thompson','William','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dmorrison676','Morrison','David','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('edoe677','Doe','Erik','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('edoe677','Doe','Erik','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('edoe677','Doe','Erik','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('nlangenberg','Langenberg','Nancy','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('nlangenberg','Langenberg','Nancy','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kpeterson679','Peterson','Karl','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('hgonazles','Gonazles','Heather','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('hgonazles','Gonazles','Heather','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('droberts','Roberts','Donna','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dgonazles682','Gonazles','David','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dgonazles682','Gonazles','David','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mmorrison','Morrison','Mark','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('cmorrison684','Morrison','Colin','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('cmorrison684','Morrison','Colin','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('cmorrison684','Morrison','Colin','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jlewis685','Lewis','Jim','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jlewis685','Lewis','Jim','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jlewis685','Lewis','Jim','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jlewis685','Lewis','Jim','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jjohnson686','Johnson','Jennifer','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jjohnson686','Johnson','Jennifer','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('elee','Lee','Erik','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('elee','Lee','Erik','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('elee','Lee','Erik','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('elee','Lee','Erik','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ddoe688','Doe','Donna','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ddoe688','Doe','Donna','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('droberts689','Roberts','Donna','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('droberts689','Roberts','Donna','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mgonazles690','Gonazles','Mary','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mgonazles690','Gonazles','Mary','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('awilliams','Williams','Ann','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('gwalters','Walters','Greg','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('gwalters','Walters','Greg','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('gwalters','Walters','Greg','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('gwalters','Walters','Greg','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('wgonazles','Gonazles','William','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mlewis694','Lewis','Michael','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mlewis694','Lewis','Michael','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('avales695','Vales','Ann','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('avales695','Vales','Ann','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mjohnson696','Johnson','Michael','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mjohnson696','Johnson','Michael','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kanderson','Anderson','Kim','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kanderson','Anderson','Kim','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kanderson','Anderson','Kim','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('troberts','Roberts','Thomas','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('troberts','Roberts','Thomas','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('troberts','Roberts','Thomas','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dlewis699','Lewis','David','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dlewis699','Lewis','David','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dlewis699','Lewis','David','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dwalters700','Walters','Donna','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kbrown701','Brown','Kim','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kbrown701','Brown','Kim','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kbrown701','Brown','Kim','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ewhite702','White','Erik','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ewhite702','White','Erik','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ewhite702','White','Erik','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ewhite702','White','Erik','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('lwalters703','Walters','Lori','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('lwalters703','Walters','Lori','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('lwalters703','Walters','Lori','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('alangenberg704','Langenberg','Ann','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bbrown705','Brown','Bill','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bbrown705','Brown','Bill','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('blangenberg','Langenberg','Blake','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mlewis707','Lewis','Michael','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mlewis707','Lewis','Michael','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mlewis707','Lewis','Michael','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ksmith708','Smith','Karl','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ksmith708','Smith','Karl','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ksmith708','Smith','Karl','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ksmith708','Smith','Karl','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('clopez','Lopez','Colin','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('clopez','Lopez','Colin','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mclark710','Clark','Mark','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mclark710','Clark','Mark','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mclark710','Clark','Mark','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('tprice','Price','Thomas','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('tprice','Price','Thomas','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('tprice','Price','Thomas','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('tprice','Price','Thomas','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('klewis712','Lewis','Karl','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('klewis712','Lewis','Karl','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mbutler713','Butler','Marie','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mbutler713','Butler','Marie','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mbutler713','Butler','Marie','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mbutler713','Butler','Marie','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mmorrison714','Morrison','Mark','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mmorrison714','Morrison','Mark','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mmorrison714','Morrison','Mark','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('gsmith715','Smith','Greg','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('gsmith715','Smith','Greg','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('gsmith715','Smith','Greg','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('randerson','Anderson','Robert','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('randerson','Anderson','Robert','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('randerson','Anderson','Robert','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('klangenberg717','Langenberg','Kiersten','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('klangenberg717','Langenberg','Kiersten','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mlangenberg718','Langenberg','Mary','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('plee719','Lee','Paul','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('plee719','Lee','Paul','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dclark720','Clark','Donna','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bbrown721','Brown','Blake','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bbrown721','Brown','Blake','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bvales722','Vales','Blake','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('emartinez','Martinez','Erik','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('emartinez','Martinez','Erik','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kgonazles','Gonazles','Karl','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kgonazles','Gonazles','Karl','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kgonazles','Gonazles','Karl','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kgonazles','Gonazles','Karl','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('lvales725','Vales','Lisa','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('lvales725','Vales','Lisa','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('lvales725','Vales','Lisa','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kgrady726','Grady','Karl','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kgrady726','Grady','Karl','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('aanderson727','Anderson','Ann','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('awhite728','White','Ann','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('lwilliams729','Williams','Lori','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bclark730','Clark','Bill','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bclark730','Clark','Bill','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dwilliams731','Williams','David','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dwilliams732','Williams','David','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dlewis733','Lewis','David','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dlewis733','Lewis','David','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ndoe','Doe','Nancy','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ndoe','Doe','Nancy','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ndoe','Doe','Nancy','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jjohnson735','Johnson','Jennifer','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jjohnson735','Johnson','Jennifer','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jjohnson735','Johnson','Jennifer','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jgonazles736','Gonazles','Jennifer','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('lprice','Price','Lisa','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('lprice','Price','Lisa','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('lprice','Price','Lisa','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('lprice','Price','Lisa','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('rdoe738','Doe','Robert','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('rdoe738','Doe','Robert','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('rdoe738','Doe','Robert','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dbrown739','Brown','David','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('handerson740','Anderson','Heather','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('handerson740','Anderson','Heather','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jmartinez741','Martinez','Jo','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jmartinez741','Martinez','Jo','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('agonazles','Gonazles','Ann','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('edavis743','Davis','Erik','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('edavis743','Davis','Erik','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('edavis743','Davis','Erik','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('edavis743','Davis','Erik','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jpeterson744','Peterson','James','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jpeterson744','Peterson','James','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jpeterson744','Peterson','James','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jpeterson744','Peterson','James','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bprice745','Price','Betty','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bprice745','Price','Betty','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bprice745','Price','Betty','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bprice745','Price','Betty','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jwilliams746','Williams','Jim','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jwilliams746','Williams','Jim','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jwilliams746','Williams','Jim','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jwilliams746','Williams','Jim','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('rroberts','Roberts','Robert','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('rroberts','Roberts','Robert','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('rroberts','Roberts','Robert','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('rroberts','Roberts','Robert','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kroberts748','Roberts','Karl','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kroberts748','Roberts','Karl','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('janderson749','Anderson','Jim','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('janderson749','Anderson','Jim','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('janderson749','Anderson','Jim','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('janderson749','Anderson','Jim','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('broberts750','Roberts','Bill','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('broberts750','Roberts','Bill','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('broberts750','Roberts','Bill','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('elopez751','Lopez','Erik','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('manderson752','Anderson','Michael','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('manderson752','Anderson','Michael','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kbutler753','Butler','Karoline','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kbutler753','Butler','Karoline','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kbutler753','Butler','Karoline','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kbutler753','Butler','Karoline','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('gclark','Clark','Greg','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('gclark','Clark','Greg','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('gclark','Clark','Greg','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jwilliams755','Williams','Jo','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jwilliams755','Williams','Jo','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('llopez756','Lopez','Lori','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('llopez756','Lopez','Lori','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('llopez756','Lopez','Lori','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('khenderson757','Henderson','Kim','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('khenderson757','Henderson','Kim','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('khenderson757','Henderson','Kim','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('cjohnson758','Johnson','Colin','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('cjohnson758','Johnson','Colin','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('cjohnson758','Johnson','Colin','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kgasper759','Gasper','Kim','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kgasper759','Gasper','Kim','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jlewis760','Lewis','James','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jlewis760','Lewis','James','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jlewis760','Lewis','James','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jlewis760','Lewis','James','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('llee761','Lee','Lori','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('llee761','Lee','Lori','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('llee761','Lee','Lori','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('rvales762','Vales','Robert','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('rvales762','Vales','Robert','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('rvales762','Vales','Robert','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('rvales762','Vales','Robert','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jgasper763','Gasper','John','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jgasper763','Gasper','John','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jgasper763','Gasper','John','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jgasper763','Gasper','John','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mprice764','Price','Marie','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mprice764','Price','Marie','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mprice764','Price','Marie','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('asmith765','Smith','Ann','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('asmith765','Smith','Ann','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kanderson766','Anderson','Kiersten','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kanderson766','Anderson','Kiersten','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('tbrown767','Brown','Thomas','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('tbrown767','Brown','Thomas','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kvales768','Vales','Karoline','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kvales768','Vales','Karoline','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kvales768','Vales','Karoline','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kvales768','Vales','Karoline','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jhenderson769','Henderson','Jo','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jhenderson769','Henderson','Jo','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jhenderson769','Henderson','Jo','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jhenderson769','Henderson','Jo','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jjohnson770','Johnson','James','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('wroberts','Roberts','William','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('wroberts','Roberts','William','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('wroberts','Roberts','William','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('wroberts','Roberts','William','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('cpeterson772','Peterson','Colin','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('tdoe','Doe','Thomas','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('tdoe','Doe','Thomas','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('tdoe','Doe','Thomas','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('tdoe','Doe','Thomas','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('hroberts','Roberts','Heather','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('hroberts','Roberts','Heather','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mprice775','Price','Michael','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mprice775','Price','Michael','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mprice775','Price','Michael','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('lroberts776','Roberts','Lori','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('lroberts776','Roberts','Lori','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('lroberts776','Roberts','Lori','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('lroberts776','Roberts','Lori','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mdavis777','Davis','Marie','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mdavis777','Davis','Marie','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kgonazles778','Gonazles','Karoline','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kgonazles778','Gonazles','Karoline','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kgonazles778','Gonazles','Karoline','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kgonazles778','Gonazles','Karoline','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mvales779','Vales','Mary','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mvales779','Vales','Mary','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mvales779','Vales','Mary','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jdoe780','Doe','Jo','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dmartinez','Martinez','David','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dvales782','Vales','David','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('tprice783','Price','Thomas','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('tprice783','Price','Thomas','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('tprice783','Price','Thomas','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('tprice783','Price','Thomas','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dmorrison784','Morrison','Donna','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dgonazles785','Gonazles','David','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dgonazles785','Gonazles','David','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dgonazles785','Gonazles','David','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dgonazles785','Gonazles','David','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('swalters786','Walters','Sarah','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('swalters786','Walters','Sarah','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('swalters786','Walters','Sarah','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('hpeterson','Peterson','Heather','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('hpeterson','Peterson','Heather','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('hpeterson','Peterson','Heather','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jlee788','Lee','Jennifer','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('nlopez','Lopez','Nancy','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('nlopez','Lopez','Nancy','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('nlopez','Lopez','Nancy','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('nlopez','Lopez','Nancy','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kwhite790','White','Kim','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kwhite790','White','Kim','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kwhite790','White','Kim','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('nbutler','Butler','Nancy','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jroberts792','Roberts','Jo','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jroberts792','Roberts','Jo','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jroberts792','Roberts','Jo','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('hclark','Clark','Heather','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('hclark','Clark','Heather','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('hclark','Clark','Heather','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('nclark794','Clark','Nancy','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('nclark794','Clark','Nancy','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dpeterson795','Peterson','David','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dpeterson795','Peterson','David','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dpeterson795','Peterson','David','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('hbrown796','Brown','Heather','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('hbrown796','Brown','Heather','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('hbrown796','Brown','Heather','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('hlewis797','Lewis','Heather','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('hlewis797','Lewis','Heather','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('hlewis797','Lewis','Heather','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('blewis798','Lewis','Betty','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('blewis798','Lewis','Betty','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('blewis798','Lewis','Betty','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('blewis798','Lewis','Betty','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('sroberts799','Roberts','Sarah','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('sroberts799','Roberts','Sarah','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('sroberts799','Roberts','Sarah','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('sroberts799','Roberts','Sarah','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('clewis800','Lewis','Colin','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('clewis800','Lewis','Colin','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('clewis800','Lewis','Colin','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jclark801','Clark','Jim','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jclark801','Clark','Jim','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jvales802','Vales','Jim','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jvales802','Vales','Jim','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jlewis803','Lewis','John','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jlewis803','Lewis','John','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jlewis803','Lewis','John','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jlewis803','Lewis','John','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jgasper804','Gasper','John','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jgasper804','Gasper','John','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('rdavis805','Davis','Robert','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('rdavis805','Davis','Robert','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('rdavis805','Davis','Robert','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('rdavis805','Davis','Robert','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dwilliams806','Williams','David','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dwilliams806','Williams','David','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dwilliams806','Williams','David','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jscott807','Scott','Jennifer','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jscott807','Scott','Jennifer','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jscott807','Scott','Jennifer','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('wwilliams808','Williams','William','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('edavis809','Davis','Eric','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('edavis809','Davis','Eric','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('edavis809','Davis','Eric','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mprice810','Price','Marie','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mprice810','Price','Marie','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mprice810','Price','Marie','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bhenderson','Henderson','Betty','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bhenderson','Henderson','Betty','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bhenderson','Henderson','Betty','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('hhenderson812','Henderson','Heather','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('hhenderson812','Henderson','Heather','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('hhenderson812','Henderson','Heather','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('hhenderson812','Henderson','Heather','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kscott813','Scott','Karl','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kscott813','Scott','Karl','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kscott813','Scott','Karl','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ddoe814','Doe','David','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ddoe814','Doe','David','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ddoe814','Doe','David','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ewilliams815','Williams','Erik','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ewilliams815','Williams','Erik','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jsmith816','Smith','Jo','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jsmith816','Smith','Jo','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jsmith816','Smith','Jo','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jsmith816','Smith','Jo','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('lvales817','Vales','Lisa','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('lvales817','Vales','Lisa','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('lvales817','Vales','Lisa','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('lvales817','Vales','Lisa','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('lpeterson818','Peterson','Lori','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dgasper','Gasper','David','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dgasper','Gasper','David','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('nlangenberg820','Langenberg','Nancy','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('nlangenberg820','Langenberg','Nancy','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jhenderson821','Henderson','Jo','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jhenderson821','Henderson','Jo','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ddavis822','Davis','David','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ddavis822','Davis','David','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ddavis822','Davis','David','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kgasper823','Gasper','Karl','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kgasper823','Gasper','Karl','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kgasper823','Gasper','Karl','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kgasper823','Gasper','Karl','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jprice824','Price','John','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jprice824','Price','John','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jprice824','Price','John','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jprice824','Price','John','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('aclark','Clark','Ann','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jclark826','Clark','Jennifer','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jclark826','Clark','Jennifer','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jclark826','Clark','Jennifer','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jclark826','Clark','Jennifer','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('lmartinez','Martinez','Lori','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('lmartinez','Martinez','Lori','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('lmartinez','Martinez','Lori','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('lmartinez','Martinez','Lori','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jpeterson828','Peterson','Jim','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jpeterson828','Peterson','Jim','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jpeterson828','Peterson','Jim','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jpeterson828','Peterson','Jim','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jdoe829','Doe','Jennifer','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jdoe829','Doe','Jennifer','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jdoe829','Doe','Jennifer','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jdoe829','Doe','Jennifer','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('nmorrison','Morrison','Nancy','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ehenderson831','Henderson','Eric','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ehenderson831','Henderson','Eric','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ehenderson831','Henderson','Eric','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kwhite832','White','Kiersten','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dhenderson833','Henderson','Donna','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dhenderson833','Henderson','Donna','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dbrown834','Brown','Donna','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dbrown834','Brown','Donna','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dbrown834','Brown','Donna','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('manderson835','Anderson','Marie','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('manderson835','Anderson','Marie','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('manderson835','Anderson','Marie','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ggasper836','Gasper','Greg','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ggasper836','Gasper','Greg','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ggasper836','Gasper','Greg','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ggasper836','Gasper','Greg','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mlewis837','Lewis','Marie','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mlewis837','Lewis','Marie','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kclark838','Clark','Karl','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kclark838','Clark','Karl','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kclark838','Clark','Karl','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kclark838','Clark','Karl','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dclark839','Clark','David','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dclark839','Clark','David','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dclark839','Clark','David','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('blewis840','Lewis','Blake','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('blewis840','Lewis','Blake','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('blewis840','Lewis','Blake','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('wlewis','Lewis','William','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jbutler842','Butler','John','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jbutler842','Butler','John','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bbutler843','Butler','Betty','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('gthompson','Thompson','Greg','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('gthompson','Thompson','Greg','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('gthompson','Thompson','Greg','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('gthompson','Thompson','Greg','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('glangenberg','Langenberg','Greg','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('glangenberg','Langenberg','Greg','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ajohnson','Johnson','Ann','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ajohnson','Johnson','Ann','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ajohnson','Johnson','Ann','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('awhite847','White','Ann','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('awhite847','White','Ann','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('awhite847','White','Ann','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dhenderson848','Henderson','David','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dhenderson848','Henderson','David','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mwilliams849','Williams','Mark','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('nprice','Price','Nancy','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('nprice','Price','Nancy','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('nprice','Price','Nancy','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dthompson851','Thompson','Donna','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dthompson851','Thompson','Donna','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ebutler852','Butler','Erik','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ebutler852','Butler','Erik','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ebutler852','Butler','Erik','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ebutler852','Butler','Erik','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kdavis853','Davis','Kim','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kdavis853','Davis','Kim','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kdavis853','Davis','Kim','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('tgasper854','Gasper','Thomas','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('alangenberg855','Langenberg','Ann','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kclark856','Clark','Kim','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kclark856','Clark','Kim','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('wdavis','Davis','William','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kwalters858','Walters','Karoline','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kwalters858','Walters','Karoline','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kwalters858','Walters','Karoline','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kwalters858','Walters','Karoline','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('eprice859','Price','Erik','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('eprice859','Price','Erik','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('eprice859','Price','Erik','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('eprice859','Price','Erik','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('slee860','Lee','Sarah','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('slee860','Lee','Sarah','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('slee860','Lee','Sarah','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('slee860','Lee','Sarah','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jwalters861','Walters','James','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('rprice862','Price','Robert','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('rprice862','Price','Robert','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('rprice862','Price','Robert','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('rprice862','Price','Robert','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('tmartinez863','Martinez','Thomas','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('tmartinez863','Martinez','Thomas','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('tmartinez863','Martinez','Thomas','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('tmartinez863','Martinez','Thomas','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mclark864','Clark','Mary','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mclark864','Clark','Mary','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('lwalters865','Walters','Lisa','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('lwalters865','Walters','Lisa','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('lwalters865','Walters','Lisa','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('lwalters865','Walters','Lisa','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('handerson866','Anderson','Heather','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dhenderson867','Henderson','David','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ldoe868','Doe','Lisa','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ldoe868','Doe','Lisa','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ldoe868','Doe','Lisa','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ldoe868','Doe','Lisa','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ggonazles869','Gonazles','Greg','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ggonazles869','Gonazles','Greg','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kanderson870','Anderson','Karoline','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kanderson870','Anderson','Karoline','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kanderson870','Anderson','Karoline','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kanderson870','Anderson','Karoline','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ajohnson871','Johnson','Ann','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ajohnson871','Johnson','Ann','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bgasper872','Gasper','Betty','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bgasper872','Gasper','Betty','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bgasper872','Gasper','Betty','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bgasper872','Gasper','Betty','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jlee873','Lee','John','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jlee873','Lee','John','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('khenderson874','Henderson','Karoline','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('khenderson874','Henderson','Karoline','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jwilliams875','Williams','John','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jwilliams875','Williams','John','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('nwilliams','Williams','Nancy','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('nwilliams','Williams','Nancy','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('nwilliams','Williams','Nancy','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('nwilliams','Williams','Nancy','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kbrown877','Brown','Karoline','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bthompson878','Thompson','Blake','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bthompson878','Thompson','Blake','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bthompson878','Thompson','Blake','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('rdavis879','Davis','Robert','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('rdavis879','Davis','Robert','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('rdavis879','Davis','Robert','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('rdavis879','Davis','Robert','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('gthompson880','Thompson','Greg','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('gthompson880','Thompson','Greg','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('gthompson880','Thompson','Greg','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bpeterson881','Peterson','Blake','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bpeterson881','Peterson','Blake','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bpeterson881','Peterson','Blake','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bpeterson881','Peterson','Blake','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mbrown882','Brown','Marie','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mbrown882','Brown','Marie','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mbrown882','Brown','Marie','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jmartinez883','Martinez','James','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jmartinez883','Martinez','James','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jmartinez883','Martinez','James','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('hwhite884','White','Heather','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('lhenderson885','Henderson','Lisa','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('lhenderson885','Henderson','Lisa','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('lhenderson885','Henderson','Lisa','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('lhenderson885','Henderson','Lisa','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('thenderson','Henderson','Thomas','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('thenderson','Henderson','Thomas','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('thenderson','Henderson','Thomas','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('sdavis887','Davis','Sarah','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dclark888','Clark','David','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dclark888','Clark','David','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dclark888','Clark','David','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dclark888','Clark','David','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dpeterson889','Peterson','David','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dpeterson889','Peterson','David','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dpeterson889','Peterson','David','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jbutler890','Butler','James','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ksmith891','Smith','Kiersten','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ksmith891','Smith','Kiersten','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('rlopez892','Lopez','Robert','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('rlopez892','Lopez','Robert','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ksmith893','Smith','Kiersten','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jdavis894','Davis','John','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jdavis894','Davis','John','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ddoe895','Doe','Donna','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ddoe895','Doe','Donna','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ddoe895','Doe','Donna','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('msmith896','Smith','Michael','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('msmith896','Smith','Michael','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mdavis897','Davis','Michael','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mdavis897','Davis','Michael','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mdavis897','Davis','Michael','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mmartinez898','Martinez','Marie','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jlangenberg899','Langenberg','Jennifer','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jlangenberg899','Langenberg','Jennifer','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('cdavis900','Davis','Colin','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('cdavis900','Davis','Colin','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('cdavis900','Davis','Colin','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('cdavis900','Davis','Colin','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jmartinez901','Martinez','John','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jmartinez901','Martinez','John','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('tmartinez902','Martinez','Thomas','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('tmartinez902','Martinez','Thomas','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('tmartinez902','Martinez','Thomas','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('tmartinez902','Martinez','Thomas','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bprice903','Price','Bill','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bprice903','Price','Bill','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jdavis904','Davis','Jo','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jdavis904','Davis','Jo','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jdavis904','Davis','Jo','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jdavis904','Davis','Jo','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jmartinez905','Martinez','Jo','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jmartinez905','Martinez','Jo','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('landerson906','Anderson','Lori','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('rlee','Lee','Robert','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('rlee','Lee','Robert','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('rlee','Lee','Robert','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('rlee','Lee','Robert','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dlewis908','Lewis','David','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jlopez909','Lopez','Jo','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jlopez909','Lopez','Jo','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kgasper910','Gasper','Karoline','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kgasper910','Gasper','Karoline','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kgasper910','Gasper','Karoline','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mscott911','Scott','Michael','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('smorrison','Morrison','Sarah','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('smorrison','Morrison','Sarah','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('smorrison','Morrison','Sarah','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('smorrison','Morrison','Sarah','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kjohnson913','Johnson','Karl','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kjohnson913','Johnson','Karl','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kjohnson913','Johnson','Karl','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bwhite914','White','Bill','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bwhite914','White','Bill','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bwhite914','White','Bill','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bwhite914','White','Bill','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kgonazles915','Gonazles','Kim','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kgonazles915','Gonazles','Kim','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kgonazles915','Gonazles','Kim','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jgasper916','Gasper','Jennifer','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jlewis917','Lewis','James','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jlewis917','Lewis','James','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mjohnson918','Johnson','Mark','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ddavis919','Davis','David','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ddavis919','Davis','David','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ddavis919','Davis','David','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ddavis919','Davis','David','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dvales920','Vales','Donna','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mlangenberg921','Langenberg','Mary','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mlangenberg921','Langenberg','Mary','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mlangenberg921','Langenberg','Mary','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jvales922','Vales','Jim','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mgrady923','Grady','Mary','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('hsmith924','Smith','Heather','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('hsmith924','Smith','Heather','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('lgrady925','Grady','Lori','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('gbutler926','Butler','Greg','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('gbutler926','Butler','Greg','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('gbutler926','Butler','Greg','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jwhite927','White','Jennifer','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jwhite927','White','Jennifer','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jwhite927','White','Jennifer','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bpeterson928','Peterson','Betty','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('nlewis','Lewis','Nancy','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('nlewis','Lewis','Nancy','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jroberts930','Roberts','Jennifer','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jroberts930','Roberts','Jennifer','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jroberts930','Roberts','Jennifer','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kpeterson931','Peterson','Kiersten','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('lhenderson932','Henderson','Lori','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jlewis933','Lewis','James','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jlewis933','Lewis','James','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jlewis933','Lewis','James','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jlewis933','Lewis','James','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dlangenberg934','Langenberg','David','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dlangenberg934','Langenberg','David','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dlangenberg934','Langenberg','David','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kbutler935','Butler','Kim','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('rjohnson','Johnson','Robert','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jwalters937','Walters','Jennifer','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jwalters937','Walters','Jennifer','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jwalters937','Walters','Jennifer','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kgonazles938','Gonazles','Kiersten','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mgasper939','Gasper','Marie','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mgasper939','Gasper','Marie','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mgasper939','Gasper','Marie','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mgasper939','Gasper','Marie','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('klopez940','Lopez','Kim','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('klopez940','Lopez','Kim','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('klopez940','Lopez','Kim','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('klopez940','Lopez','Kim','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jwhite941','White','Jennifer','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jgonazles942','Gonazles','James','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jgonazles942','Gonazles','James','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jgonazles942','Gonazles','James','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jgonazles942','Gonazles','James','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('khenderson943','Henderson','Kim','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('khenderson943','Henderson','Kim','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('khenderson943','Henderson','Kim','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mhenderson944','Henderson','Mark','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mhenderson944','Henderson','Mark','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mhenderson944','Henderson','Mark','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('cprice','Price','Colin','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('cprice','Price','Colin','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('cprice','Price','Colin','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('cprice','Price','Colin','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('janderson946','Anderson','Jim','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('janderson946','Anderson','Jim','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ejohnson947','Johnson','Erik','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ejohnson947','Johnson','Erik','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ejohnson947','Johnson','Erik','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ejohnson947','Johnson','Erik','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('janderson948','Anderson','John','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('janderson948','Anderson','John','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('janderson948','Anderson','John','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('janderson948','Anderson','John','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('lhenderson949','Henderson','Lisa','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('lhenderson949','Henderson','Lisa','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('lhenderson949','Henderson','Lisa','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('lhenderson949','Henderson','Lisa','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mlee950','Lee','Mary','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mlee950','Lee','Mary','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ewilliams951','Williams','Eric','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ewilliams951','Williams','Eric','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ewilliams951','Williams','Eric','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('plewis','Lewis','Paul','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('plewis','Lewis','Paul','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('plewis','Lewis','Paul','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mclark953','Clark','Marie','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mclark953','Clark','Marie','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dwilliams954','Williams','David','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('rroberts955','Roberts','Robert','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jsmith956','Smith','Jo','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jwhite957','White','Jennifer','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jwhite957','White','Jennifer','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jwhite957','White','Jennifer','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jwhite957','White','Jennifer','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bwalters958','Walters','Bill','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bwalters958','Walters','Bill','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bwalters958','Walters','Bill','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mhenderson959','Henderson','Mark','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mhenderson959','Henderson','Mark','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mhenderson959','Henderson','Mark','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mhenderson959','Henderson','Mark','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mgasper960','Gasper','Mark','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mgasper960','Gasper','Mark','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mgasper960','Gasper','Mark','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ppeterson','Peterson','Paul','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ppeterson','Peterson','Paul','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jscott962','Scott','John','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jscott962','Scott','John','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('hdavis963','Davis','Heather','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('hdavis963','Davis','Heather','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('hdavis963','Davis','Heather','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('pwhite','White','Paul','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dwalters965','Walters','David','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dwalters965','Walters','David','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dwalters965','Walters','David','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('blopez966','Lopez','Blake','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bgrady967','Grady','Blake','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bgrady967','Grady','Blake','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bgrady967','Grady','Blake','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bclark968','Clark','Bill','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bclark968','Clark','Bill','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bclark968','Clark','Bill','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bclark968','Clark','Bill','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('lprice969','Price','Lisa','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('wpeterson970','Peterson','William','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('wpeterson970','Peterson','William','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('wpeterson970','Peterson','William','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('wpeterson970','Peterson','William','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('banderson971','Anderson','Betty','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('banderson971','Anderson','Betty','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('hprice972','Price','Heather','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('hprice972','Price','Heather','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mpeterson973','Peterson','Marie','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mpeterson973','Peterson','Marie','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mpeterson973','Peterson','Marie','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ngonazles','Gonazles','Nancy','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ngonazles','Gonazles','Nancy','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jvales975','Vales','James','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jvales975','Vales','James','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jvales975','Vales','James','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jvales975','Vales','James','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jpeterson976','Peterson','Jennifer','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jpeterson976','Peterson','Jennifer','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jpeterson976','Peterson','Jennifer','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kmartinez977','Martinez','Kim','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('pbrown978','Brown','Paul','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('pbrown978','Brown','Paul','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dbutler979','Butler','Donna','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dbutler979','Butler','Donna','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('dbutler979','Butler','Donna','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('hmorrison980','Morrison','Heather','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('hmorrison980','Morrison','Heather','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('hmorrison980','Morrison','Heather','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('cdoe981','Doe','Colin','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('cdoe981','Doe','Colin','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('cdoe981','Doe','Colin','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('alee','Lee','Ann','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('alee','Lee','Ann','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('alee','Lee','Ann','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jlee983','Lee','Jo','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jlee983','Lee','Jo','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jlee983','Lee','Jo','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mprice984','Price','Marie','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mprice984','Price','Marie','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mprice984','Price','Marie','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jbutler985','Butler','Jo','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jbutler985','Butler','Jo','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jbutler985','Butler','Jo','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mmartinez986','Martinez','Mary','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mmartinez986','Martinez','Mary','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('mmartinez986','Martinez','Mary','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('hmartinez','Martinez','Heather','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('hmartinez','Martinez','Heather','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('hmartinez','Martinez','Heather','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('twalters988','Walters','Thomas','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('twalters988','Walters','Thomas','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('twalters988','Walters','Thomas','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('twalters988','Walters','Thomas','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kwilliams989','Williams','Karl','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kwilliams989','Williams','Karl','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kwilliams989','Williams','Karl','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('emartinez990','Martinez','Eric','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('emartinez990','Martinez','Eric','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('emartinez990','Martinez','Eric','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('klee991','Lee','Karoline','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('klee991','Lee','Karoline','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bjohnson992','Johnson','Bill','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bjohnson992','Johnson','Bill','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bjohnson992','Johnson','Bill','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bjohnson992','Johnson','Bill','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('wdavis993','Davis','William','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('wdavis993','Davis','William','CS252'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('bgonazles994','Gonazles','Blake','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jvales995','Vales','Jennifer','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('jvales995','Vales','Jennifer','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('kjohnson996','Johnson','Kiersten','CS251'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ggrady','Grady','Greg','SCI123'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ggrady','Grady','Greg','MATH101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('ggrady','Grady','Greg','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('lbutler998','Butler','Lori','ACCT101'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('lbutler998','Butler','Lori','MATH100'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('lbutler998','Butler','Lori','ACCT201'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('lbutler998','Butler','Lori','SCI404'); -INSERT INTO SIS_COURSES (uid, surname, givenName, courseId) VALUES ('tgasper999','Gasper','Thomas','CS252'); diff --git a/shibboleth-integration/mp-gr/sources/container_files/seed-data/persons.sql b/shibboleth-integration/mp-gr/sources/container_files/seed-data/persons.sql deleted file mode 100644 index 28719d2..0000000 --- a/shibboleth-integration/mp-gr/sources/container_files/seed-data/persons.sql +++ /dev/null @@ -1,2526 +0,0 @@ -CREATE TABLE SIS_PERSONS ( - uid varchar(255) NOT NULL, - surname varchar(255) default NULL, - givenName varchar(255) default NULL, - fullName varchar(255) default NULL, - department varchar(255) default NULL, - mail varchar(255) default NULL, - PRIMARY KEY (uid) -); - -CREATE TABLE SIS_AFFILIATIONS ( - uid varchar(255) NOT NULL, - affiliation varchar(255) NOT NULL, - PRIMARY KEY (uid, affiliation) -); - -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jsmith','Smith','Joe','John Smith',NULL,NULL); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('banderson','Anderson','Bob','Bob Anderson',NULL,NULL); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('kwhite','White','Karl','Karl White','Law','kwhite@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kwhite','member'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kwhite','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('whenderson','Henderson','William','William Henderson','Advising','whenderson@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('whenderson','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('ddavis','Davis','David','David Davis','Computer Science','ddavis@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('ddavis','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('cmorrison','Morrison','Colin','Colin Morrison','Financial Aid','cmorrison@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('cmorrison','member'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('cmorrison','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('danderson','Anderson','Donna','Donna Anderson','Account Payable','danderson@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('danderson','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('amorrison','Morrison','Ann','Ann Morrison','Law','amorrison@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('amorrison','student'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('amorrison','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('wprice','Price','William','William Price','Account Payable','wprice@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('wprice','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('mroberts','Roberts','Marie','Marie Roberts','Law','mroberts@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mroberts','student'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mroberts','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('kjohnson','Johnson','Kiersten','Kiersten Johnson','Physical Education','kjohnson@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kjohnson','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jbrown','Brown','James','James Brown','Information Technology','jbrown@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jbrown','alum'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jbrown','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('agasper','Gasper','Ann','Ann Gasper','Computer Science','agasper@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('agasper','student'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('agasper','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jscott','Scott','Jennifer','Jennifer Scott','Business','jscott@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jscott','community'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jscott','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('bbutler','Butler','Betty','Betty Butler','Purchasing','bbutler@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('bbutler','community'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('bbutler','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('tmorrison','Morrison','Thomas','Thomas Morrison','Purchasing','tmorrison@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('tmorrison','student'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('tmorrison','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jbrown14','Brown','Jennifer','Jennifer Brown','Accounting','jbrown14@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jbrown14','member'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jbrown14','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('gjohnson','Johnson','Greg','Greg Johnson','Physical Education','gjohnson@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('gjohnson','community'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('gjohnson','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('rmartinez','Martinez','Robert','Robert Martinez','Financial Aid','rmartinez@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('rmartinez','staff'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('rmartinez','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jlewis','Lewis','Jo','Jo Lewis','Accounting','jlewis@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jlewis','community'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jlewis','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('mgasper','Gasper','Mary','Mary Gasper','Physical Education','mgasper@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mgasper','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('kvales','Vales','Karoline','Karoline Vales','Information Technology','kvales@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kvales','student'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kvales','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('tgrady','Grady','Thomas','Thomas Grady','Law','tgrady@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('tgrady','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('kmorrison','Morrison','Kiersten','Kiersten Morrison','Information Technology','kmorrison@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kmorrison','staff'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kmorrison','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('dgrady','Grady','David','David Grady','Advising','dgrady@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('dgrady','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('mthompson','Thompson','Mary','Mary Thompson','Financial Aid','mthompson@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mthompson','staff'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mthompson','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('bgasper','Gasper','Bill','Bill Gasper','Business','bgasper@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('bgasper','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('dlopez','Lopez','David','David Lopez','Account Payable','dlopez@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('dlopez','staff'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('dlopez','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('hwhite','White','Heather','Heather White','Physical Education','hwhite@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('hwhite','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('ddavis27','Davis','Donna','Donna Davis','Accounting','ddavis27@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('ddavis27','staff'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('ddavis27','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('bgasper28','Gasper','Bill','Bill Gasper','Engineering','bgasper28@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('bgasper28','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jjohnson','Johnson','Jennifer','Jennifer Johnson','Financial Aid','jjohnson@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jjohnson','student'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jjohnson','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('amorrison30','Morrison','Ann','Ann Morrison','Financial Aid','amorrison30@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('amorrison30','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('kmartinez','Martinez','Karl','Karl Martinez','Accounting','kmartinez@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kmartinez','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('ahenderson','Henderson','Ann','Ann Henderson','Accounting','ahenderson@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('ahenderson','member'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('ahenderson','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('avales','Vales','Ann','Ann Vales','Purchasing','avales@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('avales','student'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('avales','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('ggonazles','Gonazles','Greg','Greg Gonazles','Language Arts','ggonazles@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('ggonazles','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('bdoe','Doe','Blake','Blake Doe','Business','bdoe@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('bdoe','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('plangenberg','Langenberg','Paul','Paul Langenberg','Information Technology','plangenberg@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('plangenberg','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('gvales','Vales','Greg','Greg Vales','Language Arts','gvales@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('gvales','community'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('gvales','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('nhenderson','Henderson','Nancy','Nancy Henderson','Physical Education','nhenderson@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('nhenderson','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('wthompson','Thompson','William','William Thompson','Law','wthompson@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('wthompson','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('kvales40','Vales','Karl','Karl Vales','Business','kvales40@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kvales40','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('blee','Lee','Bill','Bill Lee','Engineering','blee@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('blee','member'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('blee','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('mlee','Lee','Marie','Marie Lee','Information Technology','mlee@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mlee','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('kclark','Clark','Kiersten','Kiersten Clark','Financial Aid','kclark@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kclark','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('wscott','Scott','William','William Scott','Language Arts','wscott@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('wscott','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('dbutler','Butler','Donna','Donna Butler','Financial Aid','dbutler@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('dbutler','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('awhite','White','Ann','Ann White','Purchasing','awhite@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('awhite','faculty'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('awhite','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('hdoe','Doe','Heather','Heather Doe','Financial Aid','hdoe@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('hdoe','community'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('hdoe','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('dlangenberg','Langenberg','David','David Langenberg','Language Arts','dlangenberg@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('dlangenberg','alum'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('dlangenberg','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('ethompson','Thompson','Eric','Eric Thompson','Law','ethompson@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('ethompson','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jbrown50','Brown','Jennifer','Jennifer Brown','Account Payable','jbrown50@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jbrown50','alum'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jbrown50','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('mgonazles','Gonazles','Michael','Michael Gonazles','Computer Science','mgonazles@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mgonazles','student'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mgonazles','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('gbutler','Butler','Greg','Greg Butler','Information Technology','gbutler@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('gbutler','community'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('gbutler','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('mvales','Vales','Mark','Mark Vales','Engineering','mvales@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mvales','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('mlewis','Lewis','Michael','Michael Lewis','Information Technology','mlewis@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mlewis','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('hvales','Vales','Heather','Heather Vales','Information Technology','hvales@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('hvales','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jscott56','Scott','Jo','Jo Scott','Purchasing','jscott56@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jscott56','faculty'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jscott56','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('sdoe','Doe','Sarah','Sarah Doe','Business','sdoe@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('sdoe','member'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('sdoe','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('svales','Vales','Sarah','Sarah Vales','Advising','svales@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('svales','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('hmorrison','Morrison','Heather','Heather Morrison','Engineering','hmorrison@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('hmorrison','faculty'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('hmorrison','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jlopez','Lopez','Jennifer','Jennifer Lopez','Language Arts','jlopez@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jlopez','alum'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jlopez','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('dlangenberg61','Langenberg','Donna','Donna Langenberg','Law','dlangenberg61@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('dlangenberg61','student'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('dlangenberg61','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('bgrady','Grady','Betty','Betty Grady','Accounting','bgrady@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('bgrady','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jmorrison','Morrison','Jennifer','Jennifer Morrison','Law','jmorrison@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jmorrison','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('wvales','Vales','William','William Vales','Law','wvales@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('wvales','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('mmartinez','Martinez','Mark','Mark Martinez','Physical Education','mmartinez@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mmartinez','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jmartinez','Martinez','Jennifer','Jennifer Martinez','Information Technology','jmartinez@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jmartinez','community'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jmartinez','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('mgasper67','Gasper','Mary','Mary Gasper','Computer Science','mgasper67@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mgasper67','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('dpeterson','Peterson','David','David Peterson','Advising','dpeterson@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('dpeterson','student'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('dpeterson','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('eprice','Price','Erik','Erik Price','Business','eprice@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('eprice','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jgasper','Gasper','James','James Gasper','Accounting','jgasper@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jgasper','staff'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jgasper','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jclark','Clark','Jennifer','Jennifer Clark','Business','jclark@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jclark','faculty'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jclark','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('bpeterson','Peterson','Betty','Betty Peterson','Account Payable','bpeterson@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('bpeterson','alum'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('bpeterson','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('wsmith','Smith','William','William Smith','Information Technology','wsmith@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('wsmith','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('lwilliams','Williams','Lisa','Lisa Williams','Purchasing','lwilliams@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('lwilliams','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('dgrady76','Grady','David','David Grady','Physical Education','dgrady76@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('dgrady76','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jmartinez77','Martinez','Jo','Jo Martinez','Law','jmartinez77@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jmartinez77','faculty'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jmartinez77','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('dlewis','Lewis','Donna','Donna Lewis','Financial Aid','dlewis@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('dlewis','community'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('dlewis','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('wscott79','Scott','William','William Scott','Account Payable','wscott79@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('wscott79','faculty'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('wscott79','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('ddoe','Doe','Donna','Donna Doe','Physical Education','ddoe@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('ddoe','student'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('ddoe','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('gmorrison','Morrison','Greg','Greg Morrison','Language Arts','gmorrison@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('gmorrison','staff'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('gmorrison','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('khenderson','Henderson','Kim','Kim Henderson','Account Payable','khenderson@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('khenderson','member'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('khenderson','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('kpeterson','Peterson','Karoline','Karoline Peterson','Accounting','kpeterson@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kpeterson','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('eprice84','Price','Erik','Erik Price','Computer Science','eprice84@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('eprice84','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('hsmith','Smith','Heather','Heather Smith','Business','hsmith@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('hsmith','faculty'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('hsmith','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('dwilliams','Williams','Donna','Donna Williams','Financial Aid','dwilliams@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('dwilliams','alum'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('dwilliams','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('klopez','Lopez','Karl','Karl Lopez','Advising','klopez@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('klopez','staff'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('klopez','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('wjohnson','Johnson','William','William Johnson','Accounting','wjohnson@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('wjohnson','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('wbrown','Brown','William','William Brown','Physical Education','wbrown@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('wbrown','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('hbrown','Brown','Heather','Heather Brown','Law','hbrown@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('hbrown','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('kroberts','Roberts','Kim','Kim Roberts','Account Payable','kroberts@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kroberts','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('dwalters','Walters','Donna','Donna Walters','Advising','dwalters@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('dwalters','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('nlee','Lee','Nancy','Nancy Lee','Computer Science','nlee@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('nlee','faculty'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('nlee','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('sgonazles','Gonazles','Sarah','Sarah Gonazles','Computer Science','sgonazles@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('sgonazles','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('handerson','Anderson','Heather','Heather Anderson','Purchasing','handerson@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('handerson','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('danderson96','Anderson','David','David Anderson','Advising','danderson96@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('danderson96','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('dgrady97','Grady','David','David Grady','Advising','dgrady97@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('dgrady97','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jgrady','Grady','James','James Grady','Purchasing','jgrady@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jgrady','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jthompson','Thompson','John','John Thompson','Engineering','jthompson@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jthompson','alum'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jthompson','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('kthompson','Thompson','Kiersten','Kiersten Thompson','Accounting','kthompson@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kthompson','staff'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kthompson','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jpeterson','Peterson','John','John Peterson','Advising','jpeterson@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jpeterson','alum'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jpeterson','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('lmorrison','Morrison','Lisa','Lisa Morrison','Advising','lmorrison@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('lmorrison','alum'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('lmorrison','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('glee','Lee','Greg','Greg Lee','Language Arts','glee@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('glee','staff'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('glee','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('lhenderson','Henderson','Lori','Lori Henderson','Financial Aid','lhenderson@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('lhenderson','alum'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('lhenderson','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('mscott','Scott','Marie','Marie Scott','Information Technology','mscott@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mscott','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('ldavis','Davis','Lori','Lori Davis','Language Arts','ldavis@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('ldavis','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jroberts','Roberts','James','James Roberts','Engineering','jroberts@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jroberts','student'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jroberts','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('asmith','Smith','Ann','Ann Smith','Financial Aid','asmith@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('asmith','student'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('asmith','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('mbrown','Brown','Mark','Mark Brown','Advising','mbrown@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mbrown','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('kwhite110','White','Kim','Kim White','Purchasing','kwhite110@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kwhite110','alum'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kwhite110','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('mroberts111','Roberts','Mark','Mark Roberts','Law','mroberts111@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mroberts111','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('mwhite','White','Mark','Mark White','Advising','mwhite@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mwhite','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jprice','Price','Jim','Jim Price','Accounting','jprice@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jprice','faculty'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jprice','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('msmith','Smith','Michael','Michael Smith','Language Arts','msmith@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('msmith','alum'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('msmith','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('sclark','Clark','Sarah','Sarah Clark','Law','sclark@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('sclark','member'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('sclark','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('dvales','Vales','Donna','Donna Vales','Financial Aid','dvales@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('dvales','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('kjohnson117','Johnson','Kim','Kim Johnson','Advising','kjohnson117@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kjohnson117','alum'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kjohnson117','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('dsmith','Smith','David','David Smith','Account Payable','dsmith@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('dsmith','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('bwhite','White','Blake','Blake White','Language Arts','bwhite@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('bwhite','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('ldoe','Doe','Lori','Lori Doe','Language Arts','ldoe@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('ldoe','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('dlangenberg121','Langenberg','David','David Langenberg','Business','dlangenberg121@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('dlangenberg121','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('gwilliams','Williams','Greg','Greg Williams','Financial Aid','gwilliams@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('gwilliams','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('kclark123','Clark','Karoline','Karoline Clark','Financial Aid','kclark123@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kclark123','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('ewilliams','Williams','Eric','Eric Williams','Language Arts','ewilliams@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('ewilliams','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('egonazles','Gonazles','Eric','Eric Gonazles','Engineering','egonazles@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('egonazles','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('rprice','Price','Robert','Robert Price','Account Payable','rprice@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('rprice','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('ewalters','Walters','Erik','Erik Walters','Law','ewalters@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('ewalters','student'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('ewalters','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('clangenberg','Langenberg','Colin','Colin Langenberg','Financial Aid','clangenberg@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('clangenberg','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('cmorrison129','Morrison','Colin','Colin Morrison','Engineering','cmorrison129@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('cmorrison129','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('mbutler','Butler','Mary','Mary Butler','Financial Aid','mbutler@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mbutler','staff'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mbutler','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('smartinez','Martinez','Sarah','Sarah Martinez','Business','smartinez@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('smartinez','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('klewis','Lewis','Karl','Karl Lewis','Accounting','klewis@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('klewis','staff'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('klewis','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('mwilliams','Williams','Marie','Marie Williams','Language Arts','mwilliams@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mwilliams','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('dsmith134','Smith','David','David Smith','Information Technology','dsmith134@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('dsmith134','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('gpeterson','Peterson','Greg','Greg Peterson','Language Arts','gpeterson@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('gpeterson','staff'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('gpeterson','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('bgrady136','Grady','Betty','Betty Grady','Engineering','bgrady136@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('bgrady136','student'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('bgrady136','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('mthompson137','Thompson','Mark','Mark Thompson','Account Payable','mthompson137@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mthompson137','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('mroberts138','Roberts','Mary','Mary Roberts','Engineering','mroberts138@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mroberts138','faculty'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mroberts138','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('janderson','Anderson','James','James Anderson','Accounting','janderson@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('janderson','faculty'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('janderson','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jscott140','Scott','Jo','Jo Scott','Advising','jscott140@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jscott140','community'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jscott140','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('ddavis141','Davis','Donna','Donna Davis','Financial Aid','ddavis141@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('ddavis141','member'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('ddavis141','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jbutler','Butler','Jennifer','Jennifer Butler','Law','jbutler@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jbutler','member'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jbutler','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jlewis143','Lewis','Jo','Jo Lewis','Information Technology','jlewis143@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jlewis143','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('janderson144','Anderson','John','John Anderson','Computer Science','janderson144@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('janderson144','alum'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('janderson144','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('mlangenberg','Langenberg','Marie','Marie Langenberg','Physical Education','mlangenberg@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mlangenberg','community'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mlangenberg','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jthompson146','Thompson','Jennifer','Jennifer Thompson','Law','jthompson146@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jthompson146','member'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jthompson146','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('hvales147','Vales','Heather','Heather Vales','Engineering','hvales147@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('hvales147','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jwhite','White','John','John White','Information Technology','jwhite@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jwhite','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('tgasper','Gasper','Thomas','Thomas Gasper','Information Technology','tgasper@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('tgasper','alum'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('tgasper','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('bjohnson','Johnson','Bill','Bill Johnson','Accounting','bjohnson@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('bjohnson','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('mroberts151','Roberts','Mark','Mark Roberts','Accounting','mroberts151@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mroberts151','alum'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mroberts151','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('wthompson152','Thompson','William','William Thompson','Accounting','wthompson152@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('wthompson152','community'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('wthompson152','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('mdoe','Doe','Michael','Michael Doe','Business','mdoe@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mdoe','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('bgonazles','Gonazles','Bill','Bill Gonazles','Language Arts','bgonazles@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('bgonazles','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('mthompson155','Thompson','Mark','Mark Thompson','Advising','mthompson155@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mthompson155','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('dlee','Lee','David','David Lee','Information Technology','dlee@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('dlee','staff'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('dlee','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('broberts','Roberts','Bill','Bill Roberts','Physical Education','broberts@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('broberts','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jvales','Vales','John','John Vales','Business','jvales@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jvales','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('wwilliams','Williams','William','William Williams','Advising','wwilliams@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('wwilliams','faculty'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('wwilliams','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('wwilliams160','Williams','William','William Williams','Financial Aid','wwilliams160@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('wwilliams160','student'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('wwilliams160','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('ggasper','Gasper','Greg','Greg Gasper','Account Payable','ggasper@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('ggasper','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('rlopez','Lopez','Robert','Robert Lopez','Account Payable','rlopez@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('rlopez','staff'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('rlopez','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('mgrady','Grady','Michael','Michael Grady','Language Arts','mgrady@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mgrady','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('lpeterson','Peterson','Lisa','Lisa Peterson','Computer Science','lpeterson@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('lpeterson','faculty'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('lpeterson','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('ljohnson','Johnson','Lori','Lori Johnson','Physical Education','ljohnson@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('ljohnson','member'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('ljohnson','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('gscott','Scott','Greg','Greg Scott','Physical Education','gscott@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('gscott','faculty'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('gscott','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('mprice','Price','Marie','Marie Price','Account Payable','mprice@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mprice','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('bprice','Price','Bill','Bill Price','Account Payable','bprice@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('bprice','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('aanderson','Anderson','Ann','Ann Anderson','Account Payable','aanderson@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('aanderson','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('bprice170','Price','Blake','Blake Price','Engineering','bprice170@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('bprice170','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('hscott','Scott','Heather','Heather Scott','Engineering','hscott@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('hscott','member'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('hscott','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('hthompson','Thompson','Heather','Heather Thompson','Advising','hthompson@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('hthompson','staff'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('hthompson','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jmorrison173','Morrison','Jo','Jo Morrison','Financial Aid','jmorrison173@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jmorrison173','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('mprice174','Price','Mary','Mary Price','Computer Science','mprice174@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mprice174','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('hprice','Price','Heather','Heather Price','Information Technology','hprice@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('hprice','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('kbutler','Butler','Karoline','Karoline Butler','Language Arts','kbutler@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kbutler','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('bjohnson177','Johnson','Blake','Blake Johnson','Account Payable','bjohnson177@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('bjohnson177','alum'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('bjohnson177','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jlee','Lee','Jennifer','Jennifer Lee','Financial Aid','jlee@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jlee','alum'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jlee','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('rwilliams','Williams','Robert','Robert Williams','Purchasing','rwilliams@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('rwilliams','member'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('rwilliams','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jprice180','Price','Jo','Jo Price','Account Payable','jprice180@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jprice180','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('kgasper','Gasper','Kim','Kim Gasper','Language Arts','kgasper@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kgasper','community'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kgasper','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('cthompson','Thompson','Colin','Colin Thompson','Advising','cthompson@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('cthompson','staff'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('cthompson','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('ethompson183','Thompson','Eric','Eric Thompson','Physical Education','ethompson183@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('ethompson183','member'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('ethompson183','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('bclark','Clark','Betty','Betty Clark','Advising','bclark@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('bclark','faculty'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('bclark','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('llee','Lee','Lori','Lori Lee','Account Payable','llee@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('llee','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('kpeterson186','Peterson','Karl','Karl Peterson','Purchasing','kpeterson186@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kpeterson186','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('wlee','Lee','William','William Lee','Law','wlee@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('wlee','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('gjohnson188','Johnson','Greg','Greg Johnson','Engineering','gjohnson188@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('gjohnson188','alum'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('gjohnson188','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('mlopez','Lopez','Michael','Michael Lopez','Financial Aid','mlopez@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mlopez','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('sgrady','Grady','Sarah','Sarah Grady','Accounting','sgrady@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('sgrady','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('pbrown','Brown','Paul','Paul Brown','Physical Education','pbrown@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('pbrown','member'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('pbrown','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('mwilliams192','Williams','Mary','Mary Williams','Physical Education','mwilliams192@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mwilliams192','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jlewis193','Lewis','James','James Lewis','Financial Aid','jlewis193@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jlewis193','faculty'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jlewis193','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('nbrown','Brown','Nancy','Nancy Brown','Account Payable','nbrown@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('nbrown','alum'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('nbrown','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jwalters','Walters','Jo','Jo Walters','Engineering','jwalters@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jwalters','alum'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jwalters','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('hdoe196','Doe','Heather','Heather Doe','Advising','hdoe196@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('hdoe196','student'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('hdoe196','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('mlewis197','Lewis','Michael','Michael Lewis','Purchasing','mlewis197@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mlewis197','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('blewis','Lewis','Bill','Bill Lewis','Purchasing','blewis@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('blewis','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('mwalters','Walters','Michael','Michael Walters','Advising','mwalters@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mwalters','student'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mwalters','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('llopez','Lopez','Lisa','Lisa Lopez','Engineering','llopez@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('llopez','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jwalters201','Walters','James','James Walters','Physical Education','jwalters201@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jwalters201','faculty'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jwalters201','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('kmorrison202','Morrison','Karoline','Karoline Morrison','Computer Science','kmorrison202@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kmorrison202','alum'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kmorrison202','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('bgrady203','Grady','Bill','Bill Grady','Business','bgrady203@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('bgrady203','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('clewis','Lewis','Colin','Colin Lewis','Engineering','clewis@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('clewis','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('hwhite205','White','Heather','Heather White','Advising','hwhite205@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('hwhite205','member'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('hwhite205','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('dprice','Price','David','David Price','Physical Education','dprice@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('dprice','staff'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('dprice','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jlee207','Lee','John','John Lee','Law','jlee207@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jlee207','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jbutler208','Butler','John','John Butler','Physical Education','jbutler208@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jbutler208','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('bdavis','Davis','Betty','Betty Davis','Financial Aid','bdavis@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('bdavis','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jroberts210','Roberts','Jennifer','Jennifer Roberts','Account Payable','jroberts210@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jroberts210','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('gjohnson211','Johnson','Greg','Greg Johnson','Business','gjohnson211@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('gjohnson211','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jlangenberg','Langenberg','Jennifer','Jennifer Langenberg','Advising','jlangenberg@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jlangenberg','faculty'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jlangenberg','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('dhenderson','Henderson','Donna','Donna Henderson','Information Technology','dhenderson@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('dhenderson','staff'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('dhenderson','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('pmartinez','Martinez','Paul','Paul Martinez','Purchasing','pmartinez@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('pmartinez','student'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('pmartinez','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('ganderson','Anderson','Greg','Greg Anderson','Business','ganderson@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('ganderson','faculty'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('ganderson','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('mpeterson','Peterson','Mary','Mary Peterson','Accounting','mpeterson@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mpeterson','alum'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mpeterson','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('klopez217','Lopez','Karoline','Karoline Lopez','Physical Education','klopez217@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('klopez217','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('tgasper218','Gasper','Thomas','Thomas Gasper','Law','tgasper218@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('tgasper218','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('lsmith','Smith','Lori','Lori Smith','Engineering','lsmith@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('lsmith','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('ebutler','Butler','Eric','Eric Butler','Accounting','ebutler@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('ebutler','student'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('ebutler','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jvales221','Vales','Jim','Jim Vales','Business','jvales221@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jvales221','faculty'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jvales221','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jvales222','Vales','James','James Vales','Financial Aid','jvales222@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jvales222','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('kjohnson223','Johnson','Karoline','Karoline Johnson','Computer Science','kjohnson223@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kjohnson223','student'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kjohnson223','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('kscott','Scott','Kiersten','Kiersten Scott','Accounting','kscott@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kscott','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('dwilliams225','Williams','David','David Williams','Language Arts','dwilliams225@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('dwilliams225','faculty'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('dwilliams225','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('bclark226','Clark','Betty','Betty Clark','Physical Education','bclark226@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('bclark226','member'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('bclark226','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('mwhite227','White','Marie','Marie White','Language Arts','mwhite227@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mwhite227','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('danderson228','Anderson','David','David Anderson','Law','danderson228@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('danderson228','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('dgrady229','Grady','David','David Grady','Computer Science','dgrady229@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('dgrady229','faculty'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('dgrady229','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jgrady230','Grady','James','James Grady','Business','jgrady230@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jgrady230','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jdoe','Doe','James','James Doe','Language Arts','jdoe@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jdoe','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('dmorrison','Morrison','David','David Morrison','Business','dmorrison@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('dmorrison','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('mclark','Clark','Marie','Marie Clark','Financial Aid','mclark@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mclark','student'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mclark','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('plopez','Lopez','Paul','Paul Lopez','Business','plopez@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('plopez','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('hlewis','Lewis','Heather','Heather Lewis','Advising','hlewis@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('hlewis','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('dsmith236','Smith','David','David Smith','Accounting','dsmith236@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('dsmith236','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('kbutler237','Butler','Kiersten','Kiersten Butler','Law','kbutler237@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kbutler237','student'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kbutler237','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('kdavis','Davis','Kim','Kim Davis','Business','kdavis@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kdavis','staff'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kdavis','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('kdoe','Doe','Kiersten','Kiersten Doe','Engineering','kdoe@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kdoe','faculty'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kdoe','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('kgrady','Grady','Karl','Karl Grady','Purchasing','kgrady@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kgrady','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jprice241','Price','James','James Price','Financial Aid','jprice241@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jprice241','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('shenderson','Henderson','Sarah','Sarah Henderson','Accounting','shenderson@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('shenderson','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('kmorrison243','Morrison','Kiersten','Kiersten Morrison','Account Payable','kmorrison243@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kmorrison243','student'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kmorrison243','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('mgonazles244','Gonazles','Mark','Mark Gonazles','Accounting','mgonazles244@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mgonazles244','student'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mgonazles244','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('alewis','Lewis','Ann','Ann Lewis','Account Payable','alewis@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('alewis','faculty'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('alewis','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('mdavis','Davis','Michael','Michael Davis','Accounting','mdavis@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mdavis','student'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mdavis','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('manderson','Anderson','Marie','Marie Anderson','Accounting','manderson@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('manderson','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('bmorrison','Morrison','Blake','Blake Morrison','Business','bmorrison@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('bmorrison','alum'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('bmorrison','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('msmith249','Smith','Marie','Marie Smith','Information Technology','msmith249@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('msmith249','faculty'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('msmith249','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jdoe250','Doe','James','James Doe','Advising','jdoe250@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jdoe250','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jgasper251','Gasper','James','James Gasper','Purchasing','jgasper251@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jgasper251','alum'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jgasper251','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jscott252','Scott','Jo','Jo Scott','Financial Aid','jscott252@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jscott252','member'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jscott252','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('kwhite253','White','Karoline','Karoline White','Law','kwhite253@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kwhite253','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('wbrown254','Brown','William','William Brown','Law','wbrown254@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('wbrown254','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('mpeterson255','Peterson','Mark','Mark Peterson','Language Arts','mpeterson255@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mpeterson255','community'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mpeterson255','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('kthompson256','Thompson','Kiersten','Kiersten Thompson','Physical Education','kthompson256@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kthompson256','community'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kthompson256','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jscott257','Scott','Jo','Jo Scott','Financial Aid','jscott257@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jscott257','student'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jscott257','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('mlangenberg258','Langenberg','Mary','Mary Langenberg','Physical Education','mlangenberg258@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mlangenberg258','student'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mlangenberg258','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('khenderson259','Henderson','Karoline','Karoline Henderson','Engineering','khenderson259@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('khenderson259','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('hbutler','Butler','Heather','Heather Butler','Business','hbutler@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('hbutler','student'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('hbutler','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('mbutler261','Butler','Marie','Marie Butler','Advising','mbutler261@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mbutler261','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jmorrison262','Morrison','Jennifer','Jennifer Morrison','Engineering','jmorrison262@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jmorrison262','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('rdavis','Davis','Robert','Robert Davis','Physical Education','rdavis@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('rdavis','alum'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('rdavis','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('kbutler264','Butler','Kim','Kim Butler','Computer Science','kbutler264@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kbutler264','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jwhite265','White','James','James White','Financial Aid','jwhite265@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jwhite265','faculty'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jwhite265','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jwilliams','Williams','James','James Williams','Language Arts','jwilliams@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jwilliams','member'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jwilliams','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('llangenberg','Langenberg','Lisa','Lisa Langenberg','Advising','llangenberg@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('llangenberg','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jhenderson','Henderson','John','John Henderson','Accounting','jhenderson@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jhenderson','alum'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jhenderson','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jlangenberg269','Langenberg','Jennifer','Jennifer Langenberg','Physical Education','jlangenberg269@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jlangenberg269','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('mdoe270','Doe','Michael','Michael Doe','Business','mdoe270@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mdoe270','staff'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mdoe270','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('mbrown271','Brown','Mark','Mark Brown','Engineering','mbrown271@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mbrown271','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jvales272','Vales','John','John Vales','Advising','jvales272@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jvales272','faculty'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jvales272','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('tdavis','Davis','Thomas','Thomas Davis','Account Payable','tdavis@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('tdavis','student'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('tdavis','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('ejohnson','Johnson','Eric','Eric Johnson','Account Payable','ejohnson@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('ejohnson','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jpeterson275','Peterson','John','John Peterson','Accounting','jpeterson275@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jpeterson275','alum'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jpeterson275','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('gsmith','Smith','Greg','Greg Smith','Engineering','gsmith@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('gsmith','student'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('gsmith','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('klopez278','Lopez','Kim','Kim Lopez','Business','klopez278@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('klopez278','member'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('klopez278','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('sclark279','Clark','Sarah','Sarah Clark','Physical Education','sclark279@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('sclark279','community'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('sclark279','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('abrown','Brown','Ann','Ann Brown','Information Technology','abrown@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('abrown','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jwhite281','White','Jim','Jim White','Advising','jwhite281@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jwhite281','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('hgrady','Grady','Heather','Heather Grady','Advising','hgrady@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('hgrady','member'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('hgrady','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('kwhite283','White','Kim','Kim White','Accounting','kwhite283@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kwhite283','staff'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kwhite283','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('bsmith','Smith','Betty','Betty Smith','Information Technology','bsmith@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('bsmith','alum'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('bsmith','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('elopez','Lopez','Eric','Eric Lopez','Computer Science','elopez@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('elopez','alum'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('elopez','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('pclark','Clark','Paul','Paul Clark','Business','pclark@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('pclark','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('glee287','Lee','Greg','Greg Lee','Account Payable','glee287@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('glee287','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jwhite288','White','Jennifer','Jennifer White','Business','jwhite288@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jwhite288','member'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jwhite288','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('rdavis289','Davis','Robert','Robert Davis','Advising','rdavis289@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('rdavis289','faculty'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('rdavis289','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jgasper290','Gasper','James','James Gasper','Financial Aid','jgasper290@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jgasper290','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('nwhite','White','Nancy','Nancy White','Computer Science','nwhite@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('nwhite','faculty'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('nwhite','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('kpeterson292','Peterson','Kiersten','Kiersten Peterson','Purchasing','kpeterson292@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kpeterson292','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('klewis293','Lewis','Kiersten','Kiersten Lewis','Language Arts','klewis293@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('klewis293','student'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('klewis293','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jvales294','Vales','John','John Vales','Purchasing','jvales294@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jvales294','member'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jvales294','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('rdoe','Doe','Robert','Robert Doe','Business','rdoe@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('rdoe','community'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('rdoe','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('bbrown','Brown','Blake','Blake Brown','Account Payable','bbrown@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('bbrown','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('mlangenberg297','Langenberg','Mark','Mark Langenberg','Information Technology','mlangenberg297@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mlangenberg297','staff'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mlangenberg297','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('broberts298','Roberts','Bill','Bill Roberts','Accounting','broberts298@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('broberts298','faculty'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('broberts298','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('ldoe299','Doe','Lori','Lori Doe','Account Payable','ldoe299@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('ldoe299','faculty'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('ldoe299','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('ggasper300','Gasper','Greg','Greg Gasper','Engineering','ggasper300@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('ggasper300','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('lroberts','Roberts','Lori','Lori Roberts','Engineering','lroberts@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('lroberts','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('kwhite302','White','Kiersten','Kiersten White','Purchasing','kwhite302@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kwhite302','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('dwilliams303','Williams','David','David Williams','Engineering','dwilliams303@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('dwilliams303','member'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('dwilliams303','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('bpeterson304','Peterson','Bill','Bill Peterson','Accounting','bpeterson304@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('bpeterson304','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('swalters','Walters','Sarah','Sarah Walters','Purchasing','swalters@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('swalters','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('edavis','Davis','Eric','Eric Davis','Physical Education','edavis@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('edavis','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('bthompson','Thompson','Blake','Blake Thompson','Computer Science','bthompson@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('bthompson','faculty'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('bthompson','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('slangenberg','Langenberg','Sarah','Sarah Langenberg','Information Technology','slangenberg@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('slangenberg','faculty'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('slangenberg','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('dwilliams309','Williams','Donna','Donna Williams','Computer Science','dwilliams309@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('dwilliams309','staff'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('dwilliams309','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('cpeterson','Peterson','Colin','Colin Peterson','Law','cpeterson@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('cpeterson','community'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('cpeterson','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('mlee311','Lee','Mary','Mary Lee','Account Payable','mlee311@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mlee311','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('elopez312','Lopez','Eric','Eric Lopez','Business','elopez312@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('elopez312','faculty'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('elopez312','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('pmartinez313','Martinez','Paul','Paul Martinez','Purchasing','pmartinez313@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('pmartinez313','member'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('pmartinez313','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('lwilliams314','Williams','Lisa','Lisa Williams','Financial Aid','lwilliams314@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('lwilliams314','member'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('lwilliams314','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('kpeterson315','Peterson','Kiersten','Kiersten Peterson','Advising','kpeterson315@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kpeterson315','member'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kpeterson315','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('kvales316','Vales','Kiersten','Kiersten Vales','Law','kvales316@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kvales316','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('hbutler317','Butler','Heather','Heather Butler','Account Payable','hbutler317@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('hbutler317','student'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('hbutler317','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jwalters318','Walters','John','John Walters','Information Technology','jwalters318@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jwalters318','community'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jwalters318','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('kthompson319','Thompson','Kiersten','Kiersten Thompson','Business','kthompson319@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kthompson319','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('mscott320','Scott','Mary','Mary Scott','Accounting','mscott320@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mscott320','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('rbutler','Butler','Robert','Robert Butler','Financial Aid','rbutler@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('rbutler','community'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('rbutler','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('mclark322','Clark','Mark','Mark Clark','Language Arts','mclark322@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mclark322','student'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mclark322','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('hhenderson','Henderson','Heather','Heather Henderson','Law','hhenderson@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('hhenderson','faculty'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('hhenderson','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('hdoe324','Doe','Heather','Heather Doe','Purchasing','hdoe324@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('hdoe324','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('mdoe325','Doe','Mark','Mark Doe','Law','mdoe325@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mdoe325','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('klopez326','Lopez','Kiersten','Kiersten Lopez','Business','klopez326@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('klopez326','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('dlewis327','Lewis','David','David Lewis','Purchasing','dlewis327@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('dlewis327','member'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('dlewis327','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('wlee328','Lee','William','William Lee','Physical Education','wlee328@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('wlee328','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('mthompson329','Thompson','Mary','Mary Thompson','Law','mthompson329@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mthompson329','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('gbrown','Brown','Greg','Greg Brown','Accounting','gbrown@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('gbrown','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('rmartinez331','Martinez','Robert','Robert Martinez','Law','rmartinez331@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('rmartinez331','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('klee','Lee','Karl','Karl Lee','Advising','klee@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('klee','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('mjohnson','Johnson','Marie','Marie Johnson','Financial Aid','mjohnson@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mjohnson','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('lwilliams334','Williams','Lisa','Lisa Williams','Law','lwilliams334@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('lwilliams334','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('tbrown','Brown','Thomas','Thomas Brown','Advising','tbrown@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('tbrown','staff'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('tbrown','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jwalters336','Walters','James','James Walters','Information Technology','jwalters336@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jwalters336','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('lbutler','Butler','Lisa','Lisa Butler','Financial Aid','lbutler@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('lbutler','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('kbrown','Brown','Kiersten','Kiersten Brown','Language Arts','kbrown@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kbrown','student'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kbrown','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('pjohnson','Johnson','Paul','Paul Johnson','Physical Education','pjohnson@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('pjohnson','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jprice340','Price','John','John Price','Engineering','jprice340@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jprice340','student'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jprice340','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jprice341','Price','Jim','Jim Price','Advising','jprice341@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jprice341','student'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jprice341','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('lhenderson342','Henderson','Lisa','Lisa Henderson','Account Payable','lhenderson342@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('lhenderson342','staff'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('lhenderson342','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('kwhite343','White','Kim','Kim White','Language Arts','kwhite343@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kwhite343','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('klopez344','Lopez','Karl','Karl Lopez','Business','klopez344@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('klopez344','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('bgonazles345','Gonazles','Bill','Bill Gonazles','Accounting','bgonazles345@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('bgonazles345','staff'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('bgonazles345','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('apeterson','Peterson','Ann','Ann Peterson','Business','apeterson@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('apeterson','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('dbutler347','Butler','David','David Butler','Information Technology','dbutler347@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('dbutler347','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('speterson','Peterson','Sarah','Sarah Peterson','Purchasing','speterson@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('speterson','staff'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('speterson','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jpeterson349','Peterson','James','James Peterson','Physical Education','jpeterson349@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jpeterson349','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('gjohnson350','Johnson','Greg','Greg Johnson','Physical Education','gjohnson350@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('gjohnson350','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('lthompson','Thompson','Lisa','Lisa Thompson','Accounting','lthompson@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('lthompson','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('nclark','Clark','Nancy','Nancy Clark','Account Payable','nclark@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('nclark','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('swilliams','Williams','Sarah','Sarah Williams','Purchasing','swilliams@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('swilliams','alum'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('swilliams','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jprice354','Price','Jennifer','Jennifer Price','Purchasing','jprice354@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jprice354','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('lclark','Clark','Lori','Lori Clark','Language Arts','lclark@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('lclark','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('ghenderson','Henderson','Greg','Greg Henderson','Physical Education','ghenderson@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('ghenderson','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('egonazles357','Gonazles','Eric','Eric Gonazles','Engineering','egonazles357@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('egonazles357','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('dlangenberg358','Langenberg','Donna','Donna Langenberg','Account Payable','dlangenberg358@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('dlangenberg358','alum'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('dlangenberg358','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('cbrown','Brown','Colin','Colin Brown','Accounting','cbrown@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('cbrown','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('twalters','Walters','Thomas','Thomas Walters','Business','twalters@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('twalters','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('swhite','White','Sarah','Sarah White','Language Arts','swhite@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('swhite','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('rwalters','Walters','Robert','Robert Walters','Account Payable','rwalters@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('rwalters','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('eroberts','Roberts','Erik','Erik Roberts','Purchasing','eroberts@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('eroberts','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('bvales','Vales','Blake','Blake Vales','Financial Aid','bvales@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('bvales','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('bdoe365','Doe','Betty','Betty Doe','Account Payable','bdoe365@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('bdoe365','student'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('bdoe365','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('nlee366','Lee','Nancy','Nancy Lee','Language Arts','nlee366@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('nlee366','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('tmorrison367','Morrison','Thomas','Thomas Morrison','Purchasing','tmorrison367@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('tmorrison367','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('kbutler368','Butler','Kiersten','Kiersten Butler','Physical Education','kbutler368@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kbutler368','staff'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kbutler368','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('bdavis369','Davis','Bill','Bill Davis','Accounting','bdavis369@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('bdavis369','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('kdavis370','Davis','Kiersten','Kiersten Davis','Business','kdavis370@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kdavis370','member'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kdavis370','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('llewis','Lewis','Lori','Lori Lewis','Language Arts','llewis@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('llewis','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('djohnson','Johnson','Donna','Donna Johnson','Information Technology','djohnson@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('djohnson','student'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('djohnson','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jlangenberg373','Langenberg','James','James Langenberg','Information Technology','jlangenberg373@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jlangenberg373','student'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jlangenberg373','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('klangenberg','Langenberg','Karoline','Karoline Langenberg','Advising','klangenberg@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('klangenberg','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jthompson375','Thompson','John','John Thompson','Financial Aid','jthompson375@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jthompson375','community'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jthompson375','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jgonazles','Gonazles','Jennifer','Jennifer Gonazles','Business','jgonazles@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jgonazles','member'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jgonazles','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('mscott377','Scott','Mark','Mark Scott','Business','mscott377@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mscott377','alum'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mscott377','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jsmith378','Smith','Jennifer','Jennifer Smith','Computer Science','jsmith378@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jsmith378','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('mroberts379','Roberts','Marie','Marie Roberts','Financial Aid','mroberts379@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mroberts379','student'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mroberts379','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('kprice','Price','Kiersten','Kiersten Price','Law','kprice@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kprice','faculty'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kprice','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('tclark','Clark','Thomas','Thomas Clark','Account Payable','tclark@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('tclark','alum'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('tclark','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('egasper','Gasper','Erik','Erik Gasper','Financial Aid','egasper@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('egasper','member'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('egasper','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jjohnson383','Johnson','James','James Johnson','Physical Education','jjohnson383@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jjohnson383','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('cdavis','Davis','Colin','Colin Davis','Business','cdavis@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('cdavis','staff'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('cdavis','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('escott','Scott','Eric','Eric Scott','Computer Science','escott@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('escott','student'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('escott','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('kmartinez386','Martinez','Karoline','Karoline Martinez','Account Payable','kmartinez386@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kmartinez386','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('lgrady','Grady','Lori','Lori Grady','Account Payable','lgrady@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('lgrady','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jmartinez388','Martinez','Jo','Jo Martinez','Account Payable','jmartinez388@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jmartinez388','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('alangenberg','Langenberg','Ann','Ann Langenberg','Information Technology','alangenberg@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('alangenberg','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('blewis390','Lewis','Betty','Betty Lewis','Financial Aid','blewis390@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('blewis390','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('pjohnson391','Johnson','Paul','Paul Johnson','Advising','pjohnson391@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('pjohnson391','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('llee392','Lee','Lori','Lori Lee','Engineering','llee392@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('llee392','community'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('llee392','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('slewis','Lewis','Sarah','Sarah Lewis','Business','slewis@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('slewis','faculty'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('slewis','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('nwalters','Walters','Nancy','Nancy Walters','Accounting','nwalters@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('nwalters','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('hscott395','Scott','Heather','Heather Scott','Physical Education','hscott395@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('hscott395','staff'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('hscott395','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('edavis396','Davis','Erik','Erik Davis','Business','edavis396@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('edavis396','community'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('edavis396','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('dlangenberg397','Langenberg','Donna','Donna Langenberg','Physical Education','dlangenberg397@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('dlangenberg397','faculty'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('dlangenberg397','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('plangenberg398','Langenberg','Paul','Paul Langenberg','Engineering','plangenberg398@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('plangenberg398','student'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('plangenberg398','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('mscott399','Scott','Michael','Michael Scott','Language Arts','mscott399@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mscott399','faculty'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mscott399','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jgasper400','Gasper','Jo','Jo Gasper','Engineering','jgasper400@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jgasper400','community'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jgasper400','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('kmartinez401','Martinez','Karoline','Karoline Martinez','Advising','kmartinez401@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kmartinez401','faculty'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kmartinez401','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('cwalters','Walters','Colin','Colin Walters','Financial Aid','cwalters@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('cwalters','student'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('cwalters','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('cgasper','Gasper','Colin','Colin Gasper','Physical Education','cgasper@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('cgasper','faculty'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('cgasper','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jwilliams404','Williams','James','James Williams','Accounting','jwilliams404@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jwilliams404','alum'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jwilliams404','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('rwalters405','Walters','Robert','Robert Walters','Physical Education','rwalters405@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('rwalters405','student'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('rwalters405','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('kvales406','Vales','Karl','Karl Vales','Physical Education','kvales406@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kvales406','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('bscott','Scott','Bill','Bill Scott','Computer Science','bscott@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('bscott','community'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('bscott','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('hmorrison408','Morrison','Heather','Heather Morrison','Advising','hmorrison408@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('hmorrison408','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('eanderson','Anderson','Eric','Eric Anderson','Engineering','eanderson@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('eanderson','student'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('eanderson','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('mlangenberg410','Langenberg','Mark','Mark Langenberg','Financial Aid','mlangenberg410@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mlangenberg410','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('msmith411','Smith','Mark','Mark Smith','Account Payable','msmith411@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('msmith411','staff'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('msmith411','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('wpeterson','Peterson','William','William Peterson','Language Arts','wpeterson@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('wpeterson','faculty'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('wpeterson','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('mgasper413','Gasper','Marie','Marie Gasper','Computer Science','mgasper413@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mgasper413','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('bvales414','Vales','Blake','Blake Vales','Law','bvales414@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('bvales414','student'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('bvales414','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('bgrady415','Grady','Blake','Blake Grady','Law','bgrady415@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('bgrady415','staff'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('bgrady415','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('plee','Lee','Paul','Paul Lee','Advising','plee@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('plee','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('kwilliams','Williams','Kim','Kim Williams','Language Arts','kwilliams@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kwilliams','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('wwilliams418','Williams','William','William Williams','Purchasing','wwilliams418@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('wwilliams418','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jbutler419','Butler','Jennifer','Jennifer Butler','Accounting','jbutler419@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jbutler419','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('hvales420','Vales','Heather','Heather Vales','Accounting','hvales420@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('hvales420','alum'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('hvales420','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('kroberts421','Roberts','Karl','Karl Roberts','Purchasing','kroberts421@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kroberts421','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('bdoe422','Doe','Betty','Betty Doe','Engineering','bdoe422@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('bdoe422','faculty'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('bdoe422','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('dclark','Clark','David','David Clark','Computer Science','dclark@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('dclark','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('mhenderson','Henderson','Michael','Michael Henderson','Purchasing','mhenderson@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mhenderson','student'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mhenderson','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('dhenderson425','Henderson','David','David Henderson','Computer Science','dhenderson425@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('dhenderson425','staff'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('dhenderson425','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('dgonazles','Gonazles','David','David Gonazles','Financial Aid','dgonazles@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('dgonazles','staff'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('dgonazles','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('dgrady427','Grady','David','David Grady','Computer Science','dgrady427@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('dgrady427','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jjohnson428','Johnson','Jennifer','Jennifer Johnson','Engineering','jjohnson428@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jjohnson428','student'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jjohnson428','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jlewis429','Lewis','Jennifer','Jennifer Lewis','Purchasing','jlewis429@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jlewis429','staff'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jlewis429','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('klangenberg430','Langenberg','Kim','Kim Langenberg','Language Arts','klangenberg430@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('klangenberg430','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('ddoe431','Doe','David','David Doe','Language Arts','ddoe431@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('ddoe431','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('escott432','Scott','Eric','Eric Scott','Accounting','escott432@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('escott432','alum'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('escott432','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('lwalters','Walters','Lisa','Lisa Walters','Accounting','lwalters@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('lwalters','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('gsmith434','Smith','Greg','Greg Smith','Business','gsmith434@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('gsmith434','staff'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('gsmith434','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('kwalters','Walters','Karl','Karl Walters','Advising','kwalters@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kwalters','alum'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kwalters','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('tmorrison436','Morrison','Thomas','Thomas Morrison','Account Payable','tmorrison436@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('tmorrison436','alum'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('tmorrison436','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('bbutler437','Butler','Bill','Bill Butler','Financial Aid','bbutler437@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('bbutler437','staff'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('bbutler437','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('mgonazles438','Gonazles','Mark','Mark Gonazles','Account Payable','mgonazles438@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mgonazles438','community'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mgonazles438','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('rwalters439','Walters','Robert','Robert Walters','Purchasing','rwalters439@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('rwalters439','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('kclark440','Clark','Karl','Karl Clark','Engineering','kclark440@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kclark440','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('nvales','Vales','Nancy','Nancy Vales','Account Payable','nvales@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('nvales','student'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('nvales','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jwalters442','Walters','James','James Walters','Accounting','jwalters442@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jwalters442','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('bwilliams','Williams','Bill','Bill Williams','Information Technology','bwilliams@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('bwilliams','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jgrady444','Grady','Jim','Jim Grady','Computer Science','jgrady444@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jgrady444','faculty'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jgrady444','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('escott445','Scott','Erik','Erik Scott','Purchasing','escott445@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('escott445','student'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('escott445','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('bclark446','Clark','Bill','Bill Clark','Language Arts','bclark446@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('bclark446','student'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('bclark446','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('klopez447','Lopez','Kiersten','Kiersten Lopez','Engineering','klopez447@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('klopez447','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('slee','Lee','Sarah','Sarah Lee','Financial Aid','slee@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('slee','community'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('slee','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('dwilliams449','Williams','Donna','Donna Williams','Language Arts','dwilliams449@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('dwilliams449','faculty'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('dwilliams449','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('klewis450','Lewis','Kim','Kim Lewis','Physical Education','klewis450@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('klewis450','alum'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('klewis450','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('elangenberg','Langenberg','Eric','Eric Langenberg','Computer Science','elangenberg@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('elangenberg','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('rvales','Vales','Robert','Robert Vales','Accounting','rvales@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('rvales','member'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('rvales','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jgasper453','Gasper','Jo','Jo Gasper','Computer Science','jgasper453@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jgasper453','student'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jgasper453','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('mgasper454','Gasper','Mark','Mark Gasper','Computer Science','mgasper454@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mgasper454','staff'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mgasper454','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jclark455','Clark','James','James Clark','Law','jclark455@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jclark455','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('bgasper456','Gasper','Betty','Betty Gasper','Advising','bgasper456@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('bgasper456','student'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('bgasper456','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('bwilliams457','Williams','Blake','Blake Williams','Purchasing','bwilliams457@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('bwilliams457','alum'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('bwilliams457','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('kprice458','Price','Karl','Karl Price','Language Arts','kprice458@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kprice458','faculty'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kprice458','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('ksmith','Smith','Kiersten','Kiersten Smith','Language Arts','ksmith@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('ksmith','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('lbutler460','Butler','Lori','Lori Butler','Advising','lbutler460@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('lbutler460','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('mlewis461','Lewis','Mark','Mark Lewis','Computer Science','mlewis461@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mlewis461','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jmorrison462','Morrison','Jo','Jo Morrison','Advising','jmorrison462@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jmorrison462','alum'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jmorrison462','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('msmith463','Smith','Mary','Mary Smith','Law','msmith463@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('msmith463','staff'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('msmith463','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('blopez','Lopez','Blake','Blake Lopez','Computer Science','blopez@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('blopez','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('hdavis','Davis','Heather','Heather Davis','Accounting','hdavis@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('hdavis','community'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('hdavis','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('bwilliams466','Williams','Betty','Betty Williams','Business','bwilliams466@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('bwilliams466','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('gdavis','Davis','Greg','Greg Davis','Accounting','gdavis@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('gdavis','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('mgonazles468','Gonazles','Michael','Michael Gonazles','Advising','mgonazles468@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mgonazles468','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('mlopez469','Lopez','Mary','Mary Lopez','Accounting','mlopez469@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mlopez469','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('eroberts470','Roberts','Eric','Eric Roberts','Accounting','eroberts470@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('eroberts470','student'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('eroberts470','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('bsmith471','Smith','Blake','Blake Smith','Law','bsmith471@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('bsmith471','alum'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('bsmith471','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('rwilliams472','Williams','Robert','Robert Williams','Advising','rwilliams472@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('rwilliams472','staff'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('rwilliams472','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jdavis','Davis','Jennifer','Jennifer Davis','Accounting','jdavis@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jdavis','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('egrady','Grady','Erik','Erik Grady','Language Arts','egrady@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('egrady','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('dpeterson475','Peterson','Donna','Donna Peterson','Accounting','dpeterson475@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('dpeterson475','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('lwilliams476','Williams','Lisa','Lisa Williams','Computer Science','lwilliams476@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('lwilliams476','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('eroberts477','Roberts','Erik','Erik Roberts','Purchasing','eroberts477@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('eroberts477','alum'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('eroberts477','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('pvales','Vales','Paul','Paul Vales','Account Payable','pvales@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('pvales','staff'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('pvales','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jscott479','Scott','Jim','Jim Scott','Purchasing','jscott479@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jscott479','faculty'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jscott479','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('bdavis480','Davis','Betty','Betty Davis','Account Payable','bdavis480@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('bdavis480','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jgrady481','Grady','Jim','Jim Grady','Computer Science','jgrady481@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jgrady481','alum'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jgrady481','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('nbrown482','Brown','Nancy','Nancy Brown','Physical Education','nbrown482@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('nbrown482','community'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('nbrown482','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('blee483','Lee','Betty','Betty Lee','Law','blee483@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('blee483','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jclark484','Clark','Jim','Jim Clark','Accounting','jclark484@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jclark484','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('dbrown','Brown','David','David Brown','Law','dbrown@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('dbrown','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('pgonazles','Gonazles','Paul','Paul Gonazles','Account Payable','pgonazles@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('pgonazles','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('mwhite487','White','Mark','Mark White','Engineering','mwhite487@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mwhite487','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('svales488','Vales','Sarah','Sarah Vales','Accounting','svales488@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('svales488','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('egasper489','Gasper','Eric','Eric Gasper','Language Arts','egasper489@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('egasper489','community'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('egasper489','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('kdoe490','Doe','Kim','Kim Doe','Financial Aid','kdoe490@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kdoe490','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('bmorrison491','Morrison','Bill','Bill Morrison','Advising','bmorrison491@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('bmorrison491','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('lvales','Vales','Lori','Lori Vales','Physical Education','lvales@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('lvales','alum'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('lvales','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('hdavis493','Davis','Heather','Heather Davis','Language Arts','hdavis493@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('hdavis493','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jthompson494','Thompson','James','James Thompson','Information Technology','jthompson494@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jthompson494','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('kdoe495','Doe','Karl','Karl Doe','Physical Education','kdoe495@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kdoe495','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('kwilliams496','Williams','Kim','Kim Williams','Advising','kwilliams496@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kwilliams496','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('egasper497','Gasper','Erik','Erik Gasper','Computer Science','egasper497@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('egasper497','staff'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('egasper497','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('pvales498','Vales','Paul','Paul Vales','Purchasing','pvales498@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('pvales498','staff'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('pvales498','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('sscott','Scott','Sarah','Sarah Scott','Financial Aid','sscott@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('sscott','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('tmartinez','Martinez','Thomas','Thomas Martinez','Information Technology','tmartinez@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('tmartinez','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('mvales501','Vales','Marie','Marie Vales','Information Technology','mvales501@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mvales501','student'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mvales501','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('mhenderson502','Henderson','Mark','Mark Henderson','Account Payable','mhenderson502@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mhenderson502','member'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mhenderson502','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('mdavis503','Davis','Mark','Mark Davis','Law','mdavis503@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mdavis503','staff'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mdavis503','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('mdoe504','Doe','Mary','Mary Doe','Account Payable','mdoe504@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mdoe504','community'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mdoe504','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('bgrady505','Grady','Betty','Betty Grady','Information Technology','bgrady505@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('bgrady505','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('mmartinez506','Martinez','Michael','Michael Martinez','Account Payable','mmartinez506@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mmartinez506','student'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mmartinez506','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('bwalters','Walters','Betty','Betty Walters','Physical Education','bwalters@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('bwalters','community'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('bwalters','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('avales508','Vales','Ann','Ann Vales','Engineering','avales508@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('avales508','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('dlangenberg509','Langenberg','David','David Langenberg','Account Payable','dlangenberg509@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('dlangenberg509','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('tlopez','Lopez','Thomas','Thomas Lopez','Information Technology','tlopez@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('tlopez','staff'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('tlopez','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('lclark511','Clark','Lisa','Lisa Clark','Financial Aid','lclark511@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('lclark511','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('panderson','Anderson','Paul','Paul Anderson','Financial Aid','panderson@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('panderson','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('bjohnson513','Johnson','Bill','Bill Johnson','Purchasing','bjohnson513@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('bjohnson513','community'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('bjohnson513','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('wlopez','Lopez','William','William Lopez','Engineering','wlopez@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('wlopez','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('tmartinez515','Martinez','Thomas','Thomas Martinez','Account Payable','tmartinez515@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('tmartinez515','member'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('tmartinez515','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('wclark','Clark','William','William Clark','Purchasing','wclark@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('wclark','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jwilliams517','Williams','Jim','Jim Williams','Information Technology','jwilliams517@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jwilliams517','member'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jwilliams517','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('hwilliams','Williams','Heather','Heather Williams','Advising','hwilliams@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('hwilliams','student'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('hwilliams','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('llopez519','Lopez','Lori','Lori Lopez','Financial Aid','llopez519@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('llopez519','alum'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('llopez519','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('klopez520','Lopez','Karoline','Karoline Lopez','Business','klopez520@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('klopez520','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('tlee','Lee','Thomas','Thomas Lee','Financial Aid','tlee@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('tlee','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('mscott522','Scott','Mary','Mary Scott','Financial Aid','mscott522@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mscott522','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('danderson523','Anderson','David','David Anderson','Advising','danderson523@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('danderson523','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jgonazles524','Gonazles','Jim','Jim Gonazles','Purchasing','jgonazles524@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jgonazles524','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('hgasper','Gasper','Heather','Heather Gasper','Purchasing','hgasper@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('hgasper','alum'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('hgasper','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('ehenderson','Henderson','Eric','Eric Henderson','Accounting','ehenderson@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('ehenderson','community'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('ehenderson','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('bscott527','Scott','Bill','Bill Scott','Business','bscott527@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('bscott527','member'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('bscott527','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('ewhite','White','Eric','Eric White','Purchasing','ewhite@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('ewhite','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('sroberts','Roberts','Sarah','Sarah Roberts','Language Arts','sroberts@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('sroberts','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('pbutler','Butler','Paul','Paul Butler','Computer Science','pbutler@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('pbutler','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('gdavis531','Davis','Greg','Greg Davis','Information Technology','gdavis531@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('gdavis531','community'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('gdavis531','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('wjohnson532','Johnson','William','William Johnson','Purchasing','wjohnson532@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('wjohnson532','community'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('wjohnson532','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('escott533','Scott','Eric','Eric Scott','Business','escott533@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('escott533','staff'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('escott533','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('kmartinez534','Martinez','Karl','Karl Martinez','Engineering','kmartinez534@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kmartinez534','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('kbrown535','Brown','Kiersten','Kiersten Brown','Accounting','kbrown535@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kbrown535','alum'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kbrown535','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jlangenberg536','Langenberg','John','John Langenberg','Computer Science','jlangenberg536@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jlangenberg536','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('gdavis537','Davis','Greg','Greg Davis','Engineering','gdavis537@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('gdavis537','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('wdoe','Doe','William','William Doe','Business','wdoe@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('wdoe','staff'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('wdoe','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('kthompson539','Thompson','Kiersten','Kiersten Thompson','Computer Science','kthompson539@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kthompson539','faculty'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kthompson539','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('ldavis540','Davis','Lisa','Lisa Davis','Computer Science','ldavis540@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('ldavis540','alum'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('ldavis540','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('bmartinez','Martinez','Blake','Blake Martinez','Business','bmartinez@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('bmartinez','student'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('bmartinez','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('lroberts542','Roberts','Lisa','Lisa Roberts','Language Arts','lroberts542@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('lroberts542','student'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('lroberts542','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('ksmith543','Smith','Karl','Karl Smith','Advising','ksmith543@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('ksmith543','member'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('ksmith543','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jclark544','Clark','John','John Clark','Information Technology','jclark544@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jclark544','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jbutler545','Butler','Jennifer','Jennifer Butler','Law','jbutler545@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jbutler545','faculty'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jbutler545','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jgrady546','Grady','John','John Grady','Engineering','jgrady546@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jgrady546','community'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jgrady546','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jlee547','Lee','Jennifer','Jennifer Lee','Information Technology','jlee547@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jlee547','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('csmith','Smith','Colin','Colin Smith','Accounting','csmith@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('csmith','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('tpeterson','Peterson','Thomas','Thomas Peterson','Financial Aid','tpeterson@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('tpeterson','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('mgonazles550','Gonazles','Marie','Marie Gonazles','Law','mgonazles550@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mgonazles550','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('bwhite551','White','Bill','Bill White','Accounting','bwhite551@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('bwhite551','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('nhenderson552','Henderson','Nancy','Nancy Henderson','Business','nhenderson552@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('nhenderson552','faculty'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('nhenderson552','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('blewis553','Lewis','Bill','Bill Lewis','Physical Education','blewis553@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('blewis553','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('mjohnson554','Johnson','Michael','Michael Johnson','Engineering','mjohnson554@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mjohnson554','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('ganderson555','Anderson','Greg','Greg Anderson','Information Technology','ganderson555@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('ganderson555','community'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('ganderson555','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('slewis556','Lewis','Sarah','Sarah Lewis','Purchasing','slewis556@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('slewis556','student'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('slewis556','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('dvales557','Vales','Donna','Donna Vales','Physical Education','dvales557@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('dvales557','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jlopez558','Lopez','John','John Lopez','Computer Science','jlopez558@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jlopez558','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('kmartinez559','Martinez','Karl','Karl Martinez','Language Arts','kmartinez559@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kmartinez559','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('kthompson560','Thompson','Karl','Karl Thompson','Information Technology','kthompson560@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kthompson560','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('kroberts561','Roberts','Karoline','Karoline Roberts','Accounting','kroberts561@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kroberts561','faculty'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kroberts561','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('mbrown562','Brown','Mary','Mary Brown','Business','mbrown562@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mbrown562','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('blopez563','Lopez','Betty','Betty Lopez','Advising','blopez563@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('blopez563','student'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('blopez563','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jroberts564','Roberts','Jo','Jo Roberts','Information Technology','jroberts564@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jroberts564','staff'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jroberts564','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jlopez565','Lopez','Jennifer','Jennifer Lopez','Advising','jlopez565@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jlopez565','student'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jlopez565','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('bwalters566','Walters','Blake','Blake Walters','Account Payable','bwalters566@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('bwalters566','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('kvales567','Vales','Karoline','Karoline Vales','Engineering','kvales567@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kvales567','member'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kvales567','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('mlopez568','Lopez','Michael','Michael Lopez','Computer Science','mlopez568@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mlopez568','alum'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mlopez568','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('tmorrison569','Morrison','Thomas','Thomas Morrison','Advising','tmorrison569@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('tmorrison569','staff'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('tmorrison569','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('bdavis570','Davis','Blake','Blake Davis','Law','bdavis570@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('bdavis570','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('sdavis','Davis','Sarah','Sarah Davis','Language Arts','sdavis@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('sdavis','staff'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('sdavis','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('banderson572','Anderson','Blake','Blake Anderson','Business','banderson572@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('banderson572','community'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('banderson572','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('wanderson','Anderson','William','William Anderson','Computer Science','wanderson@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('wanderson','community'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('wanderson','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('bprice574','Price','Bill','Bill Price','Advising','bprice574@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('bprice574','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jbutler575','Butler','Jennifer','Jennifer Butler','Account Payable','jbutler575@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jbutler575','community'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jbutler575','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jscott576','Scott','Jennifer','Jennifer Scott','Purchasing','jscott576@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jscott576','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('ddoe577','Doe','David','David Doe','Financial Aid','ddoe577@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('ddoe577','community'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('ddoe577','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('tdavis578','Davis','Thomas','Thomas Davis','Language Arts','tdavis578@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('tdavis578','alum'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('tdavis578','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('slangenberg579','Langenberg','Sarah','Sarah Langenberg','Advising','slangenberg579@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('slangenberg579','faculty'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('slangenberg579','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('bvales580','Vales','Betty','Betty Vales','Engineering','bvales580@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('bvales580','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('lpeterson581','Peterson','Lori','Lori Peterson','Information Technology','lpeterson581@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('lpeterson581','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('bmartinez582','Martinez','Blake','Blake Martinez','Business','bmartinez582@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('bmartinez582','faculty'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('bmartinez582','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('asmith583','Smith','Ann','Ann Smith','Accounting','asmith583@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('asmith583','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('aprice','Price','Ann','Ann Price','Computer Science','aprice@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('aprice','staff'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('aprice','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('ehenderson585','Henderson','Eric','Eric Henderson','Business','ehenderson585@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('ehenderson585','member'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('ehenderson585','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('lmorrison586','Morrison','Lisa','Lisa Morrison','Purchasing','lmorrison586@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('lmorrison586','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('chenderson','Henderson','Colin','Colin Henderson','Accounting','chenderson@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('chenderson','student'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('chenderson','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('lbrown','Brown','Lori','Lori Brown','Language Arts','lbrown@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('lbrown','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('psmith','Smith','Paul','Paul Smith','Advising','psmith@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('psmith','member'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('psmith','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('klee590','Lee','Karl','Karl Lee','Language Arts','klee590@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('klee590','member'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('klee590','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('kdoe591','Doe','Karl','Karl Doe','Law','kdoe591@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kdoe591','community'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kdoe591','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('ldoe592','Doe','Lisa','Lisa Doe','Information Technology','ldoe592@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('ldoe592','alum'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('ldoe592','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('mvales593','Vales','Marie','Marie Vales','Physical Education','mvales593@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mvales593','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('ahenderson594','Henderson','Ann','Ann Henderson','Physical Education','ahenderson594@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('ahenderson594','faculty'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('ahenderson594','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('aroberts','Roberts','Ann','Ann Roberts','Business','aroberts@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('aroberts','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('dthompson','Thompson','David','David Thompson','Language Arts','dthompson@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('dthompson','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('dbrown597','Brown','Donna','Donna Brown','Account Payable','dbrown597@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('dbrown597','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('tmartinez598','Martinez','Thomas','Thomas Martinez','Purchasing','tmartinez598@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('tmartinez598','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('kbrown599','Brown','Karl','Karl Brown','Account Payable','kbrown599@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kbrown599','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('pclark600','Clark','Paul','Paul Clark','Computer Science','pclark600@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('pclark600','member'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('pclark600','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('mprice601','Price','Michael','Michael Price','Language Arts','mprice601@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mprice601','community'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mprice601','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('lbutler602','Butler','Lisa','Lisa Butler','Financial Aid','lbutler602@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('lbutler602','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jhenderson603','Henderson','Jennifer','Jennifer Henderson','Financial Aid','jhenderson603@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jhenderson603','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('kscott604','Scott','Karoline','Karoline Scott','Language Arts','kscott604@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kscott604','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('ddoe605','Doe','David','David Doe','Purchasing','ddoe605@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('ddoe605','faculty'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('ddoe605','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('djohnson606','Johnson','David','David Johnson','Accounting','djohnson606@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('djohnson606','community'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('djohnson606','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('pbutler607','Butler','Paul','Paul Butler','Account Payable','pbutler607@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('pbutler607','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jbutler608','Butler','Jennifer','Jennifer Butler','Physical Education','jbutler608@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jbutler608','community'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jbutler608','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('ksmith609','Smith','Kim','Kim Smith','Information Technology','ksmith609@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('ksmith609','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jpeterson610','Peterson','James','James Peterson','Account Payable','jpeterson610@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jpeterson610','community'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jpeterson610','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('kbutler611','Butler','Karl','Karl Butler','Advising','kbutler611@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kbutler611','member'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kbutler611','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('wwhite','White','William','William White','Account Payable','wwhite@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('wwhite','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('dpeterson613','Peterson','David','David Peterson','Advising','dpeterson613@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('dpeterson613','faculty'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('dpeterson613','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('klopez614','Lopez','Karl','Karl Lopez','Information Technology','klopez614@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('klopez614','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('tjohnson','Johnson','Thomas','Thomas Johnson','Information Technology','tjohnson@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('tjohnson','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('mlee616','Lee','Mark','Mark Lee','Account Payable','mlee616@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mlee616','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jprice617','Price','Jennifer','Jennifer Price','Business','jprice617@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jprice617','member'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jprice617','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('ghenderson618','Henderson','Greg','Greg Henderson','Physical Education','ghenderson618@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('ghenderson618','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('rwalters619','Walters','Robert','Robert Walters','Account Payable','rwalters619@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('rwalters619','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('bmorrison620','Morrison','Betty','Betty Morrison','Computer Science','bmorrison620@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('bmorrison620','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('landerson','Anderson','Lisa','Lisa Anderson','Engineering','landerson@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('landerson','alum'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('landerson','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('landerson622','Anderson','Lori','Lori Anderson','Business','landerson622@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('landerson622','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('pprice','Price','Paul','Paul Price','Accounting','pprice@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('pprice','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('nsmith','Smith','Nancy','Nancy Smith','Advising','nsmith@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('nsmith','student'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('nsmith','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jpeterson625','Peterson','James','James Peterson','Computer Science','jpeterson625@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jpeterson625','community'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jpeterson625','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('mlopez626','Lopez','Mary','Mary Lopez','Purchasing','mlopez626@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mlopez626','community'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mlopez626','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('dvales627','Vales','Donna','Donna Vales','Computer Science','dvales627@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('dvales627','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('ethompson628','Thompson','Erik','Erik Thompson','Business','ethompson628@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('ethompson628','member'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('ethompson628','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('rdoe629','Doe','Robert','Robert Doe','Law','rdoe629@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('rdoe629','student'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('rdoe629','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('cjohnson','Johnson','Colin','Colin Johnson','Purchasing','cjohnson@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('cjohnson','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('mwilliams631','Williams','Michael','Michael Williams','Business','mwilliams631@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mwilliams631','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jpeterson632','Peterson','John','John Peterson','Purchasing','jpeterson632@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jpeterson632','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('bgonazles633','Gonazles','Bill','Bill Gonazles','Account Payable','bgonazles633@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('bgonazles633','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('danderson634','Anderson','David','David Anderson','Engineering','danderson634@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('danderson634','alum'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('danderson634','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('kwalters635','Walters','Kim','Kim Walters','Language Arts','kwalters635@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kwalters635','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('adoe','Doe','Ann','Ann Doe','Law','adoe@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('adoe','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('cdoe','Doe','Colin','Colin Doe','Purchasing','cdoe@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('cdoe','faculty'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('cdoe','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('ddoe638','Doe','David','David Doe','Financial Aid','ddoe638@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('ddoe638','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('edavis639','Davis','Erik','Erik Davis','Advising','edavis639@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('edavis639','student'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('edavis639','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('hwhite640','White','Heather','Heather White','Advising','hwhite640@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('hwhite640','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('dprice641','Price','David','David Price','Financial Aid','dprice641@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('dprice641','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('klopez642','Lopez','Kim','Kim Lopez','Engineering','klopez642@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('klopez642','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('abrown643','Brown','Ann','Ann Brown','Engineering','abrown643@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('abrown643','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('mwhite644','White','Mary','Mary White','Information Technology','mwhite644@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mwhite644','alum'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mwhite644','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('kwhite645','White','Kiersten','Kiersten White','Advising','kwhite645@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kwhite645','faculty'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kwhite645','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('edoe','Doe','Erik','Erik Doe','Advising','edoe@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('edoe','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('mgonazles647','Gonazles','Mark','Mark Gonazles','Account Payable','mgonazles647@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mgonazles647','faculty'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mgonazles647','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jhenderson648','Henderson','James','James Henderson','Language Arts','jhenderson648@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jhenderson648','faculty'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jhenderson648','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('bsmith649','Smith','Bill','Bill Smith','Language Arts','bsmith649@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('bsmith649','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('lmorrison650','Morrison','Lisa','Lisa Morrison','Information Technology','lmorrison650@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('lmorrison650','staff'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('lmorrison650','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('llangenberg651','Langenberg','Lori','Lori Langenberg','Language Arts','llangenberg651@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('llangenberg651','faculty'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('llangenberg651','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jwalters652','Walters','Jim','Jim Walters','Physical Education','jwalters652@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jwalters652','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('tjohnson653','Johnson','Thomas','Thomas Johnson','Physical Education','tjohnson653@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('tjohnson653','community'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('tjohnson653','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jwalters654','Walters','Jo','Jo Walters','Computer Science','jwalters654@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jwalters654','faculty'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jwalters654','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('bmorrison655','Morrison','Betty','Betty Morrison','Language Arts','bmorrison655@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('bmorrison655','student'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('bmorrison655','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('mclark656','Clark','Michael','Michael Clark','Information Technology','mclark656@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mclark656','member'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mclark656','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('ewilliams657','Williams','Erik','Erik Williams','Language Arts','ewilliams657@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('ewilliams657','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jlewis658','Lewis','John','John Lewis','Account Payable','jlewis658@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jlewis658','member'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jlewis658','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('kgrady659','Grady','Kiersten','Kiersten Grady','Account Payable','kgrady659@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kgrady659','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('wmartinez','Martinez','William','William Martinez','Language Arts','wmartinez@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('wmartinez','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('pwilliams','Williams','Paul','Paul Williams','Advising','pwilliams@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('pwilliams','community'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('pwilliams','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('kjohnson662','Johnson','Kim','Kim Johnson','Accounting','kjohnson662@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kjohnson662','member'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kjohnson662','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('smartinez663','Martinez','Sarah','Sarah Martinez','Business','smartinez663@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('smartinez663','staff'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('smartinez663','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('mvales664','Vales','Marie','Marie Vales','Account Payable','mvales664@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mvales664','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('klangenberg665','Langenberg','Karl','Karl Langenberg','Purchasing','klangenberg665@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('klangenberg665','staff'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('klangenberg665','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('msmith666','Smith','Marie','Marie Smith','Advising','msmith666@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('msmith666','student'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('msmith666','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('mvales667','Vales','Mark','Mark Vales','Law','mvales667@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mvales667','alum'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mvales667','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jwalters668','Walters','James','James Walters','Engineering','jwalters668@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jwalters668','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('pgonazles669','Gonazles','Paul','Paul Gonazles','Physical Education','pgonazles669@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('pgonazles669','member'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('pgonazles669','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('dvales670','Vales','Donna','Donna Vales','Advising','dvales670@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('dvales670','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('dclark671','Clark','David','David Clark','Purchasing','dclark671@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('dclark671','staff'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('dclark671','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('bdoe672','Doe','Betty','Betty Doe','Language Arts','bdoe672@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('bdoe672','member'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('bdoe672','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('mbrown673','Brown','Mark','Mark Brown','Financial Aid','mbrown673@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mbrown673','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('kdoe674','Doe','Karoline','Karoline Doe','Account Payable','kdoe674@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kdoe674','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('wthompson675','Thompson','William','William Thompson','Engineering','wthompson675@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('wthompson675','faculty'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('wthompson675','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('dmorrison676','Morrison','David','David Morrison','Engineering','dmorrison676@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('dmorrison676','student'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('dmorrison676','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('edoe677','Doe','Erik','Erik Doe','Advising','edoe677@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('edoe677','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('nlangenberg','Langenberg','Nancy','Nancy Langenberg','Computer Science','nlangenberg@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('nlangenberg','staff'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('nlangenberg','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('kpeterson679','Peterson','Karl','Karl Peterson','Accounting','kpeterson679@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kpeterson679','alum'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kpeterson679','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('hgonazles','Gonazles','Heather','Heather Gonazles','Accounting','hgonazles@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('hgonazles','staff'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('hgonazles','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('droberts','Roberts','Donna','Donna Roberts','Law','droberts@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('droberts','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('dgonazles682','Gonazles','David','David Gonazles','Information Technology','dgonazles682@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('dgonazles682','staff'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('dgonazles682','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('mmorrison','Morrison','Mark','Mark Morrison','Physical Education','mmorrison@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mmorrison','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('cmorrison684','Morrison','Colin','Colin Morrison','Accounting','cmorrison684@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('cmorrison684','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jlewis685','Lewis','Jim','Jim Lewis','Business','jlewis685@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jlewis685','staff'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jlewis685','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jjohnson686','Johnson','Jennifer','Jennifer Johnson','Law','jjohnson686@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jjohnson686','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('elee','Lee','Erik','Erik Lee','Information Technology','elee@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('elee','student'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('elee','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('ddoe688','Doe','Donna','Donna Doe','Information Technology','ddoe688@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('ddoe688','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('droberts689','Roberts','Donna','Donna Roberts','Financial Aid','droberts689@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('droberts689','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('mgonazles690','Gonazles','Mary','Mary Gonazles','Purchasing','mgonazles690@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mgonazles690','member'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mgonazles690','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('awilliams','Williams','Ann','Ann Williams','Information Technology','awilliams@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('awilliams','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('gwalters','Walters','Greg','Greg Walters','Purchasing','gwalters@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('gwalters','faculty'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('gwalters','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('wgonazles','Gonazles','William','William Gonazles','Information Technology','wgonazles@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('wgonazles','student'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('wgonazles','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('mlewis694','Lewis','Michael','Michael Lewis','Account Payable','mlewis694@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mlewis694','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('avales695','Vales','Ann','Ann Vales','Account Payable','avales695@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('avales695','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('mjohnson696','Johnson','Michael','Michael Johnson','Business','mjohnson696@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mjohnson696','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('kanderson','Anderson','Kim','Kim Anderson','Computer Science','kanderson@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kanderson','community'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kanderson','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('troberts','Roberts','Thomas','Thomas Roberts','Computer Science','troberts@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('troberts','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('dlewis699','Lewis','David','David Lewis','Account Payable','dlewis699@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('dlewis699','student'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('dlewis699','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('dwalters700','Walters','Donna','Donna Walters','Information Technology','dwalters700@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('dwalters700','student'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('dwalters700','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('kbrown701','Brown','Kim','Kim Brown','Law','kbrown701@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kbrown701','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('ewhite702','White','Erik','Erik White','Language Arts','ewhite702@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('ewhite702','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('lwalters703','Walters','Lori','Lori Walters','Business','lwalters703@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('lwalters703','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('alangenberg704','Langenberg','Ann','Ann Langenberg','Financial Aid','alangenberg704@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('alangenberg704','alum'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('alangenberg704','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('bbrown705','Brown','Bill','Bill Brown','Information Technology','bbrown705@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('bbrown705','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('blangenberg','Langenberg','Blake','Blake Langenberg','Information Technology','blangenberg@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('blangenberg','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('mlewis707','Lewis','Michael','Michael Lewis','Accounting','mlewis707@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mlewis707','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('ksmith708','Smith','Karl','Karl Smith','Computer Science','ksmith708@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('ksmith708','student'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('ksmith708','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('clopez','Lopez','Colin','Colin Lopez','Language Arts','clopez@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('clopez','alum'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('clopez','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('mclark710','Clark','Mark','Mark Clark','Purchasing','mclark710@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mclark710','student'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mclark710','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('tprice','Price','Thomas','Thomas Price','Computer Science','tprice@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('tprice','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('klewis712','Lewis','Karl','Karl Lewis','Financial Aid','klewis712@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('klewis712','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('mbutler713','Butler','Marie','Marie Butler','Physical Education','mbutler713@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mbutler713','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('mmorrison714','Morrison','Mark','Mark Morrison','Purchasing','mmorrison714@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mmorrison714','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('gsmith715','Smith','Greg','Greg Smith','Account Payable','gsmith715@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('gsmith715','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('randerson','Anderson','Robert','Robert Anderson','Accounting','randerson@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('randerson','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('klangenberg717','Langenberg','Kiersten','Kiersten Langenberg','Information Technology','klangenberg717@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('klangenberg717','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('mlangenberg718','Langenberg','Mary','Mary Langenberg','Financial Aid','mlangenberg718@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mlangenberg718','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('plee719','Lee','Paul','Paul Lee','Information Technology','plee719@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('plee719','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('dclark720','Clark','Donna','Donna Clark','Advising','dclark720@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('dclark720','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('bbrown721','Brown','Blake','Blake Brown','Physical Education','bbrown721@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('bbrown721','student'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('bbrown721','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('bvales722','Vales','Blake','Blake Vales','Computer Science','bvales722@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('bvales722','alum'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('bvales722','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('emartinez','Martinez','Erik','Erik Martinez','Accounting','emartinez@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('emartinez','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('kgonazles','Gonazles','Karl','Karl Gonazles','Financial Aid','kgonazles@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kgonazles','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('lvales725','Vales','Lisa','Lisa Vales','Law','lvales725@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('lvales725','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('kgrady726','Grady','Karl','Karl Grady','Account Payable','kgrady726@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kgrady726','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('aanderson727','Anderson','Ann','Ann Anderson','Language Arts','aanderson727@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('aanderson727','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('awhite728','White','Ann','Ann White','Advising','awhite728@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('awhite728','member'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('awhite728','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('lwilliams729','Williams','Lori','Lori Williams','Law','lwilliams729@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('lwilliams729','community'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('lwilliams729','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('bclark730','Clark','Bill','Bill Clark','Advising','bclark730@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('bclark730','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('dwilliams731','Williams','David','David Williams','Business','dwilliams731@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('dwilliams731','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('dwilliams732','Williams','David','David Williams','Information Technology','dwilliams732@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('dwilliams732','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('dlewis733','Lewis','David','David Lewis','Account Payable','dlewis733@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('dlewis733','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('ndoe','Doe','Nancy','Nancy Doe','Purchasing','ndoe@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('ndoe','student'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('ndoe','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jjohnson735','Johnson','Jennifer','Jennifer Johnson','Language Arts','jjohnson735@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jjohnson735','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jgonazles736','Gonazles','Jennifer','Jennifer Gonazles','Computer Science','jgonazles736@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jgonazles736','community'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jgonazles736','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('lprice','Price','Lisa','Lisa Price','Advising','lprice@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('lprice','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('rdoe738','Doe','Robert','Robert Doe','Advising','rdoe738@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('rdoe738','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('dbrown739','Brown','David','David Brown','Computer Science','dbrown739@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('dbrown739','staff'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('dbrown739','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('handerson740','Anderson','Heather','Heather Anderson','Law','handerson740@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('handerson740','student'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('handerson740','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jmartinez741','Martinez','Jo','Jo Martinez','Account Payable','jmartinez741@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jmartinez741','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('agonazles','Gonazles','Ann','Ann Gonazles','Account Payable','agonazles@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('agonazles','alum'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('agonazles','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('edavis743','Davis','Erik','Erik Davis','Purchasing','edavis743@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('edavis743','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jpeterson744','Peterson','James','James Peterson','Purchasing','jpeterson744@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jpeterson744','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('bprice745','Price','Betty','Betty Price','Account Payable','bprice745@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('bprice745','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jwilliams746','Williams','Jim','Jim Williams','Language Arts','jwilliams746@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jwilliams746','member'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jwilliams746','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('rroberts','Roberts','Robert','Robert Roberts','Financial Aid','rroberts@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('rroberts','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('kroberts748','Roberts','Karl','Karl Roberts','Account Payable','kroberts748@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kroberts748','student'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kroberts748','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('janderson749','Anderson','Jim','Jim Anderson','Law','janderson749@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('janderson749','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('broberts750','Roberts','Bill','Bill Roberts','Business','broberts750@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('broberts750','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('elopez751','Lopez','Erik','Erik Lopez','Physical Education','elopez751@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('elopez751','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('manderson752','Anderson','Michael','Michael Anderson','Account Payable','manderson752@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('manderson752','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('kbutler753','Butler','Karoline','Karoline Butler','Purchasing','kbutler753@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kbutler753','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('gclark','Clark','Greg','Greg Clark','Engineering','gclark@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('gclark','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jwilliams755','Williams','Jo','Jo Williams','Language Arts','jwilliams755@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jwilliams755','alum'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jwilliams755','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('llopez756','Lopez','Lori','Lori Lopez','Law','llopez756@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('llopez756','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('khenderson757','Henderson','Kim','Kim Henderson','Purchasing','khenderson757@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('khenderson757','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('cjohnson758','Johnson','Colin','Colin Johnson','Engineering','cjohnson758@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('cjohnson758','staff'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('cjohnson758','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('kgasper759','Gasper','Kim','Kim Gasper','Account Payable','kgasper759@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kgasper759','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jlewis760','Lewis','James','James Lewis','Engineering','jlewis760@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jlewis760','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('llee761','Lee','Lori','Lori Lee','Computer Science','llee761@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('llee761','alum'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('llee761','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('rvales762','Vales','Robert','Robert Vales','Physical Education','rvales762@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('rvales762','faculty'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('rvales762','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jgasper763','Gasper','John','John Gasper','Financial Aid','jgasper763@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jgasper763','member'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jgasper763','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('mprice764','Price','Marie','Marie Price','Accounting','mprice764@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mprice764','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('asmith765','Smith','Ann','Ann Smith','Law','asmith765@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('asmith765','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('kanderson766','Anderson','Kiersten','Kiersten Anderson','Account Payable','kanderson766@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kanderson766','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('tbrown767','Brown','Thomas','Thomas Brown','Account Payable','tbrown767@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('tbrown767','student'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('tbrown767','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('kvales768','Vales','Karoline','Karoline Vales','Law','kvales768@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kvales768','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jhenderson769','Henderson','Jo','Jo Henderson','Law','jhenderson769@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jhenderson769','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jjohnson770','Johnson','James','James Johnson','Language Arts','jjohnson770@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jjohnson770','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('wroberts','Roberts','William','William Roberts','Law','wroberts@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('wroberts','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('cpeterson772','Peterson','Colin','Colin Peterson','Purchasing','cpeterson772@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('cpeterson772','staff'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('cpeterson772','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('tdoe','Doe','Thomas','Thomas Doe','Business','tdoe@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('tdoe','community'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('tdoe','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('hroberts','Roberts','Heather','Heather Roberts','Account Payable','hroberts@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('hroberts','community'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('hroberts','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('mprice775','Price','Michael','Michael Price','Physical Education','mprice775@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mprice775','member'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mprice775','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('lroberts776','Roberts','Lori','Lori Roberts','Purchasing','lroberts776@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('lroberts776','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('mdavis777','Davis','Marie','Marie Davis','Financial Aid','mdavis777@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mdavis777','member'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mdavis777','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('kgonazles778','Gonazles','Karoline','Karoline Gonazles','Physical Education','kgonazles778@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kgonazles778','student'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kgonazles778','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('mvales779','Vales','Mary','Mary Vales','Accounting','mvales779@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mvales779','student'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mvales779','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jdoe780','Doe','Jo','Jo Doe','Business','jdoe780@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jdoe780','community'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jdoe780','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('dmartinez','Martinez','David','David Martinez','Business','dmartinez@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('dmartinez','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('dvales782','Vales','David','David Vales','Financial Aid','dvales782@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('dvales782','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('tprice783','Price','Thomas','Thomas Price','Engineering','tprice783@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('tprice783','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('dmorrison784','Morrison','Donna','Donna Morrison','Physical Education','dmorrison784@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('dmorrison784','alum'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('dmorrison784','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('dgonazles785','Gonazles','David','David Gonazles','Computer Science','dgonazles785@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('dgonazles785','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('swalters786','Walters','Sarah','Sarah Walters','Computer Science','swalters786@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('swalters786','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('hpeterson','Peterson','Heather','Heather Peterson','Accounting','hpeterson@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('hpeterson','staff'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('hpeterson','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jlee788','Lee','Jennifer','Jennifer Lee','Law','jlee788@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jlee788','student'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jlee788','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('nlopez','Lopez','Nancy','Nancy Lopez','Engineering','nlopez@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('nlopez','community'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('nlopez','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('kwhite790','White','Kim','Kim White','Engineering','kwhite790@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kwhite790','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('nbutler','Butler','Nancy','Nancy Butler','Account Payable','nbutler@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('nbutler','staff'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('nbutler','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jroberts792','Roberts','Jo','Jo Roberts','Advising','jroberts792@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jroberts792','member'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jroberts792','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('hclark','Clark','Heather','Heather Clark','Language Arts','hclark@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('hclark','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('nclark794','Clark','Nancy','Nancy Clark','Engineering','nclark794@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('nclark794','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('dpeterson795','Peterson','David','David Peterson','Advising','dpeterson795@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('dpeterson795','staff'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('dpeterson795','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('hbrown796','Brown','Heather','Heather Brown','Account Payable','hbrown796@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('hbrown796','student'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('hbrown796','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('hlewis797','Lewis','Heather','Heather Lewis','Law','hlewis797@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('hlewis797','community'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('hlewis797','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('blewis798','Lewis','Betty','Betty Lewis','Computer Science','blewis798@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('blewis798','member'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('blewis798','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('sroberts799','Roberts','Sarah','Sarah Roberts','Purchasing','sroberts799@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('sroberts799','student'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('sroberts799','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('clewis800','Lewis','Colin','Colin Lewis','Physical Education','clewis800@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('clewis800','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jclark801','Clark','Jim','Jim Clark','Accounting','jclark801@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jclark801','staff'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jclark801','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jvales802','Vales','Jim','Jim Vales','Engineering','jvales802@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jvales802','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jlewis803','Lewis','John','John Lewis','Computer Science','jlewis803@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jlewis803','student'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jlewis803','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jgasper804','Gasper','John','John Gasper','Purchasing','jgasper804@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jgasper804','student'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jgasper804','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('rdavis805','Davis','Robert','Robert Davis','Information Technology','rdavis805@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('rdavis805','community'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('rdavis805','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('dwilliams806','Williams','David','David Williams','Computer Science','dwilliams806@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('dwilliams806','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jscott807','Scott','Jennifer','Jennifer Scott','Financial Aid','jscott807@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jscott807','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('wwilliams808','Williams','William','William Williams','Information Technology','wwilliams808@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('wwilliams808','member'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('wwilliams808','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('edavis809','Davis','Eric','Eric Davis','Engineering','edavis809@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('edavis809','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('mprice810','Price','Marie','Marie Price','Information Technology','mprice810@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mprice810','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('bhenderson','Henderson','Betty','Betty Henderson','Computer Science','bhenderson@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('bhenderson','faculty'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('bhenderson','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('hhenderson812','Henderson','Heather','Heather Henderson','Engineering','hhenderson812@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('hhenderson812','member'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('hhenderson812','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('kscott813','Scott','Karl','Karl Scott','Physical Education','kscott813@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kscott813','faculty'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kscott813','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('ddoe814','Doe','David','David Doe','Law','ddoe814@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('ddoe814','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('ewilliams815','Williams','Erik','Erik Williams','Account Payable','ewilliams815@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('ewilliams815','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jsmith816','Smith','Jo','Jo Smith','Information Technology','jsmith816@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jsmith816','community'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jsmith816','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('lvales817','Vales','Lisa','Lisa Vales','Information Technology','lvales817@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('lvales817','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('lpeterson818','Peterson','Lori','Lori Peterson','Engineering','lpeterson818@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('lpeterson818','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('dgasper','Gasper','David','David Gasper','Purchasing','dgasper@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('dgasper','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('nlangenberg820','Langenberg','Nancy','Nancy Langenberg','Financial Aid','nlangenberg820@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('nlangenberg820','faculty'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('nlangenberg820','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jhenderson821','Henderson','Jo','Jo Henderson','Account Payable','jhenderson821@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jhenderson821','faculty'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jhenderson821','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('ddavis822','Davis','David','David Davis','Purchasing','ddavis822@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('ddavis822','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('kgasper823','Gasper','Karl','Karl Gasper','Business','kgasper823@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kgasper823','faculty'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kgasper823','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jprice824','Price','John','John Price','Language Arts','jprice824@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jprice824','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('aclark','Clark','Ann','Ann Clark','Law','aclark@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('aclark','staff'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('aclark','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jclark826','Clark','Jennifer','Jennifer Clark','Business','jclark826@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jclark826','faculty'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jclark826','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('lmartinez','Martinez','Lori','Lori Martinez','Language Arts','lmartinez@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('lmartinez','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jpeterson828','Peterson','Jim','Jim Peterson','Computer Science','jpeterson828@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jpeterson828','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jdoe829','Doe','Jennifer','Jennifer Doe','Physical Education','jdoe829@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jdoe829','student'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jdoe829','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('nmorrison','Morrison','Nancy','Nancy Morrison','Information Technology','nmorrison@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('nmorrison','member'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('nmorrison','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('ehenderson831','Henderson','Eric','Eric Henderson','Law','ehenderson831@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('ehenderson831','staff'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('ehenderson831','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('kwhite832','White','Kiersten','Kiersten White','Accounting','kwhite832@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kwhite832','member'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kwhite832','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('dhenderson833','Henderson','Donna','Donna Henderson','Physical Education','dhenderson833@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('dhenderson833','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('dbrown834','Brown','Donna','Donna Brown','Accounting','dbrown834@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('dbrown834','community'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('dbrown834','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('manderson835','Anderson','Marie','Marie Anderson','Computer Science','manderson835@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('manderson835','community'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('manderson835','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('ggasper836','Gasper','Greg','Greg Gasper','Engineering','ggasper836@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('ggasper836','community'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('ggasper836','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('mlewis837','Lewis','Marie','Marie Lewis','Accounting','mlewis837@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mlewis837','community'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mlewis837','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('kclark838','Clark','Karl','Karl Clark','Physical Education','kclark838@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kclark838','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('dclark839','Clark','David','David Clark','Account Payable','dclark839@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('dclark839','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('blewis840','Lewis','Blake','Blake Lewis','Physical Education','blewis840@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('blewis840','alum'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('blewis840','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('wlewis','Lewis','William','William Lewis','Account Payable','wlewis@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('wlewis','community'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('wlewis','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jbutler842','Butler','John','John Butler','Language Arts','jbutler842@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jbutler842','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('bbutler843','Butler','Betty','Betty Butler','Law','bbutler843@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('bbutler843','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('gthompson','Thompson','Greg','Greg Thompson','Purchasing','gthompson@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('gthompson','student'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('gthompson','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('glangenberg','Langenberg','Greg','Greg Langenberg','Physical Education','glangenberg@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('glangenberg','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('ajohnson','Johnson','Ann','Ann Johnson','Business','ajohnson@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('ajohnson','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('awhite847','White','Ann','Ann White','Account Payable','awhite847@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('awhite847','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('dhenderson848','Henderson','David','David Henderson','Language Arts','dhenderson848@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('dhenderson848','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('mwilliams849','Williams','Mark','Mark Williams','Business','mwilliams849@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mwilliams849','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('nprice','Price','Nancy','Nancy Price','Business','nprice@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('nprice','member'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('nprice','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('dthompson851','Thompson','Donna','Donna Thompson','Advising','dthompson851@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('dthompson851','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('ebutler852','Butler','Erik','Erik Butler','Information Technology','ebutler852@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('ebutler852','student'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('ebutler852','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('kdavis853','Davis','Kim','Kim Davis','Information Technology','kdavis853@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kdavis853','student'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kdavis853','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('tgasper854','Gasper','Thomas','Thomas Gasper','Computer Science','tgasper854@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('tgasper854','staff'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('tgasper854','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('alangenberg855','Langenberg','Ann','Ann Langenberg','Law','alangenberg855@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('alangenberg855','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('kclark856','Clark','Kim','Kim Clark','Physical Education','kclark856@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kclark856','staff'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kclark856','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('wdavis','Davis','William','William Davis','Engineering','wdavis@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('wdavis','student'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('wdavis','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('kwalters858','Walters','Karoline','Karoline Walters','Business','kwalters858@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kwalters858','alum'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kwalters858','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('eprice859','Price','Erik','Erik Price','Engineering','eprice859@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('eprice859','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('slee860','Lee','Sarah','Sarah Lee','Account Payable','slee860@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('slee860','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jwalters861','Walters','James','James Walters','Advising','jwalters861@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jwalters861','staff'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jwalters861','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('rprice862','Price','Robert','Robert Price','Computer Science','rprice862@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('rprice862','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('tmartinez863','Martinez','Thomas','Thomas Martinez','Physical Education','tmartinez863@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('tmartinez863','staff'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('tmartinez863','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('mclark864','Clark','Mary','Mary Clark','Information Technology','mclark864@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mclark864','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('lwalters865','Walters','Lisa','Lisa Walters','Account Payable','lwalters865@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('lwalters865','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('handerson866','Anderson','Heather','Heather Anderson','Language Arts','handerson866@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('handerson866','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('dhenderson867','Henderson','David','David Henderson','Purchasing','dhenderson867@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('dhenderson867','staff'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('dhenderson867','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('ldoe868','Doe','Lisa','Lisa Doe','Language Arts','ldoe868@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('ldoe868','member'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('ldoe868','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('ggonazles869','Gonazles','Greg','Greg Gonazles','Account Payable','ggonazles869@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('ggonazles869','faculty'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('ggonazles869','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('kanderson870','Anderson','Karoline','Karoline Anderson','Advising','kanderson870@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kanderson870','staff'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kanderson870','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('ajohnson871','Johnson','Ann','Ann Johnson','Advising','ajohnson871@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('ajohnson871','student'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('ajohnson871','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('bgasper872','Gasper','Betty','Betty Gasper','Information Technology','bgasper872@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('bgasper872','member'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('bgasper872','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jlee873','Lee','John','John Lee','Engineering','jlee873@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jlee873','member'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jlee873','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('khenderson874','Henderson','Karoline','Karoline Henderson','Physical Education','khenderson874@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('khenderson874','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jwilliams875','Williams','John','John Williams','Language Arts','jwilliams875@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jwilliams875','member'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jwilliams875','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('nwilliams','Williams','Nancy','Nancy Williams','Law','nwilliams@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('nwilliams','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('kbrown877','Brown','Karoline','Karoline Brown','Information Technology','kbrown877@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kbrown877','member'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kbrown877','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('bthompson878','Thompson','Blake','Blake Thompson','Account Payable','bthompson878@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('bthompson878','student'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('bthompson878','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('rdavis879','Davis','Robert','Robert Davis','Language Arts','rdavis879@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('rdavis879','alum'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('rdavis879','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('gthompson880','Thompson','Greg','Greg Thompson','Purchasing','gthompson880@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('gthompson880','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('bpeterson881','Peterson','Blake','Blake Peterson','Engineering','bpeterson881@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('bpeterson881','community'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('bpeterson881','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('mbrown882','Brown','Marie','Marie Brown','Accounting','mbrown882@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mbrown882','faculty'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mbrown882','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jmartinez883','Martinez','James','James Martinez','Purchasing','jmartinez883@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jmartinez883','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('hwhite884','White','Heather','Heather White','Purchasing','hwhite884@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('hwhite884','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('lhenderson885','Henderson','Lisa','Lisa Henderson','Financial Aid','lhenderson885@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('lhenderson885','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('thenderson','Henderson','Thomas','Thomas Henderson','Financial Aid','thenderson@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('thenderson','staff'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('thenderson','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('sdavis887','Davis','Sarah','Sarah Davis','Business','sdavis887@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('sdavis887','staff'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('sdavis887','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('dclark888','Clark','David','David Clark','Advising','dclark888@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('dclark888','student'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('dclark888','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('dpeterson889','Peterson','David','David Peterson','Computer Science','dpeterson889@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('dpeterson889','staff'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('dpeterson889','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jbutler890','Butler','James','James Butler','Account Payable','jbutler890@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jbutler890','student'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jbutler890','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('ksmith891','Smith','Kiersten','Kiersten Smith','Advising','ksmith891@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('ksmith891','student'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('ksmith891','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('rlopez892','Lopez','Robert','Robert Lopez','Computer Science','rlopez892@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('rlopez892','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('ksmith893','Smith','Kiersten','Kiersten Smith','Law','ksmith893@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('ksmith893','student'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('ksmith893','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jdavis894','Davis','John','John Davis','Accounting','jdavis894@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jdavis894','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('ddoe895','Doe','Donna','Donna Doe','Advising','ddoe895@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('ddoe895','faculty'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('ddoe895','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('msmith896','Smith','Michael','Michael Smith','Information Technology','msmith896@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('msmith896','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('mdavis897','Davis','Michael','Michael Davis','Purchasing','mdavis897@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mdavis897','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('mmartinez898','Martinez','Marie','Marie Martinez','Accounting','mmartinez898@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mmartinez898','student'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mmartinez898','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jlangenberg899','Langenberg','Jennifer','Jennifer Langenberg','Engineering','jlangenberg899@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jlangenberg899','member'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jlangenberg899','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('cdavis900','Davis','Colin','Colin Davis','Advising','cdavis900@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('cdavis900','member'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('cdavis900','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jmartinez901','Martinez','John','John Martinez','Language Arts','jmartinez901@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jmartinez901','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('tmartinez902','Martinez','Thomas','Thomas Martinez','Engineering','tmartinez902@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('tmartinez902','community'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('tmartinez902','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('bprice903','Price','Bill','Bill Price','Law','bprice903@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('bprice903','member'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('bprice903','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jdavis904','Davis','Jo','Jo Davis','Language Arts','jdavis904@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jdavis904','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jmartinez905','Martinez','Jo','Jo Martinez','Information Technology','jmartinez905@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jmartinez905','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('landerson906','Anderson','Lori','Lori Anderson','Advising','landerson906@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('landerson906','alum'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('landerson906','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('rlee','Lee','Robert','Robert Lee','Account Payable','rlee@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('rlee','member'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('rlee','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('dlewis908','Lewis','David','David Lewis','Engineering','dlewis908@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('dlewis908','faculty'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('dlewis908','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jlopez909','Lopez','Jo','Jo Lopez','Physical Education','jlopez909@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jlopez909','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('kgasper910','Gasper','Karoline','Karoline Gasper','Purchasing','kgasper910@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kgasper910','faculty'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kgasper910','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('mscott911','Scott','Michael','Michael Scott','Engineering','mscott911@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mscott911','student'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mscott911','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('smorrison','Morrison','Sarah','Sarah Morrison','Accounting','smorrison@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('smorrison','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('kjohnson913','Johnson','Karl','Karl Johnson','Computer Science','kjohnson913@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kjohnson913','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('bwhite914','White','Bill','Bill White','Law','bwhite914@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('bwhite914','alum'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('bwhite914','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('kgonazles915','Gonazles','Kim','Kim Gonazles','Financial Aid','kgonazles915@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kgonazles915','member'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kgonazles915','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jgasper916','Gasper','Jennifer','Jennifer Gasper','Engineering','jgasper916@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jgasper916','member'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jgasper916','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jlewis917','Lewis','James','James Lewis','Advising','jlewis917@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jlewis917','student'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jlewis917','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('mjohnson918','Johnson','Mark','Mark Johnson','Account Payable','mjohnson918@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mjohnson918','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('ddavis919','Davis','David','David Davis','Account Payable','ddavis919@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('ddavis919','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('dvales920','Vales','Donna','Donna Vales','Business','dvales920@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('dvales920','student'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('dvales920','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('mlangenberg921','Langenberg','Mary','Mary Langenberg','Physical Education','mlangenberg921@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mlangenberg921','staff'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mlangenberg921','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jvales922','Vales','Jim','Jim Vales','Law','jvales922@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jvales922','staff'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jvales922','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('mgrady923','Grady','Mary','Mary Grady','Information Technology','mgrady923@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mgrady923','faculty'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mgrady923','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('hsmith924','Smith','Heather','Heather Smith','Advising','hsmith924@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('hsmith924','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('lgrady925','Grady','Lori','Lori Grady','Accounting','lgrady925@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('lgrady925','community'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('lgrady925','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('gbutler926','Butler','Greg','Greg Butler','Advising','gbutler926@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('gbutler926','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jwhite927','White','Jennifer','Jennifer White','Business','jwhite927@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jwhite927','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('bpeterson928','Peterson','Betty','Betty Peterson','Language Arts','bpeterson928@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('bpeterson928','student'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('bpeterson928','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('nlewis','Lewis','Nancy','Nancy Lewis','Financial Aid','nlewis@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('nlewis','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jroberts930','Roberts','Jennifer','Jennifer Roberts','Purchasing','jroberts930@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jroberts930','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('kpeterson931','Peterson','Kiersten','Kiersten Peterson','Law','kpeterson931@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kpeterson931','member'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kpeterson931','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('lhenderson932','Henderson','Lori','Lori Henderson','Engineering','lhenderson932@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('lhenderson932','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jlewis933','Lewis','James','James Lewis','Language Arts','jlewis933@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jlewis933','student'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jlewis933','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('dlangenberg934','Langenberg','David','David Langenberg','Computer Science','dlangenberg934@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('dlangenberg934','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('kbutler935','Butler','Kim','Kim Butler','Engineering','kbutler935@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kbutler935','student'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kbutler935','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('rjohnson','Johnson','Robert','Robert Johnson','Computer Science','rjohnson@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('rjohnson','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jwalters937','Walters','Jennifer','Jennifer Walters','Information Technology','jwalters937@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jwalters937','alum'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jwalters937','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('kgonazles938','Gonazles','Kiersten','Kiersten Gonazles','Purchasing','kgonazles938@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kgonazles938','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('mgasper939','Gasper','Marie','Marie Gasper','Advising','mgasper939@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mgasper939','staff'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mgasper939','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('klopez940','Lopez','Kim','Kim Lopez','Language Arts','klopez940@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('klopez940','faculty'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('klopez940','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jwhite941','White','Jennifer','Jennifer White','Financial Aid','jwhite941@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jwhite941','alum'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jwhite941','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jgonazles942','Gonazles','James','James Gonazles','Information Technology','jgonazles942@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jgonazles942','alum'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jgonazles942','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('khenderson943','Henderson','Kim','Kim Henderson','Law','khenderson943@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('khenderson943','student'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('khenderson943','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('mhenderson944','Henderson','Mark','Mark Henderson','Information Technology','mhenderson944@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mhenderson944','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('cprice','Price','Colin','Colin Price','Advising','cprice@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('cprice','community'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('cprice','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('janderson946','Anderson','Jim','Jim Anderson','Accounting','janderson946@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('janderson946','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('ejohnson947','Johnson','Erik','Erik Johnson','Account Payable','ejohnson947@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('ejohnson947','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('janderson948','Anderson','John','John Anderson','Accounting','janderson948@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('janderson948','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('lhenderson949','Henderson','Lisa','Lisa Henderson','Account Payable','lhenderson949@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('lhenderson949','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('mlee950','Lee','Mary','Mary Lee','Computer Science','mlee950@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mlee950','staff'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mlee950','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('ewilliams951','Williams','Eric','Eric Williams','Physical Education','ewilliams951@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('ewilliams951','member'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('ewilliams951','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('plewis','Lewis','Paul','Paul Lewis','Financial Aid','plewis@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('plewis','member'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('plewis','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('mclark953','Clark','Marie','Marie Clark','Physical Education','mclark953@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mclark953','member'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mclark953','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('dwilliams954','Williams','David','David Williams','Account Payable','dwilliams954@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('dwilliams954','alum'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('dwilliams954','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('rroberts955','Roberts','Robert','Robert Roberts','Engineering','rroberts955@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('rroberts955','faculty'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('rroberts955','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jsmith956','Smith','Jo','Jo Smith','Accounting','jsmith956@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jsmith956','faculty'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jsmith956','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jwhite957','White','Jennifer','Jennifer White','Financial Aid','jwhite957@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jwhite957','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('bwalters958','Walters','Bill','Bill Walters','Law','bwalters958@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('bwalters958','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('mhenderson959','Henderson','Mark','Mark Henderson','Accounting','mhenderson959@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mhenderson959','student'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mhenderson959','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('mgasper960','Gasper','Mark','Mark Gasper','Information Technology','mgasper960@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mgasper960','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('ppeterson','Peterson','Paul','Paul Peterson','Law','ppeterson@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('ppeterson','staff'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('ppeterson','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jscott962','Scott','John','John Scott','Language Arts','jscott962@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jscott962','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('hdavis963','Davis','Heather','Heather Davis','Physical Education','hdavis963@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('hdavis963','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('pwhite','White','Paul','Paul White','Information Technology','pwhite@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('pwhite','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('dwalters965','Walters','David','David Walters','Advising','dwalters965@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('dwalters965','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('blopez966','Lopez','Blake','Blake Lopez','Information Technology','blopez966@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('blopez966','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('bgrady967','Grady','Blake','Blake Grady','Information Technology','bgrady967@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('bgrady967','alum'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('bgrady967','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('bclark968','Clark','Bill','Bill Clark','Account Payable','bclark968@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('bclark968','community'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('bclark968','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('lprice969','Price','Lisa','Lisa Price','Financial Aid','lprice969@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('lprice969','alum'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('lprice969','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('wpeterson970','Peterson','William','William Peterson','Law','wpeterson970@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('wpeterson970','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('banderson971','Anderson','Betty','Betty Anderson','Account Payable','banderson971@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('banderson971','staff'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('banderson971','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('hprice972','Price','Heather','Heather Price','Physical Education','hprice972@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('hprice972','alum'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('hprice972','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('mpeterson973','Peterson','Marie','Marie Peterson','Computer Science','mpeterson973@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mpeterson973','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('ngonazles','Gonazles','Nancy','Nancy Gonazles','Account Payable','ngonazles@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('ngonazles','alum'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('ngonazles','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jvales975','Vales','James','James Vales','Language Arts','jvales975@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jvales975','staff'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jvales975','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jpeterson976','Peterson','Jennifer','Jennifer Peterson','Advising','jpeterson976@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jpeterson976','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('kmartinez977','Martinez','Kim','Kim Martinez','Account Payable','kmartinez977@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kmartinez977','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('pbrown978','Brown','Paul','Paul Brown','Accounting','pbrown978@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('pbrown978','student'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('pbrown978','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('dbutler979','Butler','Donna','Donna Butler','Engineering','dbutler979@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('dbutler979','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('hmorrison980','Morrison','Heather','Heather Morrison','Business','hmorrison980@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('hmorrison980','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('cdoe981','Doe','Colin','Colin Doe','Financial Aid','cdoe981@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('cdoe981','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('alee','Lee','Ann','Ann Lee','Account Payable','alee@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('alee','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jlee983','Lee','Jo','Jo Lee','Computer Science','jlee983@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jlee983','community'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jlee983','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('mprice984','Price','Marie','Marie Price','Physical Education','mprice984@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mprice984','faculty'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mprice984','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jbutler985','Butler','Jo','Jo Butler','Purchasing','jbutler985@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jbutler985','student'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jbutler985','staff'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('mmartinez986','Martinez','Mary','Mary Martinez','Engineering','mmartinez986@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('mmartinez986','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('hmartinez','Martinez','Heather','Heather Martinez','Physical Education','hmartinez@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('hmartinez','alum'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('twalters988','Walters','Thomas','Thomas Walters','Physical Education','twalters988@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('twalters988','faculty'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('twalters988','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('kwilliams989','Williams','Karl','Karl Williams','Financial Aid','kwilliams989@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kwilliams989','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('emartinez990','Martinez','Eric','Eric Martinez','Information Technology','emartinez990@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('emartinez990','faculty'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('emartinez990','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('klee991','Lee','Karoline','Karoline Lee','Language Arts','klee991@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('klee991','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('bjohnson992','Johnson','Bill','Bill Johnson','Purchasing','bjohnson992@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('bjohnson992','faculty'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('bjohnson992','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('wdavis993','Davis','William','William Davis','Financial Aid','wdavis993@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('wdavis993','staff'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('wdavis993','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('bgonazles994','Gonazles','Blake','Blake Gonazles','Account Payable','bgonazles994@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('bgonazles994','student'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('bgonazles994','community'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('jvales995','Vales','Jennifer','Jennifer Vales','Accounting','jvales995@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jvales995','member'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('jvales995','student'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('kjohnson996','Johnson','Kiersten','Kiersten Johnson','Computer Science','kjohnson996@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('kjohnson996','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('ggrady','Grady','Greg','Greg Grady','Purchasing','ggrady@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('ggrady','student'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('ggrady','faculty'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('lbutler998','Butler','Lori','Lori Butler','Information Technology','lbutler998@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('lbutler998','member'); -INSERT INTO SIS_PERSONS (uid, surname, givenName, fullName, department, mail) VALUES ('tgasper999','Gasper','Thomas','Thomas Gasper','Business','tgasper999@example.edu'); -INSERT INTO SIS_AFFILIATIONS (uid, affiliation) VALUES ('tgasper999','member'); diff --git a/shibboleth-integration/mp-gr/targets/Dockerfile b/shibboleth-integration/mp-gr/targets/Dockerfile deleted file mode 100644 index b68692a..0000000 --- a/shibboleth-integration/mp-gr/targets/Dockerfile +++ /dev/null @@ -1,31 +0,0 @@ -FROM centos:centos7 - -LABEL author="tier-packaging@internet2.edu " - -COPY container_files/seed-data/ /seed-data/ - -RUN yum install -y epel-release \ - && yum update -y \ - && yum install -y mariadb-server mariadb \ - && yum clean all \ - && rm -rf /var/cache/yum - -RUN mysql_install_db \ - && chown -R mysql:mysql /var/lib/mysql/ \ - && sed -i 's/^\(bind-address\s.*\)/# \1/' /etc/my.cnf \ - && sed -i 's/^\(log_error\s.*\)/# \1/' /etc/my.cnf \ - && sed -i 's/\[mysqld\]/\[mysqld\]\ncharacter_set_server = utf8/' /etc/my.cnf \ - && sed -i 's/\[mysqld\]/\[mysqld\]\ncollation_server = utf8_general_ci/' /etc/my.cnf \ - && sed -i 's/\[mysqld\]/\[mysqld\]\nport = 3306/' /etc/my.cnf \ - && cat /etc/my.cnf \ - && echo "/usr/bin/mysqld_safe &" > /tmp/config \ - && echo "mysqladmin --silent --wait=30 ping || exit 1" >> /tmp/config \ - && echo "mysql -e 'GRANT ALL PRIVILEGES ON *.* TO \"root\"@\"%\" WITH GRANT OPTION;'" >> /tmp/config \ - && echo "mysql -e 'CREATE DATABASE target CHARACTER SET utf8 COLLATE utf8_bin;'" >> /tmp/config \ - && bash /tmp/config \ - && rm -f /tmp/config \ - && mysql target < /seed-data/target.sql - -EXPOSE 3306 - -CMD mysqld_safe diff --git a/shibboleth-integration/mp-gr/targets/container_files/seed-data/target.sql b/shibboleth-integration/mp-gr/targets/container_files/seed-data/target.sql deleted file mode 100644 index 8b13789..0000000 --- a/shibboleth-integration/mp-gr/targets/container_files/seed-data/target.sql +++ /dev/null @@ -1 +0,0 @@ - diff --git a/shibboleth-integration/upload-objects b/shibboleth-integration/upload-objects deleted file mode 100644 index 37aaf61..0000000 --- a/shibboleth-integration/upload-objects +++ /dev/null @@ -1,17 +0,0 @@ -#!/bin/bash - -function upload () { - local filename=$1 - local regex="midpoint-objects/(.*)/(.*)" - if [[ $filename =~ $regex ]] - then - type="${BASH_REMATCH[1]}" - oid=`cat $filename | sed -n 's:.*oid=\"\([A-Za-z0-9\-]*\)\".*:\1:p' | sed -n '1 p'` - echo "Uploading $filename ($type, $oid)" - curl --user administrator:5ecr3t -H "Content-Type: application/xml" -X PUT "http://localhost:8080/midpoint/ws/rest/$type/$oid?options=overwrite&options=raw" -d @$filename - else - echo "Skipping $filename" - fi -} - -find midpoint-objects -name "*.xml" | while read filename; do upload $filename; done