<?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>StudyJava.org &#187; Oracle</title>
	<atom:link href="http://studyjava.org/category/database/oracle/feed" rel="self" type="application/rss+xml" />
	<link>http://studyjava.org</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Mon, 05 Apr 2010 11:49:44 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Drop Data Base from oracle</title>
		<link>http://studyjava.org/database/oracle/drop-data-base-from-oracle</link>
		<comments>http://studyjava.org/database/oracle/drop-data-base-from-oracle#comments</comments>
		<pubDate>Tue, 29 Sep 2009 02:46:06 +0000</pubDate>
		<dc:creator>rathi</dc:creator>
				<category><![CDATA[Oracle]]></category>
		<category><![CDATA[Drop Data Base from oracle]]></category>

		<guid isPermaLink="false">http://studyjava.org/?p=238</guid>
		<description><![CDATA[Drop Data Base from oracle DROP USER databasename cascade; //Oracle It is possible to drop a database in Oracle with the new SQL statement drop database. The command gets rid of datafiles online redo log files, controlfiles and spfile. Example to use the command shutdown abort; startup mount exclusive restrict; drop database; exit Requirements database [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Drop Data Base from oracle </strong></p>
<p>DROP USER databasename cascade; //Oracle</p>
<p>It is possible to drop a database in Oracle with the new SQL statement drop database. The command gets rid of datafiles online redo log files, controlfiles and spfile.</p>
<p><strong>Example to use the command</strong></p>
<p>shutdown abort;<br />
startup mount exclusive restrict;<br />
drop database;<br />
exit</p>
<p><strong>Requirements</strong></p>
<ul> database must be closed,<br />
exclusively mounted,<br />
restricted</ul>
<div id="st0000000001" class="st-taf"><script src="http://taf.socialtwist.com:80/taf/js/shoppr.core.js?id=0000000001"></script><img style="border:0;margin:0;padding:0;" src="http://tellafriend.socialtwist.com:80/wizard/images/tafbutton_blue16.png" onmouseout="hideHoverMap(this)" onmouseover="showHoverMap(this, '0000000001', 'http%3A%2F%2Fstudyjava.org%2Fdatabase%2Foracle%2Fdrop-data-base-from-oracle', 'Drop+Data+Base+from+oracle')" onclick="cw(this, {id:'0000000001',link: 'http%3A%2F%2Fstudyjava.org%2Fdatabase%2Foracle%2Fdrop-data-base-from-oracle', title: '+Drop+Data+Base+from+oracle+' })"/></div>]]></content:encoded>
			<wfw:commentRss>http://studyjava.org/database/oracle/drop-data-base-from-oracle/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Find All Tables and Schema in ORACLE and MYSQL</title>
		<link>http://studyjava.org/database/find-all-tables-and-schema-in-oracle-and-mysql</link>
		<comments>http://studyjava.org/database/find-all-tables-and-schema-in-oracle-and-mysql#comments</comments>
		<pubDate>Mon, 28 Sep 2009 05:40:27 +0000</pubDate>
		<dc:creator>rathi</dc:creator>
				<category><![CDATA[Database]]></category>
		<category><![CDATA[MySql]]></category>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[MYSQL Schema]]></category>
		<category><![CDATA[Schema in ORACLE]]></category>

		<guid isPermaLink="false">http://studyjava.org/?p=243</guid>
		<description><![CDATA[Get All Tables in a Oracle and MySql Schema Oracle In Oracle you can use the following query select object_name from user_objects where object_type = &#8216;TABLE&#8217;; MYSQL In MySql you can use the follwing query show tables; Get All Schema in Oracle and MySql ORACLE We can get all oracle schemas using the following query [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Get All Tables in a Oracle and MySql Schema</strong></p>
<p><strong>Oracle</strong></p>
<p>In Oracle you can use the following query</p>
<p>select object_name from user_objects where object_type = &#8216;TABLE&#8217;;</p>
<p><strong>MYSQL</strong></p>
<p>In MySql you can use the follwing query</p>
<p>show tables;</p>
<p><strong>Get All Schema in Oracle and MySql</strong></p>
<p><strong>ORACLE</strong></p>
<p>We can get all oracle schemas using the following query</p>
<p>SELECT username FROM all_users;<br />
or<br />
SELECT * all_users;</p>
<p><strong>MYSQL</strong></p>
<p>We can get all mysql schemas using the following query</p>
<p>SELECT SCHEMA_NAME FROM information_schema.SCHEMATA;<br />
or<br />
SELECT * information_schema.SCHEMATA;<br />
or<br />
show databases</p>
<div id="st0000000001" class="st-taf"><script src="http://taf.socialtwist.com:80/taf/js/shoppr.core.js?id=0000000001"></script><img style="border:0;margin:0;padding:0;" src="http://tellafriend.socialtwist.com:80/wizard/images/tafbutton_blue16.png" onmouseout="hideHoverMap(this)" onmouseover="showHoverMap(this, '0000000001', 'http%3A%2F%2Fstudyjava.org%2Fdatabase%2Ffind-all-tables-and-schema-in-oracle-and-mysql', 'Find+All+Tables+and+Schema+in+ORACLE+and+MYSQL')" onclick="cw(this, {id:'0000000001',link: 'http%3A%2F%2Fstudyjava.org%2Fdatabase%2Ffind-all-tables-and-schema-in-oracle-and-mysql', title: '+Find+All+Tables+and+Schema+in+ORACLE+and+MYSQL+' })"/></div>]]></content:encoded>
			<wfw:commentRss>http://studyjava.org/database/find-all-tables-and-schema-in-oracle-and-mysql/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

