MSSQL

[top] Start sqlplus

 sqlplus /nolog
Start the sqlplus program and do not login.


[top] Connect

sqlplus> connect sys/password@oraclass as sysdba
Connect as the "sys" user to the oraclass database.


[top] Run script file

sqlplus> START <path to script>
			
OR

sqlplus> @<path to script>
Runs an sql script from pecified file path.


[top] Show current login

sqlplus> show user
Runs an sql script from pecified file path.