<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>PoJokAndZs</title>
	<atom:link href="http://andzsr.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://andzsr.wordpress.com</link>
	<description>About IT, database, Operating System, and others related</description>
	<lastBuildDate>Fri, 28 Oct 2011 06:20:12 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='andzsr.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>PoJokAndZs</title>
		<link>http://andzsr.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://andzsr.wordpress.com/osd.xml" title="PoJokAndZs" />
	<atom:link rel='hub' href='http://andzsr.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Oracle Data Guard &#8211; Installation</title>
		<link>http://andzsr.wordpress.com/2010/04/04/oracle-data-guard-installation/</link>
		<comments>http://andzsr.wordpress.com/2010/04/04/oracle-data-guard-installation/#comments</comments>
		<pubDate>Sun, 04 Apr 2010 12:50:28 +0000</pubDate>
		<dc:creator>andzsr</dc:creator>
				<category><![CDATA[Oracle]]></category>

		<guid isPermaLink="false">http://andzsr.wordpress.com/?p=83</guid>
		<description><![CDATA[Oracle Data Guard, Data Guard, andzsr, Indonesia<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=andzsr.wordpress.com&amp;blog=1928660&amp;post=83&amp;subd=andzsr&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>I. Data Guard<br />
Oracle data guard used to make database configuration, primary database with one or more standby database (copy from primary database). Oracle Data Guard ensure high availability, data protection, and disaster recovery with more quick recovery time when the primary database got crashed, because standby database can be easily switchover from standby database to primary database.<br />
II. Data Guard Configuration<br />
Oracle  Data Guard Configuration consist of on database production (primary database)  and one or more standby database.Production and standby database connected through oracle net</p>
<p>II.1 Primary Database<br />
	Primary database is the operasional database accessed by users or aplications.</p>
<p>II.2 Standby Database<br />
	Standby database is copy from primary database. Production and standby database connected through oracle net. Primary database send archive log to standby database and then archived log will be apply in the standby database.</p>
<p>III. Installation steps Oracle Data Guard<br />
III.1 Oracle software install<br />
 For this post i&#8217;m using  O/S Red Hat Enterprise Linux AS release 4 (Nahant Update 7) 64 bit and   Oracle 10.2.0.1. When we install the Oracle 10.2.0.1 we have to choose  Installation type Enterprise Edition, because it have oracle data guard feature.<br />
Do Oracle  installation on production database and standby database with installation type Enterprise Edition.<br />
In production database we install Oracle with the database (the database instance named borneodb)<br />
In standby database install just install the oracle instance , because the database for standby database is copy from primary database (cold backup primary and the restore tostandby).<br />
III.2 Preparation in production database (oraDBServer1) for data guard installation<br />
There are many things that we hav e to prepare before configuring database for oracle database and create the standby database using oracle data guard configuration :<br />
1.Enable Force Logging<br />
After oracle installation and database installation had completed we have to alter  database to force logging mode with this sql below :<br />
SQL&gt; ALTER DATABASE FORCE LOGGING;<br />
2.Make a Password file<br />
$ orapwd file=orapw password=top_secret<br />
3.Make standby redo log<br />
alter database add standby logfile group 6<br />
(&#8216;/u01/app/oracle/oradata/borneodb/DRCREDO_01.log&#8217;) size 5242880;<br />
To see the redo log file in primary we can use this query : select * from v$logfile;<br />
From Oracle documentation  &#8216;A standby redo log is required for the maximum protection and maximum availability modes and the LGWR ASYNC transport mode is recommended for all databases. Data Guard can recover and apply more redo data from a standby redo log than from archived redo log files alone. &#8216;</p>
<p>4.Init file for data guard configuration<br />
Make init file from spfile with command :<br />
SQL&gt; create pfile=&#8217;$ORACLE_HOME/dbs/initborneodb.ora&#8217; from spfile<br />
Then edit pfile for data guard configuration :<br />
borneodb.__db_cache_size=1207959552<br />
borneodb.__java_pool_size=16777216<br />
borneodb.__large_pool_size=16777216<br />
borneodb.__shared_pool_size=352321536<br />
borneodb.__streams_pool_size=0<br />
db_name=&#8217;borneodb&#8217;<br />
db_unique_name=&#8217;borneodb&#8217;<br />
service_names=&#8217;borneodb&#8217;<br />
fal_client=&#8217;borneodb&#8217;<br />
fal_server=&#8217;borneodrc&#8217;<br />
log_archive_config=&#8217;dg_config=(borneodb,borneodrc)&#8217;<br />
log_archive_dest_1=&#8217;LOCATION=/data/oracle/borneodb/archived&#8217;<br />
log_archive_dest_2=&#8217;service=BORNEODBDRC valid_for=(ALL_LOGFILES,PRIMARY_ROLES) db_unique_name=borneodrc lgwr async=20480&#8242;<br />
log_archive_dest_state_1=&#8217;ENABLE&#8217;<br />
log_archive_dest_state_2=&#8217;DEFER&#8217;<br />
log_archive_format=&#8217;%t_%s_%r.dbf&#8217;<br />
standby_archive_dest=&#8217;/data/oracle/borneodb/archived&#8217;<br />
standby_file_management=&#8217;auto&#8217;<br />
*.audit_file_dest=&#8217;/u01/app/oracle/admin/borneodb/adump&#8217;<br />
*.background_dump_dest=&#8217;/u01/app/oracle/admin/borneodb/bdump&#8217;<br />
*.compatible=&#8217;10.2.0.1.0&#8242;<br />
5.Enable mode archive log<br />
To activate archivelog mode :<br />
SQL &gt; Shutdown immediate;<br />
SQL &gt; Startup mount pfile=initborneodb.ora;<br />
SQL &gt; alter database archivelog;<br />
6.Start data guard broker and check the status (untuk switchover)<br />
SQL&gt; ALTER SYSTEM SET DG_BROKER_START=TRUE;<br />
 SQL&gt; SHOW PARAMETER DG_BROKER_START<br />
7.Listener configuration for file LISTENER.ORA<br />
Example :<br />
LISTENER = (DESCRIPTION =<br />
     (ADDRESS_LIST=(ADDRESS=(PROTOCOL=tcp)(HOST=host_name)<br />
     (PORT=port_num))))<br />
	SID_LIST_LISTENER=(SID_LIST=(SID_DESC=(SID_NAME=sid_name)<br />
     (GLOBAL_DBNAME=db_unique_name_DGMGRL.db_domain)<br />
     (ORACLE_HOME=oracle_home)))<br />
LISTENER.ORA pada BORNEODDB :<br />
SID_LIST_LISTENER =<br />
  (SID_LIST =<br />
    (SID_DESC =<br />
      (GLOBAL_DBNAME = borneodb_DGMGRL)<br />
      (ORACLE_HOME = /u01/app/oracle/product/10.2.0/db_1)<br />
      (SID_NAME = borneodb)<br />
    )<br />
  )</p>
<p>LISTENER =<br />
  (DESCRIPTION_LIST =<br />
    (DESCRIPTION =<br />
      (ADDRESS = (PROTOCOL = TCP)(HOST = oraDBServer1)(PORT = 1521))<br />
      (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC0))<br />
    )<br />
  )<br />
8.Make tnsnames.ora for connection to drc (borneodrc)<br />
BORNEODB =<br />
  (DESCRIPTION =<br />
    (ADDRESS = (PROTOCOL = TCP)(HOST = oraDBServer1)(PORT = 1521))<br />
    (CONNECT_DATA =<br />
      (SERVER = SHARED)<br />
      (SERVICE_NAME = borneodb)<br />
    )<br />
  )</p>
<p>#ListenerForDRC<br />
BORNEODBDRC =<br />
   (DESCRIPTION =<br />
    (ADDRESS = (PROTOCOL = TCP)(HOST = 10.128.16.126)(PORT = 1521))<br />
    (CONNECT_DATA =<br />
      (SERVER = DEDICATED)<br />
      (SERVICE_NAME = borneodrc)<br />
    )<br />
  )</p>
<p>9.Create standby control file from primary to be copied to standby database<br />
SQL&gt; SHUTDOWN IMMEDIATE;<br />
SQL&gt; STARTUP MOUNT;<br />
SQL&gt; ALTER DATABASE CREATE STANDBY CONTROLFILE AS &#8216;/data/standby_control01.ctl&#8217;;<br />
SQL&gt; SHUTDOWN IMMEDIATE;<br />
10.Copy all database file from primary database to  standby database<br />
 Copy datafile, standby control file, initialization file to standby database.</p>
<p>III.3 Preparation in standby database (oraDBServer2)<br />
After Copy all database file from primary database to  standby database have been completed :<br />
1.Edit initialization parameter file from primary database for standby database (file $ORACLE_HOME/dbs/initborneodb.ora)<br />
borneodb.__db_cache_size=1207959552<br />
borneodb.__java_pool_size=16777216<br />
borneodb.__large_pool_size=16777216<br />
borneodb.__shared_pool_size=352321536<br />
borneodb.__streams_pool_size=0<br />
db_name=&#8217;borneodb&#8217;<br />
db_unique_name=&#8217;borneodrc&#8217;<br />
service_names=&#8217;borneodb&#8217;<br />
fal_client=&#8217;borneodrc&#8217;<br />
fal_server=&#8217;borneodb&#8217;<br />
log_archive_config=&#8217;dg_config=(borneodb,borneodrc)&#8217;<br />
log_archive_dest_1=&#8217;LOCATION=/data/oracle/borneodb/archived&#8217;<br />
log_archive_dest_2=&#8217;service=borneodb valid_for=(ALL_LOGFILES,PRIMARY_ROLES) db_unique_name=borneodrc lgwr async=20480&#8242;<br />
log_archive_dest_state_1=&#8217;ENABLE&#8217;<br />
log_archive_dest_state_2=&#8217;DEFER&#8217;<br />
log_archive_format=&#8217;%t_%s_%r.dbf&#8217;<br />
standby_archive_dest=&#8217;/data/oracle/borneodb/archived&#8217;<br />
standby_file_management=&#8217;auto&#8217;<br />
*.audit_file_dest=&#8217;/u01/app/oracle/admin/borneodb/adump&#8217;<br />
*.background_dump_dest=&#8217;/u01/app/oracle/admin/borneodb/bdump&#8217;<br />
*.compatible=&#8217;10.2.0.1.0&#8242;<br />
@<br />
2.Edit file listener.ora dan start listener<br />
SID_LIST_LISTENER =<br />
  (SID_LIST =<br />
    (SID_DESC =<br />
      (SID_NAME = PLSExtProc)<br />
      (ORACLE_HOME = /u01/app/oracle/product/10.2.0/db_1)<br />
      (PROGRAM = extproc)<br />
    )<br />
     (SID_DESC =<br />
      (GLOBAL_DNAME = borneodrc_DGMGRL)<br />
      (ORACLE_HOME = /u01/app/oracle/product/10.2.0/db_1)<br />
      (SID_NAME = borneodb)<br />
    )</p>
<p>  )</p>
<p>LISTENER =<br />
  (DESCRIPTION_LIST =<br />
    (DESCRIPTION =<br />
      (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1))<br />
      (ADDRESS = (PROTOCOL = TCP)(HOST = oraDBServer2)(PORT = 1521))<br />
    )<br />
  )<br />
Start listener : #lsnrctl start<br />
3.Startup mount and change database mode to manage standby<br />
#sqlplus / as sysdba<br />
SQL&gt; startup mount pfile=&#8217;initborneodb.ora&#8217;;<br />
SQL&gt; ALTER DATABASE RECOVER MANAGED STANDBY DATABASE DISCONNECT FROM SESSION;<br />
IV. START THE ORACLE DATA GUARD<br />
1.in primary startup oracle using pfile that have been modified<br />
#sqlplus / as sysdba<br />
SQL&gt; startup open pfile=&#8217;initborneodb.ora&#8217;<br />
2.Di primary ubah log_archive_dest_state_2 menjadi  ENABLE<br />
SQL&gt; Alter system set log_archive_dest_state_2=&#8217;ENABLE&#8217;;<br />
3.Di primary lakukan log switch untuk pembuatan archive log<br />
SQL&gt; alter system switch logfile<br />
4.Check status of redo log send from primary database to standby database :<br />
SQL&gt;select dest_id, destination, status, error from v$archive_dest;<br />
See destination 2, destination to standby database. If archive from primary not  standby has not sent, status column from above query will give error message. If archive log send from primary to standby database succes then the value of status column is VALID.</p>
<p>5.Monitor archived in standby database sent from primary database<br />
SQL&gt;select name,to_char(FIRST_TIME,&#8217;dd-mon-yy hh24:mi:ss&#8217;) TIME ,sequence#,applied from v$archived_log order by sequence#<br />
6.Cek archive gap in standby database<br />
SQL&gt; select * from v$archive_gap;<br />
7.Cek sequence in standby database is it already same with primary database<br />
SQL&gt;select max(sequence#) from v$log_history;</p>
<p>V. Cek standby database<br />
To make sure the data guard configuration have been success and standby database identic with primary database we can alter standby database to open read only with these steps :<br />
1.Login to sqlplus<br />
#sqlplus / as sysdba<br />
2.Do these sql below<br />
SQL&gt;alter database recover managed standby database cancel;<br />
SQL&gt;alter database open read only;<br />
3.Query to check table :<br />
Contoh : SQL&gt;select * from tab; →check this on primary too.<br />
4.to alter back to standby mode<br />
alter database recover managed standby database disconnect from session;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/andzsr.wordpress.com/83/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/andzsr.wordpress.com/83/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/andzsr.wordpress.com/83/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/andzsr.wordpress.com/83/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/andzsr.wordpress.com/83/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/andzsr.wordpress.com/83/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/andzsr.wordpress.com/83/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/andzsr.wordpress.com/83/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/andzsr.wordpress.com/83/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/andzsr.wordpress.com/83/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/andzsr.wordpress.com/83/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/andzsr.wordpress.com/83/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/andzsr.wordpress.com/83/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/andzsr.wordpress.com/83/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=andzsr.wordpress.com&amp;blog=1928660&amp;post=83&amp;subd=andzsr&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://andzsr.wordpress.com/2010/04/04/oracle-data-guard-installation/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/654dc1125ce5e3a3c6c4886ae128c7de?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">andzsr</media:title>
		</media:content>
	</item>
		<item>
		<title>Automate kill inactive user in oracle database</title>
		<link>http://andzsr.wordpress.com/2009/06/10/automatate-kill-inactive-user-in-oracle-database/</link>
		<comments>http://andzsr.wordpress.com/2009/06/10/automatate-kill-inactive-user-in-oracle-database/#comments</comments>
		<pubDate>Wed, 10 Jun 2009 02:51:47 +0000</pubDate>
		<dc:creator>andzsr</dc:creator>
				<category><![CDATA[Oracle]]></category>

		<guid isPermaLink="false">http://andzsr.wordpress.com/?p=79</guid>
		<description><![CDATA[Step by step to automatically kill inactive user in oracle database To see inactive user in oracle database you can use this query &#8220;select * from v$session where status=&#8217;INACTIVE&#8217; or user=&#8217;sys&#8217;&#8221; 1. Create procedure for killing inactive oracle database user (oracle user have to be grant dbms_sql to execute this procedure) CREATE OR REPLACE PROCEDURE <a href="http://andzsr.wordpress.com/2009/06/10/automatate-kill-inactive-user-in-oracle-database/" class="excerpt-more-link">[&#8230;]</a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=andzsr.wordpress.com&amp;blog=1928660&amp;post=79&amp;subd=andzsr&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Step by step to automatically kill inactive user in oracle database<br />
To see inactive user in oracle database you can use this query &#8220;select * from v$session where status=&#8217;INACTIVE&#8217; or user=&#8217;sys&#8217;&#8221;<br />
1. Create procedure for killing inactive oracle database user (oracle user have to be grant dbms_sql to execute this procedure)<br />
   CREATE OR REPLACE PROCEDURE kill_session_1 ( session_id in varchar2,serial_num in varchar2)<br />
	AS<br />
	cur INTEGER;<br />
	ret INTEGER;<br />
	string VARCHAR2(100);<br />
	BEGIN<br />
	&#8211;<br />
	&#8211; Comment out the following three lines to<br />
	&#8211; not use KILL<br />
	&#8211;<br />
	 string :=&#8217;ALTER SYSTEM KILL SESSION&#8217; || CHR(10) ||CHR(39)||session_id||&#8217;,'||serial_num||CHR(39);<br />
	&#8211;<br />
	&#8211; Uncomment the following 4 lines to use DISCONNECT<br />
	&#8211;<br />
	 &#8211;string := &#8216;ALTER SYSTEM DISCONNECT SESSION&#8217; || CHR(10) || CHR(39)||session_id||&#8217;,'||serial_num||CHR(39)||CHR(10)||&#8217; POST_TRANSACTION&#8217;;<br />
	   cur := dbms_sql.open_cursor;<br />
	   dbms_sql.parse(cur,string,dbms_sql.native);<br />
	   ret := dbms_sql.execute(cur)  ;<br />
	   dbms_sql.close_cursor(cur);<br />
   END;<br />
   /<br />
2. Create sql script ORA_KILL.sql for spooling command to execute procedure created (see no 1)<br />
    REM<br />
	REM ORA_KILL.SQL<br />
	REM FUNCTION: Kills nonessential Oracle sessions (those that aren&#8217;t<br />
	REM owned)<br />
	REM          : by SYS or &#8220;NULL&#8221;<br />
	REM DEPENDENCIES: Depends on kill_session procedure<br />
	REM MRA 9/12/96<br />
	REM<br />
	SET HEADING OFF TERMOUT OFF VERIFY OFF ECHO OFF<br />
	SPOOL kill_all.sql<br />
	SELECT &#8216;EXECUTE kill_session_1(&#8216;||chr(39)||sid||chr(39)||&#8217;,'||<br />
	chr(39)||serial#||chr(39)||&#8217;);&#8217; FROM v$session<br />
	WHERE username = &#8216;ECARE2&#8242; and status=&#8217;INACTIVE&#8217;<br />
	/<br />
	SPOOL OFF<br />
	START kill_all.sql</p>
<p>3. Create shell script to automate execute sql script using cronjob (for unix user)<br />
   sqlplus -s $schema/$pass@$dbLink as sysdba&lt;&lt;!<br />
   set timing on<br />
   @ORA_KILL</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/andzsr.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/andzsr.wordpress.com/79/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/andzsr.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/andzsr.wordpress.com/79/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/andzsr.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/andzsr.wordpress.com/79/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/andzsr.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/andzsr.wordpress.com/79/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/andzsr.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/andzsr.wordpress.com/79/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/andzsr.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/andzsr.wordpress.com/79/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/andzsr.wordpress.com/79/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/andzsr.wordpress.com/79/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=andzsr.wordpress.com&amp;blog=1928660&amp;post=79&amp;subd=andzsr&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://andzsr.wordpress.com/2009/06/10/automatate-kill-inactive-user-in-oracle-database/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/654dc1125ce5e3a3c6c4886ae128c7de?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">andzsr</media:title>
		</media:content>
	</item>
		<item>
		<title>RMAN setup using catalog database quick guide</title>
		<link>http://andzsr.wordpress.com/2009/06/10/rman-setup-using-catalog-database-quick-guide/</link>
		<comments>http://andzsr.wordpress.com/2009/06/10/rman-setup-using-catalog-database-quick-guide/#comments</comments>
		<pubDate>Wed, 10 Jun 2009 02:49:12 +0000</pubDate>
		<dc:creator>andzsr</dc:creator>
				<category><![CDATA[Oracle]]></category>

		<guid isPermaLink="false">http://andzsr.wordpress.com/2009/06/10/rman-setup-using-catalog-database-quick-guide/</guid>
		<description><![CDATA[To setup RMAN using catalog database follow these steps : 1. Create user for catalog database repository in catalogue database -Create tablespace for catalog database sql&#62;CREATE TABLESPACE RMAN_CAT DATAFILE &#8216;RMAN_CAT&#8217; SIZE 500 M -Create user for catalog database sql&#62;create user rman_cat identified by rman_cat temporary tablespace temp default tablespace rman_cat quota unlimited on rman_cat -Grant <a href="http://andzsr.wordpress.com/2009/06/10/rman-setup-using-catalog-database-quick-guide/" class="excerpt-more-link">[&#8230;]</a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=andzsr.wordpress.com&amp;blog=1928660&amp;post=78&amp;subd=andzsr&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>To setup RMAN using catalog database follow these steps :<br />
1. Create user for catalog database repository in catalogue database<br />
  -Create tablespace for catalog database<br />
   sql&gt;CREATE TABLESPACE RMAN_CAT<br />
   DATAFILE &#8216;RMAN_CAT&#8217; SIZE 500 M<br />
  -Create user for catalog database<br />
   sql&gt;create user rman_cat identified by rman_cat<br />
   temporary tablespace temp<br />
   default tablespace rman_cat<br />
   quota unlimited on rman_cat<br />
  -Grant appropriate privilege for user created<br />
   sql&gt;grant recovery_catalog_owner,resource,create session to rman_cat<br />
  -Connect to recovery catalog using RMAN<br />
   $rman catalog rman_cat/rman_cat@rman_cat<br />
   RMAN&gt;create catalog tablespace rman_cat<br />
2. Connect to target database (Database to be backup) and catalog database using RMAN<br />
  -Connect using rman and register database<br />
   $rman target sys/pass@target catalog rman_cat/rman_cat@rman_cat<br />
   RMAN&gt;register database;<br />
  -Check RMAN configuration<br />
   RMAN&gt; Show all;<br />
   Command above will see RMAN configuration </p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/andzsr.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/andzsr.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/andzsr.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/andzsr.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/andzsr.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/andzsr.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/andzsr.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/andzsr.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/andzsr.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/andzsr.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/andzsr.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/andzsr.wordpress.com/78/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/andzsr.wordpress.com/78/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/andzsr.wordpress.com/78/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=andzsr.wordpress.com&amp;blog=1928660&amp;post=78&amp;subd=andzsr&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://andzsr.wordpress.com/2009/06/10/rman-setup-using-catalog-database-quick-guide/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/654dc1125ce5e3a3c6c4886ae128c7de?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">andzsr</media:title>
		</media:content>
	</item>
		<item>
		<title>SQL query for monitoring (next article Oracle Database Monitoring For Beginner)</title>
		<link>http://andzsr.wordpress.com/2009/04/18/sql-query-for-monitoring-next-article-oracle-database-monitoring-for-beginner/</link>
		<comments>http://andzsr.wordpress.com/2009/04/18/sql-query-for-monitoring-next-article-oracle-database-monitoring-for-beginner/#comments</comments>
		<pubDate>Fri, 17 Apr 2009 18:30:45 +0000</pubDate>
		<dc:creator>andzsr</dc:creator>
				<category><![CDATA[Oracle]]></category>
		<category><![CDATA[andzsr]]></category>
		<category><![CDATA[oracle monitoring]]></category>
		<category><![CDATA[oracle tablespace free space]]></category>
		<category><![CDATA[oracle tablespace query]]></category>
		<category><![CDATA[show tablespace capacity]]></category>

		<guid isPermaLink="false">http://andzsr.wordpress.com/?p=76</guid>
		<description><![CDATA[This article is the sequel of my article Oracle Database Monitoring for Beginner 1. Query for Status Monitoring Examples of Status Monitoring are, check tablespace where it&#8217;s about to fills up, check segment near their maximum extents. -Tablespace related This query will show tablespace with percentage free less than 20 percent or equal 20 percent <a href="http://andzsr.wordpress.com/2009/04/18/sql-query-for-monitoring-next-article-oracle-database-monitoring-for-beginner/" class="excerpt-more-link">[&#8230;]</a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=andzsr.wordpress.com&amp;blog=1928660&amp;post=76&amp;subd=andzsr&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>This article is the sequel of my article <a href="http://andzsr.wordpress.com/2008/08/27/oracle-database-monitoring-for-beginner-the-simple-way"> Oracle Database Monitoring for Beginner </a></p>
<p>1. Query for Status Monitoring<br />
Examples of Status Monitoring are, check tablespace where it&#8217;s about to fills up, check segment near their maximum extents.<br />
-Tablespace related<br />
This query will show tablespace with percentage free less than 20 percent or equal 20 percent<br />
select ddf.TABLESPACE_NAME,<br />
ddf.BYTES,<br />
ddf.BYTES-DFS.BYTES &#8220;BYTES_USED&#8221;,<br />
round(((ddf.BYTES-dfs.BYTES)/ddf.BYTES)*100,2) &#8220;PERCENT_USED&#8221;,<br />
dfs.BYTES &#8220;BYTES_FREE&#8221;,<br />
round((1-((ddf.BYTES-dfs.BYTES)/ddf.BYTES))*100,2) &#8220;PERCENT_FREE&#8221;<br />
from (select TABLESPACE_NAME,<br />
sum(BYTES) bytes<br />
from   dba_data_files<br />
where autoextensible=&#8217;NO&#8217;<br />
group  by TABLESPACE_NAME) ddf,<br />
(select TABLESPACE_NAME,<br />
sum(BYTES) bytes<br />
from dba_free_space<br />
group by TABLESPACE_NAME) dfs<br />
where ddf.TABLESPACE_NAME=dfs.TABLESPACE_NAME and round((1-((ddf.BYTES-dfs.BYTES)/ddf.BYTES))*100,2) &lt; 20 or              round((1-((ddf.BYTES-dfs.BYTES)/ddf.BYTES))*100,2) = 20<br />
order by ((ddf.BYTES-dfs.BYTES)/ddf.BYTES) desc</p>
<p>Query to show tablespace and the datafile<br />
SELECT dfs.TABLESPACE_NAME, SUBSTR (df.NAME, 1, 70) file_name, df.bytes / 1024 / 1024 allocated_mb,<br />
((df.bytes / 1024 / 1024) &#8211; NVL (SUM (dfs.bytes) / 1024 / 1024, 0))<br />
used_mb,<br />
NVL (SUM (dfs.bytes) / 1024 / 1024, 0) free_space_mb<br />
FROM v$datafile df, dba_free_space dfs<br />
WHERE df.file# = dfs.file_id(+)<br />
GROUP BY dfs.file_id, df.NAME, df.file#, df.bytes, dfs.TABLESPACE_NAME<br />
ORDER BY file_name</p>
<p>-Oracle Objects Extents related<br />
Show objects more than 50% of Max Extents<br />
select   OWNER,<br />
TABLESPACE_NAME,<br />
SEGMENT_NAME,<br />
SEGMENT_TYPE,<br />
BYTES,<br />
EXTENTS,<br />
MAX_EXTENTS,<br />
(EXTENTS/MAX_EXTENTS)*100 \&#8221;PERCENTAGE\&#8221;<br />
from     dba_segments<br />
where    SEGMENT_TYPE in (&#8216;TABLE&#8217;,'INDEX&#8217;)<br />
and      EXTENTS &gt; MAX_EXTENTS/2<br />
order by (EXTENTS/MAX_EXTENTS) desc</p>
<p>Show Segment near their maximum extents<br />
SELECT e.owner,<br />
e.segment_type,<br />
Substr(e.segment_name, 1, 30) &#8220;SEGMENT_NAME&#8221;,<br />
Trunc(s.initial_extent/1024) &#8220;INITIAL K&#8221;,<br />
Trunc(s.next_extent/1024) &#8220;NEXT K&#8221;,<br />
s.max_extents,<br />
Count(*) as extents<br />
FROM   dba_extents e,<br />
dba_segments s<br />
WHERE  e.owner        = s.owner<br />
AND    e.segment_name = s.segment_name<br />
AND    e.owner        NOT IN (&#8216;SYS&#8217;, &#8216;SYSTEM&#8217;)<br />
GROUP BY e.owner, e.segment_type, e.segment_name, s.initial_extent, s.next_extent, s.max_extents<br />
HAVING Count(*) &gt; s.max_extents &#8211; 10<br />
ORDER BY e.segment_type, e.owner, e.segment_type, Count(*) DESC</p>
<p>-Show Oracle session related and memory used<br />
SELECT NVL(a.username,&#8217;(oracle)&#8217;) AS username,<br />
a.sid,<br />
a.serial#,<br />
a.machine,<br />
a.module,<br />
a.program,<br />
a.LOGON_TIME,<br />
a.status,<br />
a.process,<br />
Trunc(b.value/1024) AS memory_kb<br />
FROM   v$session a,<br />
v$sesstat b,<br />
v$statname c<br />
WHERE  a.sid = b.sid<br />
AND    b.statistic# = c.statistic#<br />
AND    c.name = &#8216;session pga memory&#8217;<br />
AND    a.program IS NOT NULL<br />
ORDER BY  MEMORY_KB desc, a.MODULE asc,username desc</p>
<p>2. Query for Performance Monitoring<br />
-Show Oracle Hit Ratio<br />
Dictionary Hit Ratio<br />
The ratio of cache hits to cache lookup attempts in the data dictionary cache. In other words, the rate the database goes to the dictionary   instead of the hard disk to retrieve data. A low ratio suggests more RAM should be added<br />
The Dictionary Hit Ratio value have to be more than 90 percent<br />
SELECT sum(gets) &#8220;GETS&#8221;,sum(getmisses) &#8220;CACHE MISSES&#8221;,round((1 &#8211; (sum(getmisses) / sum(gets))) * 100,3) &#8220;DICTIONARY&#8221;<br />
FROM v$rowcache</p>
<p>Buffer Hit Ratio<br />
The rate the database goes to the buffer instead of the hard disk to retrieve data. A low ratio suggests more RAM should be added to the system.<br />
Buffer hit ratio have to be more than 85%<br />
SELECT cur.value &#8220;block&#8221;,con.value &#8220;con&#8221;,phy.value &#8220;phy&#8221;, ROUND((1-(phy.value / (cur.value + con.value)))*100,2) &#8220;BUFFER&#8221;<br />
FROM v$sysstat@&#8221;.$dbName.&#8221; cur, v$sysstat@&#8221;.$dbName.&#8221; con, v$sysstat@&#8221;.$dbName.&#8221; phy<br />
WHERE cur.name = &#8216;db block gets&#8217;<br />
AND con.name = &#8216;consistent gets&#8217;<br />
AND phy.name = &#8216;physical reads&#8217;</p>
<p>Library Hit Ratio<br />
Monitors the percentage of entries in the library cache that were parsed more than once (reloads) over the lifetime of the instance.<br />
Library Hit Ratio have to be more than 95%<br />
SELECT sum(pins) &#8220;EXEC&#8221;, sum(pinhits) &#8220;EXEC HITS&#8221;, round((sum(pinhits) / sum(pins)) * 100,3) &#8220;HIT RATIO&#8221;, sum(reloads) &#8220;MISSES&#8221;,round((sum(pins) / (sum(pins) + sum(reloads))) * 100,3) &#8220;HITRATIO&#8221;<br />
FROM v$librarycache</p>
<p>-Show memory usage by user connected<br />
SELECT NVL(a.username,&#8217;(oracle)&#8217;) AS username,<br />
a.machine,<br />
a.module,<br />
a.program,<br />
Trunc(b.value/1024) AS memory_kb<br />
FROM   v$session a,<br />
v$sesstat b,<br />
v$statname c<br />
WHERE  a.sid = b.sid<br />
AND    b.statistic# = c.statistic#<br />
AND    c.name = &#8216;session pga memory&#8217;<br />
AND    a.program IS NOT NULL<br />
ORDER BY  MEMORY_KB desc, a.MODULE asc,username desc</p>
<p>-Show Oracle Sort Information<br />
select name,to_char(value,&#8217;999,999,999,999,999&#8242;) &#8220;VALUE&#8221;<br />
from sys.v_$sysstat<br />
where name like &#8216;sort%&#8217;<br />
Show hit ratio for sort<br />
Sorting percentage on disk have less than 5 %. If the value more than 5 % then change parameter SORT_AREA_SIZE.<br />
select to_char(100*a.value/decode((a.value+b.value),0,1,(A.value+b.value)),&#8217;999.90&#8242;) &#8220;VALUE&#8221;<br />
from sys.v_$sysstat a, sys.v_$sysstat b<br />
where a.name = &#8216;sorts (disk)&#8217;<br />
and b.name = &#8216;sorts (memory)&#8217;</p>
<p>-Show Oracle SGA Info<br />
select name, to_char(value,&#8217;999,999,999,999,999&#8242;) &#8220;VALUE&#8221; from sys.v_$sga</p>
<p>-Show Oracle Invalid Objects<br />
This query is to show invalid objects in Oracle<br />
select OWNER,<br />
OBJECT_TYPE,<br />
OBJECT_NAME,<br />
STATUS<br />
from dba_objects<br />
where STATUS = &#8216;INVALID&#8217;<br />
order by OWNER, OBJECT_TYPE, OBJECT_NAME</p>
<p>Solution :<br />
if the object invalid you can recompile it or you can delete it if it&#8217;s not used.<br />
sql : SQL&gt;ALTER PROCEDURE PROC_NAME COMPILE ;<br />
SQL&gt;ALTER PACKAGE PACKAGE_NAME COMPILE ;<br />
SQL&gt;ALTER VIEW VIEW_NAME COMPILE ;<br />
Or if you have many invalid objects run this script reside in :  $ORACLE_HOME/rdbms/admin/utlrp.sql<br />
Login to sqlplus<br />
sqlplus &gt; @utlrp</p>
<p>-Show Query running in Oracle<br />
This query will show currently queries running in Oracle.<br />
SELECT *<br />
FROM (SELECT Substr(a.sql_text,1,50) sql_text,Trunc(a.disk_reads/Decode(a.executions,0,1,a.executions))     reads_per_execution,a.buffer_gets,a.disk_reads,a.executions,a.sorts,a.address FROM v$sqlarea a) WHERE  rownum &lt;= 10</p>
<p>To be continued &#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;&#8230;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/andzsr.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/andzsr.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/andzsr.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/andzsr.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/andzsr.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/andzsr.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/andzsr.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/andzsr.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/andzsr.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/andzsr.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/andzsr.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/andzsr.wordpress.com/76/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/andzsr.wordpress.com/76/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/andzsr.wordpress.com/76/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=andzsr.wordpress.com&amp;blog=1928660&amp;post=76&amp;subd=andzsr&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://andzsr.wordpress.com/2009/04/18/sql-query-for-monitoring-next-article-oracle-database-monitoring-for-beginner/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/654dc1125ce5e3a3c6c4886ae128c7de?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">andzsr</media:title>
		</media:content>
	</item>
		<item>
		<title>Drop tablespace with missing datafile</title>
		<link>http://andzsr.wordpress.com/2009/01/27/drop-tablespace-with-missing-datafile/</link>
		<comments>http://andzsr.wordpress.com/2009/01/27/drop-tablespace-with-missing-datafile/#comments</comments>
		<pubDate>Tue, 27 Jan 2009 04:32:17 +0000</pubDate>
		<dc:creator>andzsr</dc:creator>
				<category><![CDATA[Oracle]]></category>
		<category><![CDATA[Drop tablespace with missing datafile]]></category>
		<category><![CDATA[ORA-01110]]></category>
		<category><![CDATA[ORA-01157]]></category>

		<guid isPermaLink="false">http://andzsr.wordpress.com/?p=66</guid>
		<description><![CDATA[Today i have my new server installed with oracle 10G and i have to migrate old oracle 8i to this newly machine. I&#8217;ve already succeed mograting from oracle8i to oracle 10G by using export / import utility in oracle (later i will post how to do it in this blog) Unfortunately i&#8217;m accidentally delete one <a href="http://andzsr.wordpress.com/2009/01/27/drop-tablespace-with-missing-datafile/" class="excerpt-more-link">[&#8230;]</a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=andzsr.wordpress.com&amp;blog=1928660&amp;post=66&amp;subd=andzsr&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Today i have my new server installed with oracle 10G and i have to migrate old oracle 8i to this newly machine. I&#8217;ve already succeed mograting from oracle8i to oracle 10G by using export / import utility in oracle (later i will post how to do it in this blog)</p>
<p>Unfortunately i&#8217;m accidentally delete one datafile (not the system datafile) and when i want to shutdown the database i get this error code </p>
<p>ORA-01157: cannot identify/lock data file 121 &#8211; see DBWR trace file</p>
<p>ORA-01110: data file 121: &#8216;/ora_data/ORADATA/USAGE_INDEX23_01.dbf&#8217;</p>
<p>to solve just do this simple step:</p>
<p>1.Shutdown abort your database to force shutdown</p>
<p>    sqlplus &gt; shutdown abort</p>
<p>2.Startup mount database</p>
<p> sqlplus &gt; startup mount</p>
<p>3.After that issue this following command</p>
<p>sqlplus &gt; ALTER DATABASE DATAFILE ‘&lt;datafile name with complete path&gt;’ OFFLINE DROP;</p>
<p>4.Then open the database</p>
<p>sqlplus &gt; alter database open</p>
<p>5.Drop the tablespace by issue this following command</p>
<p>DROP TABLESPACE &lt;tablespace name&gt; INCLUDING CONTENTS;</p>
<p>6.After that if you have backup your database you can recover your tablespace.</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/andzsr.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/andzsr.wordpress.com/66/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/andzsr.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/andzsr.wordpress.com/66/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/andzsr.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/andzsr.wordpress.com/66/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/andzsr.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/andzsr.wordpress.com/66/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/andzsr.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/andzsr.wordpress.com/66/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/andzsr.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/andzsr.wordpress.com/66/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/andzsr.wordpress.com/66/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/andzsr.wordpress.com/66/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=andzsr.wordpress.com&amp;blog=1928660&amp;post=66&amp;subd=andzsr&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://andzsr.wordpress.com/2009/01/27/drop-tablespace-with-missing-datafile/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/654dc1125ce5e3a3c6c4886ae128c7de?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">andzsr</media:title>
		</media:content>
	</item>
		<item>
		<title>WE WILL NOT GO DOWN (Song for Gaza)</title>
		<link>http://andzsr.wordpress.com/2009/01/16/we-will-not-go-down-song-for-gaza/</link>
		<comments>http://andzsr.wordpress.com/2009/01/16/we-will-not-go-down-song-for-gaza/#comments</comments>
		<pubDate>Fri, 16 Jan 2009 06:17:21 +0000</pubDate>
		<dc:creator>andzsr</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[Gaza]]></category>
		<category><![CDATA[Michael Heart]]></category>
		<category><![CDATA[Palestina]]></category>
		<category><![CDATA[We Will Not Go Down]]></category>

		<guid isPermaLink="false">http://andzsr.wordpress.com/?p=64</guid>
		<description><![CDATA[SONG DEDICATED TO PALESTINIAN WE WILL NOT GO DOWN (Song for Gaza) (Composed by Michael Heart) Copyright 2009 A blinding flash of white light Lit up the sky over Gaza tonight People running for cover Not knowing whether they&#8217;re dead or alive They came with their tanks and their planes With ravaging fiery flames And <a href="http://andzsr.wordpress.com/2009/01/16/we-will-not-go-down-song-for-gaza/" class="excerpt-more-link">[&#8230;]</a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=andzsr.wordpress.com&amp;blog=1928660&amp;post=64&amp;subd=andzsr&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>SONG DEDICATED TO PALESTINIAN</p>
<p>WE WILL NOT GO DOWN (Song for Gaza)</p>
<p>(Composed by Michael Heart)</p>
<p>Copyright 2009</p>
<p>A blinding flash of white light</p>
<p>Lit up the sky over Gaza tonight</p>
<p>People running for cover</p>
<p>Not knowing whether they&#8217;re dead or alive</p>
<p>They came with their tanks and their planes</p>
<p>With ravaging fiery flames</p>
<p>And nothing remains</p>
<p>Just a voice rising up in the smoky haze</p>
<p>We will not go down</p>
<p>In the night, without a fight</p>
<p>You can burn up our mosques and our homes and our schools</p>
<p>But our spirit will never die</p>
<p>We will not go down</p>
<p>In Gaza tonight  Women and children alike</p>
<p>Murdered and massacred night after night</p>
<p>While the so-called leaders of countries afar</p>
<p>Debated on who&#8217;s wrong or right</p>
<p>But their powerless words were in vain</p>
<p>And the bombs fell down like acid rain</p>
<p>But through the tears and the blood and the pain</p>
<p>You can still hear that voice through the smoky haze</p>
<p>We will not go down</p>
<p>In the night, without a fight</p>
<p>You can burn up our mosques and our homes and our schools</p>
<p>But our spirit will never die</p>
<p>We will not go down</p>
<p>In Gaza tonight</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/andzsr.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/andzsr.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/andzsr.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/andzsr.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/andzsr.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/andzsr.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/andzsr.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/andzsr.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/andzsr.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/andzsr.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/andzsr.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/andzsr.wordpress.com/64/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/andzsr.wordpress.com/64/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/andzsr.wordpress.com/64/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=andzsr.wordpress.com&amp;blog=1928660&amp;post=64&amp;subd=andzsr&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://andzsr.wordpress.com/2009/01/16/we-will-not-go-down-song-for-gaza/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/654dc1125ce5e3a3c6c4886ae128c7de?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">andzsr</media:title>
		</media:content>
	</item>
		<item>
		<title>Happy New Year 1430 Hijriah and 2009</title>
		<link>http://andzsr.wordpress.com/2009/01/06/happy-new-year-1430-hijriah-and-2009/</link>
		<comments>http://andzsr.wordpress.com/2009/01/06/happy-new-year-1430-hijriah-and-2009/#comments</comments>
		<pubDate>Tue, 06 Jan 2009 01:41:49 +0000</pubDate>
		<dc:creator>andzsr</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://andzsr.wordpress.com/?p=61</guid>
		<description><![CDATA[Happy new year 1430 Hijriah and 2009&#8230;.. Hope we all will be better people in this very new year&#8230;.. Amin&#8230;. Alhamdulillah for the things we got in 1429 Hijriah and 2008, bad things and good things is not coming for no reasons, but it gives us experiences, to strengthen us, to taught us to be <a href="http://andzsr.wordpress.com/2009/01/06/happy-new-year-1430-hijriah-and-2009/" class="excerpt-more-link">[&#8230;]</a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=andzsr.wordpress.com&amp;blog=1928660&amp;post=61&amp;subd=andzsr&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Happy new year 1430 Hijriah and 2009&#8230;..</p>
<p>Hope we all will be better people in this very new year&#8230;.. Amin&#8230;.</p>
<p>Alhamdulillah for the things we got in 1429 Hijriah and 2008, bad things and good things is not coming for no reasons, but it gives us experiences, to strengthen us, to taught us to be the best person,  give our best for everything goods  and do not ever we lost tracks ( Follow Alquran and the prophet Muhammad ways)</p>
<p>And to my fellow Muslim Palestinian ..I am praying for you&#8230; Your victory will come&#8230;</p>
<br />  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/andzsr.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/andzsr.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/andzsr.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/andzsr.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/andzsr.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/andzsr.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/andzsr.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/andzsr.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/andzsr.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/andzsr.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/andzsr.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/andzsr.wordpress.com/61/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/andzsr.wordpress.com/61/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/andzsr.wordpress.com/61/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=andzsr.wordpress.com&amp;blog=1928660&amp;post=61&amp;subd=andzsr&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://andzsr.wordpress.com/2009/01/06/happy-new-year-1430-hijriah-and-2009/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/654dc1125ce5e3a3c6c4886ae128c7de?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">andzsr</media:title>
		</media:content>
	</item>
		<item>
		<title>Oracle Database Monitoring For Beginner (The Simple Way)</title>
		<link>http://andzsr.wordpress.com/2008/08/27/oracle-database-monitoring-for-beginner-the-simple-way/</link>
		<comments>http://andzsr.wordpress.com/2008/08/27/oracle-database-monitoring-for-beginner-the-simple-way/#comments</comments>
		<pubDate>Tue, 26 Aug 2008 21:20:35 +0000</pubDate>
		<dc:creator>andzsr</dc:creator>
				<category><![CDATA[Oracle]]></category>

		<guid isPermaLink="false">http://andzsr.wordpress.com/?p=55</guid>
		<description><![CDATA[Why Monitor Oracle Database Database need to be monitored to check the performance of the monitored database, so we can change the database parameter based on result from monitoring and keep the database in it&#8217;s best performance. Database monitoring also needed so we always know the condition of database, and know the symptom of our database <a href="http://andzsr.wordpress.com/2008/08/27/oracle-database-monitoring-for-beginner-the-simple-way/" class="excerpt-more-link">[&#8230;]</a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=andzsr.wordpress.com&amp;blog=1928660&amp;post=55&amp;subd=andzsr&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<ul>
<li>Why Monitor Oracle Database</li>
<p>Database need to be monitored to check the performance of the monitored database, so we can change the database parameter based on result from monitoring and keep the database in it&#8217;s best performance.</p>
<p>Database monitoring also needed so we always know the condition of database, and know the symptom of our database and we can take action right before more problem happens to database.</p>
<li>Types of Oracle Database Monitoring</li>
<p>Database Monitoring can be grouped into three types :</p>
<li>1. Status monitoring</li>
<p>This monitoring type monitors current status of an events and give reports or alert when it exceeds a defined threshold</p>
<p>Examples of Status Monitoring are, check tablespace where it&#8217;s about to fills up, check segment near their maximum extents.</p>
<li>2. Performance monitoring</li>
<p>Monitors oracle instance memory (sga, buffer, etc), sql query running in database, session which consumes a lot of memory, etc.</p>
<p>Examples of Performance monitoring are, query from v_$sqlarea to check what SQL has been running in our Oracle Machine, query from v$sgastat and query to get hit ratio for cache , library and buffer cache.</p>
<li>3. Trend Analysis</li>
<p>Collects historical data on specific event that occur in database like SGA status, segment that cannot extends, filled up tablespace and make analysis from that historical data so that we can predict the status of SGA in any given time or we can now when the tablespace will filled up.</p>
<p>Examples of Trend Analysis are, make a histroy table for events we monitored. We can make history table for tablespace so that from that history table we could gain information and make prediction when will the time the tablespace will be filled up. Or we can make history table from v_$session, so from that table we can know what time our database accessed by so many user.</p>
<p>Next is the query to monitored database &#8230; soon&#8230;</p>
<pre class="moz-signature">There are two ways to write error-free programs. Only the third one works.</pre>
</ul>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/andzsr.wordpress.com/55/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/andzsr.wordpress.com/55/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/andzsr.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/andzsr.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/andzsr.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/andzsr.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/andzsr.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/andzsr.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/andzsr.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/andzsr.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/andzsr.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/andzsr.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/andzsr.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/andzsr.wordpress.com/55/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/andzsr.wordpress.com/55/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/andzsr.wordpress.com/55/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=andzsr.wordpress.com&amp;blog=1928660&amp;post=55&amp;subd=andzsr&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://andzsr.wordpress.com/2008/08/27/oracle-database-monitoring-for-beginner-the-simple-way/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/654dc1125ce5e3a3c6c4886ae128c7de?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">andzsr</media:title>
		</media:content>
	</item>
		<item>
		<title>Movie Quotes From When Harry Met Sally</title>
		<link>http://andzsr.wordpress.com/2008/07/07/movie-quotes-from-when-harry-met-sally/</link>
		<comments>http://andzsr.wordpress.com/2008/07/07/movie-quotes-from-when-harry-met-sally/#comments</comments>
		<pubDate>Mon, 07 Jul 2008 00:27:34 +0000</pubDate>
		<dc:creator>andzsr</dc:creator>
				<category><![CDATA[AndZs Story]]></category>
		<category><![CDATA[Movie Quotes From When Harry Met Sally]]></category>
		<category><![CDATA[When Harry Met Sally]]></category>

		<guid isPermaLink="false">http://andzsr.wordpress.com/?p=51</guid>
		<description><![CDATA[Quotes From Movies When Harry Met Sally : I love that you get cold when it&#8217;s 71 degrees out. I love that it takes you an hour and a half to order a sandwich. I love that you get a little crinkle above your nose when you&#8217;re looking at me like I&#8217;m nuts. I love <a href="http://andzsr.wordpress.com/2008/07/07/movie-quotes-from-when-harry-met-sally/" class="excerpt-more-link">[&#8230;]</a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=andzsr.wordpress.com&amp;blog=1928660&amp;post=51&amp;subd=andzsr&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Quotes From Movies When Harry Met Sally :</p>
<p><a> I love that you get cold when it&#8217;s 71 degrees out. I love that it takes you an hour and a half to order a sandwich. I love that you get a little crinkle above your nose when you&#8217;re looking at me like I&#8217;m nuts. I love that after I spend the day with you, I can still smell your perfume on my clothes. And I love that you are the last person I want to talk to before I go to sleep at night. And it&#8217;s not because I&#8217;m lonely, and it&#8217;s not because it&#8217;s New Year&#8217;s Eve. I came here tonight because when you realize you want to spend the rest of your life with somebody, you want the rest of your life to start as soon as possible.</a></p>
<p><strong><a href="http://www.imdb.com/name/nm0000345/">Harry Burns</a></strong>: There are two kinds of women: high maintenance and low maintenance.<br />
<strong><a href="http://www.imdb.com/name/nm0000212/">Sally Albright</a></strong>: Which one am I?<br />
<strong><a href="http://www.imdb.com/name/nm0000345/">Harry Burns</a></strong>: You&#8217;re the worst kind. You&#8217;re high maintenance but you think you&#8217;re low maintenance.</p>
<p>Just love the quote&#8230;&#8230;</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/andzsr.wordpress.com/51/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/andzsr.wordpress.com/51/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/andzsr.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/andzsr.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/andzsr.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/andzsr.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/andzsr.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/andzsr.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/andzsr.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/andzsr.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/andzsr.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/andzsr.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/andzsr.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/andzsr.wordpress.com/51/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/andzsr.wordpress.com/51/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/andzsr.wordpress.com/51/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=andzsr.wordpress.com&amp;blog=1928660&amp;post=51&amp;subd=andzsr&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://andzsr.wordpress.com/2008/07/07/movie-quotes-from-when-harry-met-sally/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/654dc1125ce5e3a3c6c4886ae128c7de?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">andzsr</media:title>
		</media:content>
	</item>
		<item>
		<title>Remote desktop your Linux using Xmanager</title>
		<link>http://andzsr.wordpress.com/2008/06/17/remote-desktop-your-linux-using-xmanager/</link>
		<comments>http://andzsr.wordpress.com/2008/06/17/remote-desktop-your-linux-using-xmanager/#comments</comments>
		<pubDate>Mon, 16 Jun 2008 16:30:03 +0000</pubDate>
		<dc:creator>andzsr</dc:creator>
				<category><![CDATA[IT TipZzz]]></category>
		<category><![CDATA[Linux Xmanager]]></category>
		<category><![CDATA[Remote desktop Linux]]></category>
		<category><![CDATA[Remote Linux using Xmanager]]></category>

		<guid isPermaLink="false">http://andzsr.wordpress.com/?p=47</guid>
		<description><![CDATA[It&#8217;s really helpful to remote your Linux. For example if your Linux is in Data Center where the place is so  cold  and there is  no &#8216;cozy&#8217; place  for  you  to  install  and  configure  something  in your  Linux  that  need X11(Like install Oracle using Oracle Universal Installer). To remote your Linux into your workstation you <a href="http://andzsr.wordpress.com/2008/06/17/remote-desktop-your-linux-using-xmanager/" class="excerpt-more-link">[&#8230;]</a><img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=andzsr.wordpress.com&amp;blog=1928660&amp;post=47&amp;subd=andzsr&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s really helpful to remote your Linux. For example if your Linux is in Data Center where the place is so  cold  and there is  no &#8216;cozy&#8217; place  for  you  to  install  and  configure  something  in your  Linux  that  need X11(Like install Oracle using Oracle Universal Installer).</p>
<p>To remote your Linux into your workstation you need software to remote your Linux, for now i choose Xmanager (Quite simple but &#8220;LICENSED&#8221; huh). There is other tool like VNC or XMing(I think i choose XManager because i&#8217;ve use it in my Solaris Box long time ago and always got good connection using it)</p>
<p>So to enable your Linux for remote desktop just follow this simple  instruction :</p>
<p>1. Open gdm.conf configuration file, usually located in /etc/X11/gdm/gdm.conf or /etc/gdm/custom.conf</p>
<p>2. Edit gdm.conf file, in section [gdcmp] change enable =  false  to  enable  =  true</p>
<p>3. Change run level to 5 in file /etc/inittab (example : x:5:once:/etc/X11/prefdm -nodaemon</p>
<p>4. Restart gdm service by simply run command : gdm-restart</p>
<p>5. Find your Xmanager source, installed it but not crack it.</p>
<p>PS : To enable X graphic open your terminal using root and type xhost +</p>
<p>Now let see my Linux Box in my workstation</p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/andzsr.wordpress.com/47/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/andzsr.wordpress.com/47/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/andzsr.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/andzsr.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/andzsr.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/andzsr.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/andzsr.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/andzsr.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/andzsr.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/andzsr.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/andzsr.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/andzsr.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/andzsr.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/andzsr.wordpress.com/47/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/andzsr.wordpress.com/47/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/andzsr.wordpress.com/47/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=andzsr.wordpress.com&amp;blog=1928660&amp;post=47&amp;subd=andzsr&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://andzsr.wordpress.com/2008/06/17/remote-desktop-your-linux-using-xmanager/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/654dc1125ce5e3a3c6c4886ae128c7de?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">andzsr</media:title>
		</media:content>
	</item>
	</channel>
</rss>
