<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>allquestions.co.in</title>
	<atom:link href="http://allquestions.co.in/feed/" rel="self" type="application/rss+xml" />
	<link>http://allquestions.co.in</link>
	<description>Interview questions with answers</description>
	<lastBuildDate>Mon, 07 May 2012 03:06:44 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1</generator>
		<item>
		<title>PMP questions</title>
		<link>http://allquestions.co.in/pmp-questions/</link>
		<comments>http://allquestions.co.in/pmp-questions/#comments</comments>
		<pubDate>Mon, 07 May 2012 03:06:44 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[.Net]]></category>

		<guid isPermaLink="false">http://allquestions.co.in/?p=17826</guid>
		<description><![CDATA[visual_certexam_suite_setup PMI.Braindump.PMI-001.v2009-06-10.by.pmp.996q]]></description>
			<content:encoded><![CDATA[<p><a href='http://allquestions.co.in/pmp-questions/visual_certexam_suite_setup/' rel='attachment wp-att-17827'>visual_certexam_suite_setup</a><br />
<a href='http://allquestions.co.in/pmp-questions/pmi-braindump-pmi-001-v2009-06-10-by-pmp-996q/' rel='attachment wp-att-17828'>PMI.Braindump.PMI-001.v2009-06-10.by.pmp.996q</a></p>
]]></content:encoded>
			<wfw:commentRss>http://allquestions.co.in/pmp-questions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Can one use dynamic SQL within PL/SQL? OR Can you use a DDL in a procedure ? How ?</title>
		<link>http://allquestions.co.in/can-one-use-dynamic-sql-within-plsql-or-can-you-use-a-ddl-in-a-procedure-how/</link>
		<comments>http://allquestions.co.in/can-one-use-dynamic-sql-within-plsql-or-can-you-use-a-ddl-in-a-procedure-how/#comments</comments>
		<pubDate>Sat, 09 Oct 2010 13:19:24 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Oracle]]></category>

		<guid isPermaLink="false">http://allquestions.co.in/?p=17594</guid>
		<description><![CDATA[From PL/SQL V2.1 one can use the DBMS_SQL package to execute dynamic SQL statements. Eg: CREATE OR REPLACE PROCEDURE DYNSQL AS cur integer; rc integer; BEGIN cur := DBMS_SQL.OPEN_CURSOR; DBMS_SQL.PARSE(cur,&#8217;CREATE TABLE X (Y DATE)&#8217;, DBMS_SQL.NATIVE); rc := DBMS_SQL.EXECUTE(cur); DBMS_SQL.CLOSE_CURSOR(cur); END;]]></description>
			<content:encoded><![CDATA[<p>From PL/SQL V2.1 one can use the DBMS_SQL package to execute dynamic SQL statements.<br />
Eg: CREATE OR REPLACE PROCEDURE DYNSQL<br />
AS<br />
cur integer;<br />
rc integer;<br />
BEGIN<br />
cur := DBMS_SQL.OPEN_CURSOR;<br />
DBMS_SQL.PARSE(cur,&#8217;CREATE TABLE X (Y DATE)&#8217;, DBMS_SQL.NATIVE);<br />
rc := DBMS_SQL.EXECUTE(cur);<br />
DBMS_SQL.CLOSE_CURSOR(cur);<br />
END;</p>
]]></content:encoded>
			<wfw:commentRss>http://allquestions.co.in/can-one-use-dynamic-sql-within-plsql-or-can-you-use-a-ddl-in-a-procedure-how/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>How can I protect my PL/SQL source code?</title>
		<link>http://allquestions.co.in/how-can-i-protect-my-plsql-source-code/</link>
		<comments>http://allquestions.co.in/how-can-i-protect-my-plsql-source-code/#comments</comments>
		<pubDate>Sat, 09 Oct 2010 13:19:06 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Oracle]]></category>

		<guid isPermaLink="false">http://allquestions.co.in/?p=17590</guid>
		<description><![CDATA[PL/SQL V2.2, available with Oracle7.2, implements a binary wrapper for PL/SQL programs to protect the source code. This is done via a standalone utility that transforms the PL/SQL source code into portable binary object code (somewhat larger than the original). This way you can distribute software without having to worry about exposing your proprietary algorithms [...]]]></description>
			<content:encoded><![CDATA[<p>PL/SQL V2.2, available with Oracle7.2, implements a binary wrapper for PL/SQL programs to protect the source code. This is done via a standalone utility that transforms the PL/SQL source code into portable binary object code (somewhat larger than the original). This way you can distribute software without having to worry about exposing your proprietary algorithms and methods. SQL*Plus and SQL*DBA will still understand and know how to execute such scripts. Just be careful, there is no &#8220;decode&#8221; command available.<br />
The syntax is:<br />
wrap iname=myscript.sql oname=xxxx.yyy</p>
]]></content:encoded>
			<wfw:commentRss>http://allquestions.co.in/how-can-i-protect-my-plsql-source-code/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Can one read/write files from PL/SQL?</title>
		<link>http://allquestions.co.in/can-one-readwrite-files-from-plsql/</link>
		<comments>http://allquestions.co.in/can-one-readwrite-files-from-plsql/#comments</comments>
		<pubDate>Sat, 09 Oct 2010 13:18:47 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Oracle]]></category>

		<guid isPermaLink="false">http://allquestions.co.in/?p=17586</guid>
		<description><![CDATA[Included in Oracle 7.3 is a UTL_FILE package that can read and write files. The directory you intend writing to has to be in your INIT.ORA file (see UTL_FILE_DIR=&#8230; parameter). Before Oracle 7.3 the only means of writing a file was to use DBMS_OUTPUT with the SQL*Plus SPOOL command. DECLARE fileHandler UTL_FILE.FILE_TYPE; BEGIN fileHandler := [...]]]></description>
			<content:encoded><![CDATA[<p>Included in Oracle 7.3 is a UTL_FILE package that can read and write files. The directory you intend writing to has to be in your INIT.ORA file (see UTL_FILE_DIR=&#8230; parameter). Before Oracle 7.3 the only means of writing a file was to use DBMS_OUTPUT with the SQL*Plus SPOOL command.<br />
DECLARE<br />
fileHandler UTL_FILE.FILE_TYPE;<br />
BEGIN<br />
fileHandler := UTL_FILE.FOPEN(&#8216;/home/oracle/tmp&#8217;, &#8216;myoutput&#8217;,'W&#8217;);<br />
UTL_FILE.PUTF(fileHandler, &#8216;Value of func1 is %sn&#8217;, func1(1));<br />
UTL_FILE.FCLOSE(fileHandler);<br />
END; </p>
]]></content:encoded>
			<wfw:commentRss>http://allquestions.co.in/can-one-readwrite-files-from-plsql/feed/</wfw:commentRss>
		<slash:comments>105</slash:comments>
		</item>
		<item>
		<title>Is there a limit on the size of a PL/SQL block?</title>
		<link>http://allquestions.co.in/is-there-a-limit-on-the-size-of-a-plsql-block/</link>
		<comments>http://allquestions.co.in/is-there-a-limit-on-the-size-of-a-plsql-block/#comments</comments>
		<pubDate>Sat, 09 Oct 2010 13:18:28 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Oracle]]></category>

		<guid isPermaLink="false">http://allquestions.co.in/?p=17582</guid>
		<description><![CDATA[Currently, the maximum parsed/compiled size of a PL/SQL block is 64K and the maximum code size is 100K. You can run the following select statement to query the size of an existing package or procedure. SQL> select * from dba_object_size where name = &#8216;procedure_name&#8217;]]></description>
			<content:encoded><![CDATA[<p>Currently, the maximum parsed/compiled size of a PL/SQL block is 64K and the maximum code size is 100K. You can run the following select statement to query the size of an existing package or procedure.<br />
SQL> select * from dba_object_size where name = &#8216;procedure_name&#8217;</p>
]]></content:encoded>
			<wfw:commentRss>http://allquestions.co.in/is-there-a-limit-on-the-size-of-a-plsql-block/feed/</wfw:commentRss>
		<slash:comments>109</slash:comments>
		</item>
		<item>
		<title>Is there a PL/SQL Engine in SQL*Plus?</title>
		<link>http://allquestions.co.in/is-there-a-plsql-engine-in-sqlplus/</link>
		<comments>http://allquestions.co.in/is-there-a-plsql-engine-in-sqlplus/#comments</comments>
		<pubDate>Sat, 09 Oct 2010 13:18:10 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Oracle]]></category>

		<guid isPermaLink="false">http://allquestions.co.in/?p=17578</guid>
		<description><![CDATA[No. Unlike Oracle Forms, SQL*Plus does not have a PL/SQL engine. Thus, all your PL/SQL are send directly to the database engine for execution. This makes it much more efficient as SQL statements are not stripped off and send to the database individually.]]></description>
			<content:encoded><![CDATA[<p>No. Unlike Oracle Forms, SQL*Plus does not have a PL/SQL engine. Thus, all your PL/SQL are send directly to the database engine for execution. This makes it much more efficient as SQL statements are not stripped off and send to the database individually.</p>
]]></content:encoded>
			<wfw:commentRss>http://allquestions.co.in/is-there-a-plsql-engine-in-sqlplus/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>What is PL/SQL?</title>
		<link>http://allquestions.co.in/what-is-plsql/</link>
		<comments>http://allquestions.co.in/what-is-plsql/#comments</comments>
		<pubDate>Sat, 09 Oct 2010 13:17:55 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Oracle]]></category>

		<guid isPermaLink="false">http://allquestions.co.in/?p=17574</guid>
		<description><![CDATA[PL/SQL is Oracle&#8217;s Procedural Language extension to SQL. The language includes object oriented programming techniques such as encapsulation, function overloading, information hiding (all but inheritance), and so, brings state-of-the-art programming to the Oracle database server and a variety of Oracle tools.]]></description>
			<content:encoded><![CDATA[<p>PL/SQL is Oracle&#8217;s Procedural Language extension to SQL. The language includes object oriented programming techniques such as encapsulation, function overloading, information hiding (all but inheritance), and so, brings state-of-the-art programming to the Oracle database server and a variety of Oracle tools.</p>
]]></content:encoded>
			<wfw:commentRss>http://allquestions.co.in/what-is-plsql/feed/</wfw:commentRss>
		<slash:comments>106</slash:comments>
		</item>
		<item>
		<title>Which of the following is not a schema object : Indexes, tables, public synonyms, triggers and packages ?</title>
		<link>http://allquestions.co.in/which-of-the-following-is-not-a-schema-object-indexes-tables-public-synonyms-triggers-and-packages/</link>
		<comments>http://allquestions.co.in/which-of-the-following-is-not-a-schema-object-indexes-tables-public-synonyms-triggers-and-packages/#comments</comments>
		<pubDate>Sat, 09 Oct 2010 13:17:37 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Oracle]]></category>

		<guid isPermaLink="false">http://allquestions.co.in/?p=17570</guid>
		<description><![CDATA[Public synonyms]]></description>
			<content:encoded><![CDATA[<p>Public synonyms</p>
]]></content:encoded>
			<wfw:commentRss>http://allquestions.co.in/which-of-the-following-is-not-a-schema-object-indexes-tables-public-synonyms-triggers-and-packages/feed/</wfw:commentRss>
		<slash:comments>106</slash:comments>
		</item>
		<item>
		<title>What is implicit cursor and how is it used by Oracle ?</title>
		<link>http://allquestions.co.in/what-is-implicit-cursor-and-how-is-it-used-by-oracle/</link>
		<comments>http://allquestions.co.in/what-is-implicit-cursor-and-how-is-it-used-by-oracle/#comments</comments>
		<pubDate>Sat, 09 Oct 2010 13:17:16 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Oracle]]></category>

		<guid isPermaLink="false">http://allquestions.co.in/?p=17566</guid>
		<description><![CDATA[An implicit cursor is a cursor which is internally created by Oracle. It is created by Oracle for each individual SQL.]]></description>
			<content:encoded><![CDATA[<p>An implicit cursor is a cursor which is internally created by Oracle. It is created by Oracle for each individual SQL.</p>
]]></content:encoded>
			<wfw:commentRss>http://allquestions.co.in/what-is-implicit-cursor-and-how-is-it-used-by-oracle/feed/</wfw:commentRss>
		<slash:comments>103</slash:comments>
		</item>
		<item>
		<title>What is a transaction ?</title>
		<link>http://allquestions.co.in/what-is-a-transaction-3/</link>
		<comments>http://allquestions.co.in/what-is-a-transaction-3/#comments</comments>
		<pubDate>Sat, 09 Oct 2010 13:17:01 +0000</pubDate>
		<dc:creator></dc:creator>
				<category><![CDATA[Oracle]]></category>

		<guid isPermaLink="false">http://allquestions.co.in/?p=17562</guid>
		<description><![CDATA[A transaction is a set of SQL statements between any two COMMIT and ROLLBACK statements.]]></description>
			<content:encoded><![CDATA[<p>A transaction is a set of SQL statements between any two COMMIT and ROLLBACK statements.</p>
]]></content:encoded>
			<wfw:commentRss>http://allquestions.co.in/what-is-a-transaction-3/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using disk (enhanced)
Database Caching 70/96 queries in 0.119 seconds using disk
Object Caching 641/699 objects using disk

Served from: allquestions.co.in @ 2012-05-19 11:17:36 -->
