interview

Samples – Learn easily (some useful websites)

Examples and samples let you learn things easily. You understand things with examples quickly than learning from just theory. I found a series of websites from where you can get samples, best samples according to website owners. 1. www.bestsamplequestions.com: This website contains sample questions for all major tests like GRE, CAT, LSAT, SAT, GMAT, TOEFL [...]


SAX Parser – Reading CDATA

CDATA is the section in XML Document which should not be parsed by XML parser implementation. This section can be used to pass the data which generally does not comply with XML syntax like a javascript function. If you need to transfer a javascript function in your XML document or a JSON formatted data which [...]


Mysql Explain Explained

Mysql Explain Explained View more presentations from Jeremy Coates.


XML Schema

XML Schema View more presentations from yht4ever. (tags: schema xml)


Oracle – Escaping Wild Card Characters with LIKE operator

In Oracle, % (percentage) and _ (underscore) have a special meaning. These two wild card characters are used with LIKE operator: % allows matching any string of any length (including zero length) _ allows matching a single character Example #1 SELECT dname FROM dept WHERE dname LIKE ‘A%’; will return all Department names starting with [...]