<?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>dBuggr &#187; sql</title>
	<atom:link href="http://www.dbuggr.com/tag/sql/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.dbuggr.com</link>
	<description>Share Knowledge &#38; Be Rewarded</description>
	<lastBuildDate>Mon, 30 Jan 2012 22:33:19 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Fix Java.sql.SQLRecoverableException: I/O Exception: Connection Reset Issue on L&#8230;</title>
		<link>http://www.dbuggr.com/milly/fix-java-sql-sqlrecoverableexception-exception-connection-reset-issue/</link>
		<comments>http://www.dbuggr.com/milly/fix-java-sql-sqlrecoverableexception-exception-connection-reset-issue/#comments</comments>
		<pubDate>Thu, 28 Jul 2011 18:06:56 +0000</pubDate>
		<dc:creator>milly</dc:creator>
				<category><![CDATA[tech]]></category>
		<category><![CDATA[connection]]></category>
		<category><![CDATA[driver]]></category>
		<category><![CDATA[io]]></category>
		<category><![CDATA[io error]]></category>
		<category><![CDATA[java]]></category>
		<category><![CDATA[jdbc]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[o exception]]></category>
		<category><![CDATA[oracle]]></category>
		<category><![CDATA[reset]]></category>
		<category><![CDATA[sql]]></category>
		<category><![CDATA[sun]]></category>

		<guid isPermaLink="false">http://www.dbuggr.com/milly/fix-java-sql-sqlrecoverableexception-exception-connection-reset-issue/</guid>
		<description><![CDATA[Fix java.sql.SQLRecoverableException: I/O Exception: Connection reset issue on Linux
If you encounter &#8220;java.sql.SQLRecoverableException: I/O Exception: Connection reset&#8221; issue on Linux or Sun, the following tip might be able to help you.
java.security.SecureRandom is a standard API provided by sun. Among various methods offered by this class void nextBytes(byte[]) is one. This method is used for generating random [...]


Related posts:<ol><li><a href='http://www.dbuggr.com/smallwei/resolve-ora-12505-oracle-rac-java-jdbc-thin-client-connection/' rel='bookmark' title='Permanent Link: Resolve ORA-12505: Using Oracle RAC and Java JDBC Thin Client Connection'>Resolve ORA-12505: Using Oracle RAC and Java JDBC Thin Client Connection</a></li>
<li><a href='http://www.dbuggr.com/smallwei/resolve-weblogic-java-io-ioexception-stream-closed-router-des/' rel='bookmark' title='Permanent Link: Resolve Weblogic Java.io.IOException: Stream Closed.; No Available Router to Des&#8230;'>Resolve Weblogic Java.io.IOException: Stream Closed.; No Available Router to Des&#8230;</a></li>
<li><a href='http://www.dbuggr.com/milly/default-password-sun-oracle-java-cacert-key-store/' rel='bookmark' title='Permanent Link: The Default Password for Sun/Oracle JAVA CAcerts Key Store'>The Default Password for Sun/Oracle JAVA CAcerts Key Store</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Fix java.sql.SQLRecoverableException: I/O Exception: Connection reset issue on Linux<br />
If you encounter &#8220;java.sql.SQLRecoverableException: I/O Exception: Connection reset&#8221; issue on Linux or Sun, the following tip might be able to help you.</p>
<p>java.security.SecureRandom is a standard API provided by sun. Among various methods offered by this class void nextBytes(byte[]) is one. This method is used for generating random bytes. Oracle 11g JDBC drivers use this API to generate random number during login.</p>
<p>You might see errors similar to the following:</p>
<p><pre><code>java.sql.SQLRecoverableException: IO Error: Connection reset
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;at oracle.jdbc.driver.T4CPreparedStatement.executeForRows(T4CPreparedStatement.java:1028)
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1307)
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3449)
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;at oracle.jdbc.driver.OraclePreparedStatement.execute(OraclePreparedStatement.java:3550)
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;at oracle.jdbc.driver.OraclePreparedStatementWrapper.execute(OraclePreparedStatementWrapper.java:1374)
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;at sun.reflect.GeneratedMethodAccessor55.invoke(Unknown Source)
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;at java.lang.reflect.Method.invoke(Method.java:597)
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;at oracle.ucp.jdbc.proxy.StatementProxyFactory.invoke(StatementProxyFactory.java:230)
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;at oracle.ucp.jdbc.proxy.PreparedStatementProxyFactory.invoke(PreparedStatementProxyFactory.java:124)
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;at $Proxy86.execute(Unknown Source)</code></pre></p>

<p>Related posts:<ol><li><a href='http://www.dbuggr.com/smallwei/resolve-ora-12505-oracle-rac-java-jdbc-thin-client-connection/' rel='bookmark' title='Permanent Link: Resolve ORA-12505: Using Oracle RAC and Java JDBC Thin Client Connection'>Resolve ORA-12505: Using Oracle RAC and Java JDBC Thin Client Connection</a></li>
<li><a href='http://www.dbuggr.com/smallwei/resolve-weblogic-java-io-ioexception-stream-closed-router-des/' rel='bookmark' title='Permanent Link: Resolve Weblogic Java.io.IOException: Stream Closed.; No Available Router to Des&#8230;'>Resolve Weblogic Java.io.IOException: Stream Closed.; No Available Router to Des&#8230;</a></li>
<li><a href='http://www.dbuggr.com/milly/default-password-sun-oracle-java-cacert-key-store/' rel='bookmark' title='Permanent Link: The Default Password for Sun/Oracle JAVA CAcerts Key Store'>The Default Password for Sun/Oracle JAVA CAcerts Key Store</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.dbuggr.com/milly/fix-java-sql-sqlrecoverableexception-exception-connection-reset-issue/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>While Attempting to Install Microsoft SQL 2008 R2, I Get the Following Errors:</title>
		<link>http://www.dbuggr.com/bmowry/attempting-install-microsoft-sql-2008-r2-errors/</link>
		<comments>http://www.dbuggr.com/bmowry/attempting-install-microsoft-sql-2008-r2-errors/#comments</comments>
		<pubDate>Thu, 28 Jul 2011 16:49:43 +0000</pubDate>
		<dc:creator>bmowry</dc:creator>
				<category><![CDATA[tech]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[error]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[result]]></category>
		<category><![CDATA[sql]]></category>

		<guid isPermaLink="false">http://www.dbuggr.com/bmowry/attempting-install-microsoft-sql-2008-r2-errors/</guid>
		<description><![CDATA[While attempting to install Microsoft SQL 2008 R2, I get the following errors:
Error result: -595541211
Result facility code: 1152
Result error code: 49957
What could be the cause of this?

Related posts:Unable to install updates in Microsoft Windows XP
Receiving a Error: 0xC004C008 when Attempting to Activate.
In SQL, how can you select and match more than one column in a [...]


Related posts:<ol><li><a href='http://www.dbuggr.com/andrew8062/windows-xp-update-refuse-install/' rel='bookmark' title='Permanent Link: Unable to install updates in Microsoft Windows XP'>Unable to install updates in Microsoft Windows XP</a></li>
<li><a href='http://www.dbuggr.com/yukimash/receiving-error-0xc004c008-attempting-activate/' rel='bookmark' title='Permanent Link: Receiving a Error: 0xC004C008 when Attempting to Activate.'>Receiving a Error: 0xC004C008 when Attempting to Activate.</a></li>
<li><a href='http://www.dbuggr.com/smallwei/sql-select-match-column-select/' rel='bookmark' title='Permanent Link: In SQL, how can you select and match more than one column in a sub-select?'>In SQL, how can you select and match more than one column in a sub-select?</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>While attempting to install Microsoft SQL 2008 R2, I get the following errors:<br />
Error result: -595541211<br />
Result facility code: 1152<br />
Result error code: 49957<br />
What could be the cause of this?</p>

<p>Related posts:<ol><li><a href='http://www.dbuggr.com/andrew8062/windows-xp-update-refuse-install/' rel='bookmark' title='Permanent Link: Unable to install updates in Microsoft Windows XP'>Unable to install updates in Microsoft Windows XP</a></li>
<li><a href='http://www.dbuggr.com/yukimash/receiving-error-0xc004c008-attempting-activate/' rel='bookmark' title='Permanent Link: Receiving a Error: 0xC004C008 when Attempting to Activate.'>Receiving a Error: 0xC004C008 when Attempting to Activate.</a></li>
<li><a href='http://www.dbuggr.com/smallwei/sql-select-match-column-select/' rel='bookmark' title='Permanent Link: In SQL, how can you select and match more than one column in a sub-select?'>In SQL, how can you select and match more than one column in a sub-select?</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.dbuggr.com/bmowry/attempting-install-microsoft-sql-2008-r2-errors/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>What Happens when an SQL Statment is Executed?</title>
		<link>http://www.dbuggr.com/suresh-la2010/sql-statment-executed/</link>
		<comments>http://www.dbuggr.com/suresh-la2010/sql-statment-executed/#comments</comments>
		<pubDate>Sat, 11 Dec 2010 06:09:10 +0000</pubDate>
		<dc:creator>softwaretestingqajobs.blogspot.com</dc:creator>
				<category><![CDATA[tech]]></category>
		<category><![CDATA[applications]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[dba]]></category>
		<category><![CDATA[development]]></category>
		<category><![CDATA[execute]]></category>
		<category><![CDATA[oracle]]></category>
		<category><![CDATA[oracle applications]]></category>
		<category><![CDATA[oracle apps]]></category>
		<category><![CDATA[oracle database]]></category>
		<category><![CDATA[oracle development]]></category>
		<category><![CDATA[qa]]></category>
		<category><![CDATA[sql]]></category>
		<category><![CDATA[statement]]></category>
		<category><![CDATA[symantics]]></category>
		<category><![CDATA[syntax]]></category>
		<category><![CDATA[tester]]></category>
		<category><![CDATA[testing]]></category>
		<category><![CDATA[trigger]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.dbuggr.com/suresh-la2010/sql-statment-executed/</guid>
		<description><![CDATA[What happens when an SQL Statment is executed?

No related posts.


No related posts.]]></description>
			<content:encoded><![CDATA[<p>What happens when an SQL Statment is executed?</p>

<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://www.dbuggr.com/suresh-la2010/sql-statment-executed/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Calculate, Compute and Display SQL Script Elapsed Run Time in Oracle</title>
		<link>http://www.dbuggr.com/milly/calculate-compute-display-sql-script-total-elapse-run-time-oracle/</link>
		<comments>http://www.dbuggr.com/milly/calculate-compute-display-sql-script-total-elapse-run-time-oracle/#comments</comments>
		<pubDate>Thu, 06 May 2010 14:37:45 +0000</pubDate>
		<dc:creator>milly</dc:creator>
				<category><![CDATA[tech]]></category>
		<category><![CDATA[elapse]]></category>
		<category><![CDATA[run]]></category>
		<category><![CDATA[script]]></category>
		<category><![CDATA[sql]]></category>
		<category><![CDATA[time]]></category>

		<guid isPermaLink="false">http://www.dbuggr.com/milly/calculate-compute-display-sql-script-total-elapse-run-time-oracle/</guid>
		<description><![CDATA[How to calculate, compute and display SQL script elapsed run time in Oracle
Many times you might want to know the exact elapse time of your SQL scripts. You can use the following technique to obtain the information.

Related posts:How to Run/execute SQL Script Outside of SQLPLUS in Windows DOS Command Prompt
Utilizing Parallel Loading with Oracle SQL [...]


Related posts:<ol><li><a href='http://www.dbuggr.com/smallwei/run-execute-sql-script-windows-dos-command-prompt-sqlpl/' rel='bookmark' title='Permanent Link: How to Run/execute SQL Script Outside of SQLPLUS in Windows DOS Command Prompt'>How to Run/execute SQL Script Outside of SQLPLUS in Windows DOS Command Prompt</a></li>
<li><a href='http://www.dbuggr.com/smallwei/utilizing-parallel-loading-oracle-sql-loader-increase-performance/' rel='bookmark' title='Permanent Link: Utilizing Parallel Loading with Oracle SQL Loader to Increase Performance.'>Utilizing Parallel Loading with Oracle SQL Loader to Increase Performance.</a></li>
<li><a href='http://www.dbuggr.com/smallwei/interact-oracle-sqlplus-windows-batch-script/' rel='bookmark' title='Permanent Link: How to Interact with Oracle SQLPLUS Using Windows Batch Script'>How to Interact with Oracle SQLPLUS Using Windows Batch Script</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>How to calculate, compute and display SQL script elapsed run time in Oracle</p>
<p>Many times you might want to know the exact elapse time of your SQL scripts. You can use the following technique to obtain the information.</p>

<p>Related posts:<ol><li><a href='http://www.dbuggr.com/smallwei/run-execute-sql-script-windows-dos-command-prompt-sqlpl/' rel='bookmark' title='Permanent Link: How to Run/execute SQL Script Outside of SQLPLUS in Windows DOS Command Prompt'>How to Run/execute SQL Script Outside of SQLPLUS in Windows DOS Command Prompt</a></li>
<li><a href='http://www.dbuggr.com/smallwei/utilizing-parallel-loading-oracle-sql-loader-increase-performance/' rel='bookmark' title='Permanent Link: Utilizing Parallel Loading with Oracle SQL Loader to Increase Performance.'>Utilizing Parallel Loading with Oracle SQL Loader to Increase Performance.</a></li>
<li><a href='http://www.dbuggr.com/smallwei/interact-oracle-sqlplus-windows-batch-script/' rel='bookmark' title='Permanent Link: How to Interact with Oracle SQLPLUS Using Windows Batch Script'>How to Interact with Oracle SQLPLUS Using Windows Batch Script</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.dbuggr.com/milly/calculate-compute-display-sql-script-total-elapse-run-time-oracle/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Oracle SQL Developer Freezes and Locks Up Frequently and Randomly.</title>
		<link>http://www.dbuggr.com/milly/oracle-sql-developer-freezes-locks-frequently-randomly/</link>
		<comments>http://www.dbuggr.com/milly/oracle-sql-developer-freezes-locks-frequently-randomly/#comments</comments>
		<pubDate>Wed, 10 Mar 2010 15:51:12 +0000</pubDate>
		<dc:creator>milly</dc:creator>
				<category><![CDATA[tech]]></category>
		<category><![CDATA[developer]]></category>
		<category><![CDATA[experience]]></category>
		<category><![CDATA[oracle]]></category>
		<category><![CDATA[sql]]></category>
		<category><![CDATA[sqldevloper]]></category>
		<category><![CDATA[time]]></category>

		<guid isPermaLink="false">http://www.dbuggr.com/milly/oracle-sql-developer-freezes-locks-frequently-randomly/</guid>
		<description><![CDATA[Oracle SQL Developer freezes and locks up frequently and randomly.
If you are experience Oracle SQL Developer locking up all the time randomly, you can try the following solutions. This applies to version 1.5.1 or 2.1 and above.

Related posts:How to Escape Ampersand (&#38;) in Oracle SQL Developer.
How to Calculate, Compute and Display SQL Script Elapsed Run [...]


Related posts:<ol><li><a href='http://www.dbuggr.com/smallwei/escape-ampersand-oracle-sql-developer/' rel='bookmark' title='Permanent Link: How to Escape Ampersand (&amp;) in Oracle SQL Developer.'>How to Escape Ampersand (&amp;) in Oracle SQL Developer.</a></li>
<li><a href='http://www.dbuggr.com/milly/calculate-compute-display-sql-script-total-elapse-run-time-oracle/' rel='bookmark' title='Permanent Link: How to Calculate, Compute and Display SQL Script Elapsed Run Time in Oracle'>How to Calculate, Compute and Display SQL Script Elapsed Run Time in Oracle</a></li>
<li><a href='http://www.dbuggr.com/abhaybharti/introduction-embedded-sql-pro-oracle/' rel='bookmark' title='Permanent Link: Introduction of Embedded SQL and Pro*C in Oracle'>Introduction of Embedded SQL and Pro*C in Oracle</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Oracle SQL Developer freezes and locks up frequently and randomly.</p>
<p>If you are experience Oracle SQL Developer locking up all the time randomly, you can try the following solutions. This applies to version 1.5.1 or 2.1 and above.</p>

<p>Related posts:<ol><li><a href='http://www.dbuggr.com/smallwei/escape-ampersand-oracle-sql-developer/' rel='bookmark' title='Permanent Link: How to Escape Ampersand (&amp;) in Oracle SQL Developer.'>How to Escape Ampersand (&amp;) in Oracle SQL Developer.</a></li>
<li><a href='http://www.dbuggr.com/milly/calculate-compute-display-sql-script-total-elapse-run-time-oracle/' rel='bookmark' title='Permanent Link: How to Calculate, Compute and Display SQL Script Elapsed Run Time in Oracle'>How to Calculate, Compute and Display SQL Script Elapsed Run Time in Oracle</a></li>
<li><a href='http://www.dbuggr.com/abhaybharti/introduction-embedded-sql-pro-oracle/' rel='bookmark' title='Permanent Link: Introduction of Embedded SQL and Pro*C in Oracle'>Introduction of Embedded SQL and Pro*C in Oracle</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.dbuggr.com/milly/oracle-sql-developer-freezes-locks-frequently-randomly/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>This T-sql Script Allows You to List All Columns in All Tables and Specify if Th&#8230;</title>
		<link>http://www.dbuggr.com/mcp111/sql-script-list-columns-tables/</link>
		<comments>http://www.dbuggr.com/mcp111/sql-script-list-columns-tables/#comments</comments>
		<pubDate>Wed, 10 Feb 2010 18:48:21 +0000</pubDate>
		<dc:creator>mcp111</dc:creator>
				<category><![CDATA[tech]]></category>
		<category><![CDATA[foreign]]></category>
		<category><![CDATA[identity]]></category>
		<category><![CDATA[keys]]></category>
		<category><![CDATA[primary]]></category>
		<category><![CDATA[script]]></category>
		<category><![CDATA[sql]]></category>
		<category><![CDATA[t-sql]]></category>

		<guid isPermaLink="false">http://www.dbuggr.com/mcp111/sql-script-list-columns-tables/</guid>
		<description><![CDATA[This T-sql script allows you to list all columns in all tables and specify if they are identity, primary key or foreign key

Related posts:What is the sql statement in Oracle database to list all tables that contain cer&#8230;
How to Run/execute SQL Script Outside of SQLPLUS in Windows DOS Command Prompt
How to Calculate, Compute and Display [...]


Related posts:<ol><li><a href='http://www.dbuggr.com/smallwei/sql-statement-oracle-database-list-tables-cer/' rel='bookmark' title='Permanent Link: What is the sql statement in Oracle database to list all tables that contain cer&#8230;'>What is the sql statement in Oracle database to list all tables that contain cer&#8230;</a></li>
<li><a href='http://www.dbuggr.com/smallwei/run-execute-sql-script-windows-dos-command-prompt-sqlpl/' rel='bookmark' title='Permanent Link: How to Run/execute SQL Script Outside of SQLPLUS in Windows DOS Command Prompt'>How to Run/execute SQL Script Outside of SQLPLUS in Windows DOS Command Prompt</a></li>
<li><a href='http://www.dbuggr.com/milly/calculate-compute-display-sql-script-total-elapse-run-time-oracle/' rel='bookmark' title='Permanent Link: How to Calculate, Compute and Display SQL Script Elapsed Run Time in Oracle'>How to Calculate, Compute and Display SQL Script Elapsed Run Time in Oracle</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>This T-sql script allows you to list all columns in all tables and specify if they are identity, primary key or foreign key</p>

<p>Related posts:<ol><li><a href='http://www.dbuggr.com/smallwei/sql-statement-oracle-database-list-tables-cer/' rel='bookmark' title='Permanent Link: What is the sql statement in Oracle database to list all tables that contain cer&#8230;'>What is the sql statement in Oracle database to list all tables that contain cer&#8230;</a></li>
<li><a href='http://www.dbuggr.com/smallwei/run-execute-sql-script-windows-dos-command-prompt-sqlpl/' rel='bookmark' title='Permanent Link: How to Run/execute SQL Script Outside of SQLPLUS in Windows DOS Command Prompt'>How to Run/execute SQL Script Outside of SQLPLUS in Windows DOS Command Prompt</a></li>
<li><a href='http://www.dbuggr.com/milly/calculate-compute-display-sql-script-total-elapse-run-time-oracle/' rel='bookmark' title='Permanent Link: How to Calculate, Compute and Display SQL Script Elapsed Run Time in Oracle'>How to Calculate, Compute and Display SQL Script Elapsed Run Time in Oracle</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.dbuggr.com/mcp111/sql-script-list-columns-tables/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to Run/execute SQL Script Outside of SQLPLUS in Windows DOS Command Prompt</title>
		<link>http://www.dbuggr.com/smallwei/run-execute-sql-script-windows-dos-command-prompt-sqlpl/</link>
		<comments>http://www.dbuggr.com/smallwei/run-execute-sql-script-windows-dos-command-prompt-sqlpl/#comments</comments>
		<pubDate>Tue, 09 Feb 2010 21:51:24 +0000</pubDate>
		<dc:creator>smallwei</dc:creator>
				<category><![CDATA[tech]]></category>
		<category><![CDATA[command]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[dos]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[oracle]]></category>
		<category><![CDATA[script]]></category>
		<category><![CDATA[sql]]></category>
		<category><![CDATA[sqlplus]]></category>
		<category><![CDATA[unix]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://www.dbuggr.com/smallwei/run-execute-sql-script-windows-dos-command-prompt-sqlpl/</guid>
		<description><![CDATA[How to run/execute SQL script outside of SQLPLUS in Windows DOS command prompt
It is simple to run sql script outside of sqlplus in *nix environment. You can simple add &#8220;@scriptname.sql&#8221; at the end of the sqlplus command. However, if you need to run a sql script outside of sqlplus in Windows, you need a little [...]


Related posts:<ol><li><a href='http://www.dbuggr.com/smallwei/interact-oracle-sqlplus-windows-batch-script/' rel='bookmark' title='Permanent Link: How to Interact with Oracle SQLPLUS Using Windows Batch Script'>How to Interact with Oracle SQLPLUS Using Windows Batch Script</a></li>
<li><a href='http://www.dbuggr.com/smallwei/oracle-sqlplus-issue-commit-exit-quit-command/' rel='bookmark' title='Permanent Link: Does Oracle SQLPLUS Issue Commit when Using Exit or Quit Command?'>Does Oracle SQLPLUS Issue Commit when Using Exit or Quit Command?</a></li>
<li><a href='http://www.dbuggr.com/simon-tite/run-detached-program-daemon-linux-shell-command-line-prompt/' rel='bookmark' title='Permanent Link: Run a Detached Program (daemon) from a Linux Shell Command Line Prompt.'>Run a Detached Program (daemon) from a Linux Shell Command Line Prompt.</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>How to run/execute SQL script outside of SQLPLUS in Windows DOS command prompt</p>
<p>It is simple to run sql script outside of sqlplus in *nix environment. You can simple add &#8220;@scriptname.sql&#8221; at the end of the sqlplus command. However, if you need to run a sql script outside of sqlplus in Windows, you need a little trick to do it &#8220;without&#8221; the need to manually enter &#8220;exit&#8221;</p>

<p>Related posts:<ol><li><a href='http://www.dbuggr.com/smallwei/interact-oracle-sqlplus-windows-batch-script/' rel='bookmark' title='Permanent Link: How to Interact with Oracle SQLPLUS Using Windows Batch Script'>How to Interact with Oracle SQLPLUS Using Windows Batch Script</a></li>
<li><a href='http://www.dbuggr.com/smallwei/oracle-sqlplus-issue-commit-exit-quit-command/' rel='bookmark' title='Permanent Link: Does Oracle SQLPLUS Issue Commit when Using Exit or Quit Command?'>Does Oracle SQLPLUS Issue Commit when Using Exit or Quit Command?</a></li>
<li><a href='http://www.dbuggr.com/simon-tite/run-detached-program-daemon-linux-shell-command-line-prompt/' rel='bookmark' title='Permanent Link: Run a Detached Program (daemon) from a Linux Shell Command Line Prompt.'>Run a Detached Program (daemon) from a Linux Shell Command Line Prompt.</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.dbuggr.com/smallwei/run-execute-sql-script-windows-dos-command-prompt-sqlpl/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Common Table Expressions in SQL Server</title>
		<link>http://www.dbuggr.com/mcp111/common-table-expressions-sql-server/</link>
		<comments>http://www.dbuggr.com/mcp111/common-table-expressions-sql-server/#comments</comments>
		<pubDate>Tue, 02 Feb 2010 03:01:50 +0000</pubDate>
		<dc:creator>mcp111</dc:creator>
				<category><![CDATA[tech]]></category>
		<category><![CDATA[common]]></category>
		<category><![CDATA[cte sql query]]></category>
		<category><![CDATA[expressions]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[sql]]></category>
		<category><![CDATA[table]]></category>

		<guid isPermaLink="false">http://www.dbuggr.com/mcp111/common-table-expressions-sql-server/</guid>
		<description><![CDATA[Common Table Expressions in SQL Server

Related posts:How to List  SQL Table Column/field Names
Performance Issue with Oracle Database in Windows Server when Running SQL Query
List of Common LDAP Acronyms



Related posts:<ol><li><a href='http://www.dbuggr.com/yukimash/list-sql-table-column-field-names/' rel='bookmark' title='Permanent Link: How to List  SQL Table Column/field Names'>How to List  SQL Table Column/field Names</a></li>
<li><a href='http://www.dbuggr.com/smallwei/performance-issue-oracle-database-windows-server-running-sql-querie/' rel='bookmark' title='Permanent Link: Performance Issue with Oracle Database in Windows Server when Running SQL Query'>Performance Issue with Oracle Database in Windows Server when Running SQL Query</a></li>
<li><a href='http://www.dbuggr.com/milly/list-common-ldap-acronyms/' rel='bookmark' title='Permanent Link: List of Common LDAP Acronyms'>List of Common LDAP Acronyms</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Common Table Expressions in SQL Server</p>

<p>Related posts:<ol><li><a href='http://www.dbuggr.com/yukimash/list-sql-table-column-field-names/' rel='bookmark' title='Permanent Link: How to List  SQL Table Column/field Names'>How to List  SQL Table Column/field Names</a></li>
<li><a href='http://www.dbuggr.com/smallwei/performance-issue-oracle-database-windows-server-running-sql-querie/' rel='bookmark' title='Permanent Link: Performance Issue with Oracle Database in Windows Server when Running SQL Query'>Performance Issue with Oracle Database in Windows Server when Running SQL Query</a></li>
<li><a href='http://www.dbuggr.com/milly/list-common-ldap-acronyms/' rel='bookmark' title='Permanent Link: List of Common LDAP Acronyms'>List of Common LDAP Acronyms</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.dbuggr.com/mcp111/common-table-expressions-sql-server/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Read the Registry Using T-SQL</title>
		<link>http://www.dbuggr.com/mcp111/read-registry-sql/</link>
		<comments>http://www.dbuggr.com/mcp111/read-registry-sql/#comments</comments>
		<pubDate>Mon, 01 Feb 2010 03:27:38 +0000</pubDate>
		<dc:creator>mcp111</dc:creator>
				<category><![CDATA[tech]]></category>
		<category><![CDATA[read]]></category>
		<category><![CDATA[registry]]></category>
		<category><![CDATA[sql]]></category>
		<category><![CDATA[stored procedure]]></category>
		<category><![CDATA[t-sql]]></category>

		<guid isPermaLink="false">http://www.dbuggr.com/mcp111/read-registry-sql/</guid>
		<description><![CDATA[Read the registry using T-SQL

Related posts:What is the Best Registry Cleaner for Windows XP and Above?
How to Run/execute SQL Script Outside of SQLPLUS in Windows DOS Command Prompt
How to Read and Open a .rar file.



Related posts:<ol><li><a href='http://www.dbuggr.com/smallwei/registry-cleaner-windows-xp/' rel='bookmark' title='Permanent Link: What is the Best Registry Cleaner for Windows XP and Above?'>What is the Best Registry Cleaner for Windows XP and Above?</a></li>
<li><a href='http://www.dbuggr.com/smallwei/run-execute-sql-script-windows-dos-command-prompt-sqlpl/' rel='bookmark' title='Permanent Link: How to Run/execute SQL Script Outside of SQLPLUS in Windows DOS Command Prompt'>How to Run/execute SQL Script Outside of SQLPLUS in Windows DOS Command Prompt</a></li>
<li><a href='http://www.dbuggr.com/andrew8062/read-file-rar/' rel='bookmark' title='Permanent Link: How to Read and Open a .rar file.'>How to Read and Open a .rar file.</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Read the registry using T-SQL</p>

<p>Related posts:<ol><li><a href='http://www.dbuggr.com/smallwei/registry-cleaner-windows-xp/' rel='bookmark' title='Permanent Link: What is the Best Registry Cleaner for Windows XP and Above?'>What is the Best Registry Cleaner for Windows XP and Above?</a></li>
<li><a href='http://www.dbuggr.com/smallwei/run-execute-sql-script-windows-dos-command-prompt-sqlpl/' rel='bookmark' title='Permanent Link: How to Run/execute SQL Script Outside of SQLPLUS in Windows DOS Command Prompt'>How to Run/execute SQL Script Outside of SQLPLUS in Windows DOS Command Prompt</a></li>
<li><a href='http://www.dbuggr.com/andrew8062/read-file-rar/' rel='bookmark' title='Permanent Link: How to Read and Open a .rar file.'>How to Read and Open a .rar file.</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.dbuggr.com/mcp111/read-registry-sql/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How to Escape Ampersand (&amp;) in Oracle SQL Developer.</title>
		<link>http://www.dbuggr.com/smallwei/escape-ampersand-oracle-sql-developer/</link>
		<comments>http://www.dbuggr.com/smallwei/escape-ampersand-oracle-sql-developer/#comments</comments>
		<pubDate>Wed, 27 Jan 2010 18:57:32 +0000</pubDate>
		<dc:creator>smallwei</dc:creator>
				<category><![CDATA[tech]]></category>
		<category><![CDATA[amp]]></category>
		<category><![CDATA[ampersand]]></category>
		<category><![CDATA[oracle]]></category>
		<category><![CDATA[sql]]></category>
		<category><![CDATA[sqldeveloper]]></category>
		<category><![CDATA[value]]></category>

		<guid isPermaLink="false">http://www.dbuggr.com/smallwei/escape-ampersand-oracle-sql-developer/</guid>
		<description><![CDATA[How to escape ampersand (&#38;) in Oracle SQL Developer.
If you have ampersand (&#38;) in your SQL statement, Oracle SQL Developer will prompt you to enter value because it is being treated as substitution value. Follow the tip below to escape it and treat ampersand as a string value.

Related posts:Oracle SQL Developer Freezes and Locks Up [...]


Related posts:<ol><li><a href='http://www.dbuggr.com/milly/oracle-sql-developer-freezes-locks-frequently-randomly/' rel='bookmark' title='Permanent Link: Oracle SQL Developer Freezes and Locks Up Frequently and Randomly.'>Oracle SQL Developer Freezes and Locks Up Frequently and Randomly.</a></li>
<li><a href='http://www.dbuggr.com/milly/escape-percent-character-windows-batch-script-oracle-data-pum/' rel='bookmark' title='Permanent Link: How to Escape Percent Character (%) in Windows Batch Script'>How to Escape Percent Character (%) in Windows Batch Script</a></li>
<li><a href='http://www.dbuggr.com/smallwei/sql-statement-oracle-database-list-tables-cer/' rel='bookmark' title='Permanent Link: What is the sql statement in Oracle database to list all tables that contain cer&#8230;'>What is the sql statement in Oracle database to list all tables that contain cer&#8230;</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>How to escape ampersand (&amp;) in Oracle SQL Developer.</p>
<p>If you have ampersand (&amp;) in your SQL statement, Oracle SQL Developer will prompt you to enter value because it is being treated as substitution value. Follow the tip below to escape it and treat ampersand as a string value.</p>

<p>Related posts:<ol><li><a href='http://www.dbuggr.com/milly/oracle-sql-developer-freezes-locks-frequently-randomly/' rel='bookmark' title='Permanent Link: Oracle SQL Developer Freezes and Locks Up Frequently and Randomly.'>Oracle SQL Developer Freezes and Locks Up Frequently and Randomly.</a></li>
<li><a href='http://www.dbuggr.com/milly/escape-percent-character-windows-batch-script-oracle-data-pum/' rel='bookmark' title='Permanent Link: How to Escape Percent Character (%) in Windows Batch Script'>How to Escape Percent Character (%) in Windows Batch Script</a></li>
<li><a href='http://www.dbuggr.com/smallwei/sql-statement-oracle-database-list-tables-cer/' rel='bookmark' title='Permanent Link: What is the sql statement in Oracle database to list all tables that contain cer&#8230;'>What is the sql statement in Oracle database to list all tables that contain cer&#8230;</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.dbuggr.com/smallwei/escape-ampersand-oracle-sql-developer/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
<!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->
