Lecture 1: Introduction to Research — [📝Lecture Notebooks] [
Lecture 2: Introduction to Python — [📝Lecture Notebooks] [
Lecture 3: Introduction to NumPy — [📝Lecture Notebooks] [
Lecture 4: Introduction to pandas — [📝Lecture Notebooks] [
Lecture 5: Plotting Data — [📝Lecture Notebooks] [[
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Tail an apache log an put some colors into the output | |
# www.davideg.es | |
shopt -s expand_aliases | |
alias grey-grep="GREP_COLOR='1;30' grep -E --color=always --line-buffered" | |
alias red-grep="GREP_COLOR='1;31' grep -E --color=always --line-buffered" | |
alias green-grep="GREP_COLOR='1;32' grep -E --color=always --line-buffered" | |
alias yellow-grep="GREP_COLOR='1;33' grep -E --color=always --line-buffered" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- Shared Pool | |
select * from table(dbms_xplan.display_cursor('SQL_ID',null,'ALL')); | |
-- AWR | |
select * from table(dbms_xplan.display_awr('SQL_ID',null,null,'ALL')); | |
select * from table(dbms_xplan.display_awr('SQL_ID',null,DBID,'ALL')); |