Monday, June 24, 2013

Using SQL Loader To Import Data

SQL Loader http://bit.ly/16tXiol is Database import utility for Oracle.

You can create SQL Loader Script file by using Oracle SQL Developer http://bit.ly/OjdYXF

If you want to run the SQL Loader script from java you can use ProcessBuilder http://bit.ly/YwKvNT to call external jobs as Java processes in ETL like fashion.

More information can be fount here http://oreilly.com/catalog/orsqlloader/chapter/ch01.html

Tuesday, June 4, 2013

Insert JQuery to any site.

You run the following javascript code to inject jquery to any website. After that you can run jquery command in the javascript console.

var element1 = document.createElement("script");element1.src = "http://code.jquery.com/jquery-1.10.1.min.js";element1.type="text/javascript";document.getElementsByTagName("head")[0].appendChild(element1);

LinkWithin

Related Posts Plugin for WordPress, Blogger...