see the details: link
Students can individually request access here
Access to bast.hpc.fau.edu using ssh (e.g., ssh yangk@bast.hpc.fau.edu)
We will use the FAU Oracle database system to practice SQL queries. Please see the following steps to access the oracle DBMS.
1) Access bast.hpc.fau.edu server IF YOU ARE OUT OF CAMPUS. (Optional)
2) Access to oraclelinux.eng.fau.edu using ssh (e.g., Windows Terminal, MobaXterm, or putty). For example, my id is yangk. Therefore, I can use the following command to access the Linux server: ssh yangk@oraclelinux.eng.fau.edu (The default password is 'oracle')
3) (Optional) Change your Linux passsword using the 'passwd' command.
4) Enter the SQL*Plus command: sqlplus. For example, my id is yangk. Therefore I can use the following command to access the Oracle database server: sqlplus yangk
5) When prompted, enter your Oracle Database username and password. (The default password is 'oracle')
6) (Optional) Change your Oracle password using the 'password' command.
If you want to install the Oracle database in your computer, please use the following download link here (Optional, but not recommended).
Your submission consists of two parts: 1) all answers for Question and Lab parts (e.g., SQL statements) and 2) spool file for outcomes of queries.
Please note that the first file should include the SQL statements in the Lab part.
SPOOL [file_name] : Stores query results in a file.
(e.g., SQL> spool Z00000001_KwangSoo_Yang_HW01_spool.txt)
The SPOOL command creates the spool file on the current directory.
(Optional) You can create the spool file to a specific directory
(e.g., SQL> spool /home/yangk/spool/Z00000001_KwangSoo_Yang_HW01_spool.txt)
See the details: here
CAT [file_name] : Reads data from the file and gives their content as output.
(e.g., cat Z00000001_KwangSoo_Yang_HW01_spool.txt)
Please check if the spool file contains all SQL statemtnes and outputs.
Use the sftp command
SFTP (SSH File Transfer Protocol) is a secure file protocol that is used to access, manage, and transfer files over an encrypted SSH transport.
Please note that if you use sftp in the linux server (i.e., oraclelinux.eng.fau.edu), then the downloaded file overwrites the orignal file.
See the deatils: here
1) Reservation
2) Company
Retrieve primary keys
Retrieve foreign keys
1) Access VMware through https://portal.eng.fau.edu to an external site.
Two-factor and multi-factor authentication (i.e, Duo) is required to access VMware. Please see the following attached files.
See the CoECS VMWare Guilde here
Make everything as simple as possible, but not simpler.
Albert Einstein