<?xml version="1.0" encoding="gbk"?>
			<?xml-stylesheet type="text/css" href="http://space.itpub.net/css/rss.css"?>
			<rss version="2.0">
			  <channel>
			    <title>浪漫双鱼的个人空间</title>
			    <link>http://space.itpub.net/11088128</link>
			    <description>人的修炼似乎应该像大海一样沉稳和宽容，却也应有自己的波澜。                         瓜娃警世录:永远不要做沙僧!</description>
			    <copyright>Copyright(C) 浪漫双鱼的个人空间</copyright>
			    <generator>SupeSite/X-Space</generator>
			    <lastBuildDate>Sun, 07 Sep 2008 13:29:44 GMT</lastBuildDate><item>
								<title>更改数据库字符集步骤</title>
								<link>http://space.itpub.net/11088128/viewspace-170136</link>
								<description><![CDATA[Startup nomount; <BR>Alter database mount exclusive; <BR>Alter system enable restricted session; <BR>Alter system set job_queue_processes=10; <BR>Alter database open; <BR>Alter database character set INTERNAL_USE zhs16gbk;<BR># 使用INTERNAL_USE可以跳过...]]></description>
								<category>blog</category>
								<author>浪漫双鱼</author>
								<pubDate>Tue, 12 Feb 2008 22:55:52 GMT</pubDate>
							</item>
							<item>
								<title>Linux环境下的一个rman备份的实例脚本(转载)</title>
								<link>http://space.itpub.net/11088128/viewspace-157067</link>
								<description><![CDATA[<P>转载自:http://hi.baidu.com/odba/blog/item/105a4e06a852f37a03088178.html</P>
<P>背景：目标数据库192.168.1.172&nbsp;&nbsp; Redhat Linux AS 3.0&nbsp;&nbsp; Oracle 9.2.0.6<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 恢复目录数据库 192.168...]]></description>
								<category>blog</category>
								<author>浪漫双鱼</author>
								<pubDate>Tue, 22 Jan 2008 16:32:14 GMT</pubDate>
							</item>
							<item>
								<title>查看表空间使用情况</title>
								<link>http://space.itpub.net/11088128/viewspace-145412</link>
								<description><![CDATA[<P>select </P>
<P>t1.tablespace_name Tablespace_name,<BR>t1.Mbyte Size_Mbytes,</P>
<P>t2.Mbyte Used_Mbytes,</P>
<P>to_char((t1.Mbyte-t2.Mbyte)/t1.Mbyte*100,'09.99') Free_Percent </P>
<P>from (select tablespace_name tablespace_name,sum(b.bytes)/1024...]]></description>
								<category>blog</category>
								<author>浪漫双鱼</author>
								<pubDate>Tue, 15 Jan 2008 16:12:33 GMT</pubDate>
							</item>
							<item>
								<title>常用10个LINUX命令说明</title>
								<link>http://space.itpub.net/11088128/viewspace-138887</link>
								<description><![CDATA[<P>LS命令<BR>－作用：显示目录内容，类似DOS下的DIR<BR>－格式：LS【options】【filename】<BR>－常用参数：<BR>&nbsp; &gt;-a:all，不隐藏任何以"."字符开始的文件<BR>&nbsp; &gt;-l：使用较长的格式列出信息<BR>&nbsp; &gt;-r:按照文件名的逆序打印输出<BR>&nbsp; &gt;...]]></description>
								<category>blog</category>
								<author>浪漫双鱼</author>
								<pubDate>Sun, 13 Jan 2008 14:25:58 GMT</pubDate>
							</item>
							<item>
								<title>外部表的建立实例</title>
								<link>http://space.itpub.net/11088128/viewspace-133418</link>
								<description><![CDATA[<P>Step1：建立目录对象。要在数据库中访问 OS文件，就必须在数据库中建立指向该 OS文件的目录对象。<BR>然后通过该目录对象访问相应的 OS文件，即用目录对象存储 OS文件的保存位置。 <BR>&nbsp;&nbsp;&nbsp;&nbsp; Sql&gt;create&nbsp; directory&nbsp;&nbsp; dept_dir&n...]]></description>
								<category>blog</category>
								<author>浪漫双鱼</author>
								<pubDate>Thu, 10 Jan 2008 14:15:32 GMT</pubDate>
							</item>
							<item>
								<title>创建管理JOB</title>
								<link>http://space.itpub.net/11088128/viewspace-127561</link>
								<description><![CDATA[<P>1.创建过程：test_p</P>
<P><BR>2.创建JOB：test<BR>variable test number;<BR>begin<BR>dbms_job.submit(:test,'test_p;',sysdate,'trunc(SYSDATE)+8.5/24+1');--每早8：30执行一次<BR>commit;<BR>end;<BR>/</P>
<P>3.运行JOB：<BR>begin<BR>dbms_job.run(:test);<B...]]></description>
								<category>blog</category>
								<author>浪漫双鱼</author>
								<pubDate>Wed, 09 Jan 2008 16:43:04 GMT</pubDate>
							</item>
							<item>
								<title>我的PB程序数据库升级程序</title>
								<link>http://space.itpub.net/11088128/viewspace-119097</link>
								<description><![CDATA[<P>create or replace directory utllobdir as '/updates';<BR>create table bfile_tab (bfile_column BFILE);<BR>create table exe (blob_column BLOB);<BR>create table dll (blob_column BLOB);<BR>create table liveupdate(VER number);<BR>-------------------------...]]></description>
								<category>blog</category>
								<author>浪漫双鱼</author>
								<pubDate>Tue, 08 Jan 2008 11:33:36 GMT</pubDate>
							</item>
							<item>
								<title>oracle数据库sys用户的审计(网文摘录)</title>
								<link>http://space.itpub.net/11088128/viewspace-64875</link>
								<description><![CDATA[<DIV>(一)打开数据库关键操作日志审计开关<BR>Alter system set audit_sys_operations=true;<BR>审计日志产生在$ORACLE_HOME/rdbms/audit目录下，因该日志所占空间较大，保存时间较短，如一周。<BR>文件样本：<BR>Audit file /oracle/app/oracle/product/9.2.0.6/rdbms/au...]]></description>
								<category>blog</category>
								<author>浪漫双鱼</author>
								<pubDate>Mon, 31 Dec 2007 22:09:04 GMT</pubDate>
							</item>
							<item>
								<title>9i与10g的细粒度审计(网文摘录)</title>
								<link>http://space.itpub.net/11088128/viewspace-64873</link>
								<description><![CDATA[<P><FONT face=Verdana><STRONG><FONT size=5>9i的细粒度审计</FONT></STRONG></FONT></P>
<P><FONT face=Verdana>表的查询语句用普通触发器是检测不到的，除非开启数据库审计，但是从ORACLE9i开始，提供了一个DBMS_FGA包，可以在线对单个的表进行审计并查询审计资料，这...]]></description>
								<category>blog</category>
								<author>浪漫双鱼</author>
								<pubDate>Mon, 31 Dec 2007 21:41:44 GMT</pubDate>
							</item>
							<item>
								<title>备份与恢复(网文摘录)</title>
								<link>http://space.itpub.net/11088128/viewspace-15516</link>
								<description><![CDATA[1. 在不同的数据库使用条件（如联机与脱机、归档与非归档）下需要使用不同的备份和恢复方法。某<BR>种条件下的备份信息只能由对应方法进行还原或恢复。<BR>2. 数据库恢复的方法取决于故障的类型。一般分为 实例恢复 与 介质恢复 。<BR>3. 实例恢复：主要用于数据库实例故障...]]></description>
								<category>blog</category>
								<author>浪漫双鱼</author>
								<pubDate>Thu, 27 Dec 2007 21:59:50 GMT</pubDate>
							</item>
							<item>
								<title>Linux Crontab(网文摘录)</title>
								<link>http://space.itpub.net/11088128/viewspace-1630</link>
								<description><![CDATA[<DIV class=tit>&nbsp;</DIV>
<TABLE style="TABLE-LAYOUT: fixed">
<TBODY>
<TR>
<TD>
<P class=cnt>cron来源于希腊单词chronos（意为“时间”），是linux系统下一个自动执行指定任务的程序。例如，你想在每晚睡觉期间创建某些文件或文件夹的备份，就可以用cron来自...]]></description>
								<category>blog</category>
								<author>浪漫双鱼</author>
								<pubDate>Wed, 26 Dec 2007 15:49:37 GMT</pubDate>
							</item>
							<item>
								<title>Oracle的日志管理攻略(网文摘录)</title>
								<link>http://space.itpub.net/11088128/viewspace-1042</link>
								<description><![CDATA[<P><A class=bluekey href="http://www.yesky.com/key/4723/109723.html" target=_blank>ORACLE数据库</A>的日志文件$ORACLE_BASE/admin/orasid/bdump/alert_orasid.log记录了重作日志的转换，数据库启动和关闭，数据库结构的改变，回退段的修改，死锁，内部错误等信息. ...]]></description>
								<category>blog</category>
								<author>浪漫双鱼</author>
								<pubDate>Fri, 21 Dec 2007 11:23:52 GMT</pubDate>
							</item>
							<item>
								<title>Oracle归档模式的命令及参数(摘录自网络)</title>
								<link>http://space.itpub.net/11088128/viewspace-1039</link>
								<description><![CDATA[<P class=MsoNormal style="MARGIN: 0cm 0cm 0pt; TEXT-ALIGN: center" align=center><SPAN lang=EN-US style="FONT-SIZE: 14pt; LINE-HEIGHT: 120%; FONT-FAMILY: &#718;&#805;; mso-font-kerning: 0pt; mso-bidi-font-family: 宋体"><FONT face="Times New Roman">Oracl...]]></description>
								<category>blog</category>
								<author>浪漫双鱼</author>
								<pubDate>Fri, 21 Dec 2007 10:57:14 GMT</pubDate>
							</item>
							<item>
								<title>oralce数据库日志查看方法（整理转载自网络）</title>
								<link>http://space.itpub.net/11088128/viewspace-1038</link>
								<description><![CDATA[<P class=MsoNormal style="MARGIN: 0cm 0cm 0pt"><SPAN style="FONT-SIZE: 12pt; COLOR: black; FONT-FAMILY: 宋体; mso-font-kerning: 0pt; mso-ascii-font-family: 'Times New Roman'; mso-hansi-font-family: 'Times New Roman'">如何分析即</SPAN><SPAN lang=EN-US s...]]></description>
								<category>blog</category>
								<author>浪漫双鱼</author>
								<pubDate>Fri, 21 Dec 2007 10:55:06 GMT</pubDate>
							</item>
							<item>
								<title>我的10G数据库开启LOG</title>
								<link>http://space.itpub.net/11088128/viewspace-911</link>
								<description><![CDATA[Wed Dec 19 21:10:50 2007<BR>Starting ORACLE instance (normal)<BR>LICENSE_MAX_SESSION = 0<BR>LICENSE_SESSIONS_WARNING = 0<BR>Picked latch-free SCN scheme 2<BR>Using LOG_ARCHIVE_DEST_10 parameter default value as USE_DB_RECOVERY_FILE_DEST<BR>Autotune of ...]]></description>
								<category>blog</category>
								<author>浪漫双鱼</author>
								<pubDate>Wed, 19 Dec 2007 21:12:14 GMT</pubDate>
							</item>
							<item>
								<title>我的10G数据库关闭LOG</title>
								<link>http://space.itpub.net/11088128/viewspace-910</link>
								<description><![CDATA[Wed Dec 19 21:07:37 2007<BR>Starting background process EMN0<BR>EMN0 started with pid=32, OS id=112228<BR>Wed Dec 19 21:07:37 2007<BR>Shutting down instance: further logons disabled<BR>Wed Dec 19 21:07:37 2007<BR>Stopping background process QMNC<BR>Wed...]]></description>
								<category>blog</category>
								<author>浪漫双鱼</author>
								<pubDate>Wed, 19 Dec 2007 21:08:39 GMT</pubDate>
							</item>
							<item>
								<title>db_recovery_file_dest_size 字节使用100.00%的问题</title>
								<link>http://space.itpub.net/11088128/viewspace-909</link>
								<description><![CDATA[<P>昨天实验机上的ORACLE10G突然起不来了,提示:</P>
<P>ORA-16038: 日志 1 序列号 53 无法归档<BR>ORA-19809: 超出了恢复文件数的限制<BR>ORA-00312: 联机日志 1 线程 1: 'D:\ORACLE\PRODUCT\10.2.0\ORADATA\GYJF\REDO01.LOG'</P>
<P>用RMAN恢复后,仍然提示同样的错误,感...]]></description>
								<category>blog</category>
								<author>浪漫双鱼</author>
								<pubDate>Wed, 19 Dec 2007 20:24:03 GMT</pubDate>
							</item>
							<item>
								<title>已经学会并解决的事情</title>
								<link>http://space.itpub.net/11088128/viewspace-695</link>
								<description><![CDATA[<P>一.查看LOG日志&nbsp;&nbsp; (20071216-20071216)</P>
<P>二.RMAN备份&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; (20071216-20080124)</P>
<P>三.分解原始话单&nbsp;(涉及问题有：外部表，sql语句的高级技巧)(20071224-20071226)</P>
<P>四.LINUX定时执行任...]]></description>
								<category>blog</category>
								<author>浪漫双鱼</author>
								<pubDate>Sun, 16 Dec 2007 22:43:34 GMT</pubDate>
							</item>
							<item>
								<title>DBA学习启程</title>
								<link>http://space.itpub.net/11088128/viewspace-355</link>
								<description><![CDATA[从两年前起从事ORACLE的开发算起,现在自己对ORACLE也有了些自己的理解,但这些理解对于DBA还是不够的,在以后的日子里,我要抓紧时间,象DBA这个角色迈进!!]]></description>
								<category>blog</category>
								<author>浪漫双鱼</author>
								<pubDate>Mon, 10 Dec 2007 22:20:30 GMT</pubDate>
							</item>
							
		</channel>
	</rss>