Best Wallpaper Sites

I decided I needed a new wallpaper, and I just didn’t have time to find and use one of my own pictures.

I’m not sure what I’d do without Lifehacker stories…

http://lifehacker.biz/articles/best-wallpaper-websites/

Found this:

Over at www.interfacelift.com

Oracle Dual Table

http://en.wikipedia.org/wiki/DUAL_table

http://www.oracle.com/technology/pub/articles/10gdba/week7_10gdba.html

Oracle Certification Program Paths

Oracle University

http://education.oracle.com/pls/web_prod-plq-dad/db_pages.getpage?page_id=198

Step 1:

Oracle Certified Associate -

Oracle Database SQL Expert

Summary from the class needed to pass this test –

Oracle 11g Introduction to SQL

Step 2: To be continued…

What is 2>&1

From http://docstore.mik.ua/orelly/unix/upt/ch08_13.htm

One of the common questions about the Bourne and Korn shells is why only the second command will redirect both stdout and stderr (13.1) to a file:

$ cat food 2>&1 >file
cat: can't open food
$ cat food >file 2>&1
$

Although lots of sh manual pages don’t mention this, the shell reads arguments from left to right.

  1. On the first command line, the shell sees 2>&1 first. That means “make the standard error (file descriptor 2) go to the same place as the standard output (fd1) is going.” There’s no effect because both fd2 and fd1 are already going to the terminal. Then>file redirects fd1 (stdout) to file. But fd2 (stderr) is still going to the terminal.
  2. On the second command line, the shell sees >file first and redirects stdout to file. Next 2>&1 sends fd2 (stderr) to the same place fd1 is going - that’s to the file. And that’s what you want.

Let that be enough tabs

http://www.ultimate-guitar.com/tabs/s/switchfoot/let_that_be_enough_tab.htm

Sample bashrc file

http://tldp.org/LDP/abs/html/sample-bashrc.html

sample-bashrc

Oracle stuff

  • Control database access to specific objects
  • Manage schema objects and use data dictionary views
  • Manipulate large data sets in the Oracle database by using subqueries
  • Manage data in different time zones
  • Retrieve data by using advanced subqueries
  • Use the regular expression support in SQL to search, match, and replace strings in terms of regular expressions
  • Retrieve row and column data from tables with the SELECT statement
  • Create reports of sorted and restricted data
  • Display data from multiple tables.
  • Use DML statements to manage data.
  • Use DDL statements to manage database objects
  • Create reports of sorted and restricted data
  • Run data manipulation statements (DML) to update data
  • Control database access to specific objects
  • Manage schema objects
  • Manage objects with data dictionary views
  • Retrieve row and column data from tables

Oracle SQL result

Very good example(s) for connecting to an Oracle DB, submitting a statement, and printing the results.

http://www.java2s.com/Code/Java/Database-SQL-JDBC/DemoResultSetOracle.htm

Don’t know what this next one is but it looks important :)

http://www.oracle.com/technology/sample_code/tech/java/codesnippet/jdbc/refcur/index.html

Vi Search and Replace

:%s/search_string/replacement_string/g

‘g’ stands for global, not sure what other parameters you can place there.

Best IDE for JS development

www.aptana.org

Visual studio 2008

Komodo

jslibs