<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-1101481905086292942</id><updated>2012-01-16T23:31:20.648-08:00</updated><title type='text'>Oracle PL/SQL Interview Questions with Answers</title><subtitle type='html'>This is the perfect blog for all Oracle Developers. 
visit our site : www.oraclepassport.com for best available Oracle Interview Questions.

Lots and Lots of Oracle interview questions, www.oraclepassport.com, Oracle Questions, PL/SQL Cursors, Triggers - row level,Oracle Interview questions with answers, pl/sql interview, tables, cursors, triggers, stored procedures, indexes,views, oracle tutorial, oracle questions and answers</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://itcompreview.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1101481905086292942/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://itcompreview.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>sippsin</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>2</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-1101481905086292942.post-1705902556856518670</id><published>2009-02-27T07:10:00.000-08:00</published><updated>2009-02-27T07:20:10.005-08:00</updated><title type='text'>PL/SQL NOCOPY Parameter</title><content type='html'>&lt;a href="http://www.oraclepassport.com" target="_blank"&gt;&lt;br /&gt;&lt;font color=red size=3 face="times"&gt;Visit OraclePassport Main Page&lt;/font&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;        The PL/SQL has two different methods for passing parameter values between stored procedures and functions, &lt;br /&gt;&lt;br /&gt;1.       Pass by value&lt;br /&gt;            Actual value is being copied to another memory location for the calling procedure/function to use&lt;br /&gt;            i.e it copies the actual value of the parameter into the formal parameter. So, both called and calling procedures has got 2 different memory locations to store the value&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;2.      Pass by reference&lt;br /&gt;&lt;br /&gt;Only the memory location (address) is passed so that the data is not copied. The calling procedure and the called procedure, both uses the same value stored in a single memory location. So the actual and the formal parameters refer to the same memory location that holds the value. &lt;br /&gt;&lt;br /&gt;As we know, there are three different type of parameters in PL/SQL:&lt;a href="http://www.oraclepassport.com" target="_blank"&gt;&lt;br /&gt;&lt;font color=red size=3 face="times"&gt;Read More....&lt;/font&gt;&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1101481905086292942-1705902556856518670?l=itcompreview.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://itcompreview.blogspot.com/feeds/1705902556856518670/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1101481905086292942&amp;postID=1705902556856518670&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1101481905086292942/posts/default/1705902556856518670'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1101481905086292942/posts/default/1705902556856518670'/><link rel='alternate' type='text/html' href='http://itcompreview.blogspot.com/2009/02/plsql-nocopy-parameter.html' title='PL/SQL NOCOPY Parameter'/><author><name>sippsin</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-1101481905086292942.post-8161970826572524252</id><published>2009-02-27T07:01:00.000-08:00</published><updated>2009-04-19T10:32:47.083-07:00</updated><title type='text'>What is a Materialized view?</title><content type='html'>&lt;a href="http://www.oraclepassport.com" target="_blank"&gt;&lt;br /&gt;&lt;font color=red size=3 face="times"&gt;Visit OraclePassport Main Page&lt;/font&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;            A materialized view is a snapshot of data which could be refreshed at defined intervals. From the name, it is unclear that a materialized view can hold data, since views dont. Views are nothing but a query stored in a Database. Whenever we do a select * from view, it runs the saved query and fetches data. &lt;br /&gt;&lt;br /&gt;Sometimes there would be a need for a huge query with many join operations between more than 10-20 tables containing millions of records and many where conditions. Especially in a datawarehousing environment or for reporting purposes. In such conditions, running the query each time whenever required, is not a feasible option. So, there should be a technique to store the data such that we should run the query only if there is a change in data in the underlying tables.&lt;br /&gt;&lt;br /&gt;There comes the usage of a materialized views as they can store the data they have queried . &lt;br /&gt;&lt;br /&gt;What are different types of Materialized views? &lt;a href="http://www.oraclepassport.com" target="_blank"&gt;&lt;br /&gt;&lt;font color=red size=3 face="times"&gt;Read More....&lt;/font&gt;&lt;/a&gt;&lt;br&gt;&lt;br&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/1101481905086292942-8161970826572524252?l=itcompreview.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://itcompreview.blogspot.com/feeds/8161970826572524252/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=1101481905086292942&amp;postID=8161970826572524252&amp;isPopup=true' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/1101481905086292942/posts/default/8161970826572524252'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/1101481905086292942/posts/default/8161970826572524252'/><link rel='alternate' type='text/html' href='http://itcompreview.blogspot.com/2009/02/connect-by-prior.html' title='What is a Materialized view?'/><author><name>sippsin</name><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='16' height='16' src='http://img2.blogblog.com/img/b16-rounded.gif'/></author><thr:total>0</thr:total></entry></feed>
