<?xml version="1.0" encoding="gb2312"?>
<?xml-stylesheet href="http://blog.itpub.net//styles/rss.css" type="text/css"?>

<rdf:RDF 
  xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" 
  xmlns="http://my.netscape.com/rdf/simple/0.9/"
>
    
     <channel>
  <title>linux</title>
  <link>http://lfree.itpub.net</link>
  <description></description>
 </channel>
    <item>
<title>ora-01775 问题与expdp</title>
<description>ora-01775 问题与expdp0.expdp XXX/XXX DIRECTORY=dpdata dumpfile=xxx_expdp.dmpExport: Release 10.2.0.2.0 - 64bit Production on Tuesday, 15 July, 2008 10:09:41Copyright (c) 2003, 2005, Oracle. All rights reserved.Connected to: Oracle Database 10g Enterprise Edition Release 10.2.0.2.0 - 64bit ProductionWith the Partitioning, Real Application Clusters, OLAP and Data Mining optionsORA-39001: invalid argument valueORA-01775: looping chain of synonyms1.问题提出：CREATE TABLE SCOTT.TESTA( A NUMBER(4), B ...</description>
<link>http://lfree.itpub.net/post/4950/466545</link>
<pubDate>Tue,15 07 2008 11:36:10</pubDate>
</item>
<item>
<title>关于gcs_resources:</title>
<description>http://www.itpub.net/thread-1018049-1-1.htmlApplies to: Oracle Server - Enterprise Edition - Version: 9.2.0.1 to 10.2.0.1Information in this document applies to any platform.GoalQuestion 1: What is gcs_resources ?Question 2: What happens if it exceeds its limit?Question 3: How do we adjust the limit?SolutionAnswer 1: gcs_resources is global cache resources which are essentially structures we use to protect cache structures (buffers). Each instance &quot;masters&quot; cache resources and the implementation...</description>
<link>http://lfree.itpub.net/post/4950/466066</link>
<pubDate>Tue,08 07 2008 15:19:36</pubDate>
</item>
<item>
<title>toad 中使用logminer的问题</title>
<description>前几天使用logminer查询一些日志来恢复一些数据，发现在toad中使用logminer存在一个小问题，估计在命令行使用也存在这个问题，就是sql_redo的内容中，有关日期的变成了TO_DATE ('16-JUN-08', 'DD-MON-RR')。丢掉了时分秒的信息，修改环境变量NLS_DATE_FORMAT=YYYY-MM-DD HH24:MI:SS后正常。</description>
<link>http://lfree.itpub.net/post/4950/464612</link>
<pubDate>Thu,19 06 2008 08:45:46</pubDate>
</item>
<item>
<title>不让oracle分析表</title>
<description>特殊需要为了稳定执行计划，需要系统不要分析表，执行如下：锁定统计信息：exec DBMS_STATS.lock_table_stats(ownname=&gt;'XXX',TABNAME=&gt;'YYY')取消锁定统计信息：exec DBMS_STATS.unlock_table_stats(ownname=&gt;'XXX',TABNAME=&gt;'YYY')查询视图可以知道查询锁定了那些表：SELECT *FROM dba_tab_statisticsWHERE stattype_locked = 'ALL' AND owner NOT IN ('SYSTEM', 'SYS', 'SYSMAN')</description>
<link>http://lfree.itpub.net/post/4950/463099</link>
<pubDate>Thu,29 05 2008 16:58:38</pubDate>
</item>
<item>
<title>饭后吃冷饮，消化不良</title>
<description>暑热天，冰棒、雪糕、冰淇淋一跃成为人们的最爱。尤其是饭后，来一口香香甜甜的冰淇淋，不仅口中的油腻全除，心里更是舒坦很多。可是，这样虽舒服了人，却苦了胃。　　有研究显示，快速吃一大杯冰淇淋后，胃内的温度会由37摄氏度快速下降至20摄氏度以下，导致胃部收缩，减少胃酸分泌，蠕动的消化工作也暂时“罢工”。约需30分钟甚至更久待胃部回复温暖状态之后，消化功能才会渐渐恢复正常。这样一来，很容易造成积食、腹胀，次数多了便会引发消化不良。同时，大量冷饮食品会稀释胃液，降低胃酸的杀菌能力，一些肠道致病菌就容易通过胃进入...</description>
<link>http://lfree.itpub.net/post/4950/463063</link>
<pubDate>Thu,29 05 2008 08:24:23</pubDate>
</item>
<item>
<title>zt:Linux性能监控之Memory篇</title>
<description>http://linux.chinaunix.net/techdoc/net/2008/05/21/1004838.shtml首先说说虚拟内存和物理内存：虚拟内存就是采用硬盘来对物理内存进行扩展，将暂时不用的内存页写到硬盘上而腾出更多的物理内存让有需要的进程来用。当这些内存页需要用的时候在从硬盘读回内存。这一切对于用户来说是透明的。通常在Linux系统说，虚拟内存就是swap分区。在X86系统上虚拟内存被分为大小为4K的页。每一个进程启动时都会向系统申请虚拟内存（VSZ），内核同意或者拒就请求。当程序真正用到内存时，系统就它映射到物理内存。RSS表示程序所占的物理内存的大小。用...</description>
<link>http://lfree.itpub.net/post/4950/462887</link>
<pubDate>Tue,27 05 2008 08:13:10</pubDate>
</item>
<item>
<title>zt:用 OProfile 彻底了解性能 </title>
<description>http://www.chinalinuxpub.com/read.php?wid=2495由于在硬件和软件之间有一些意料之外的交互，分析 Linux 操作系统和应用程序的代码可能是很困难的，但评测（ profiling ）办法可以识别出系统的性能问题。本文介绍的是 Oprofile，这是一种用于 Linux 的评测工具，将包含在即将发布的稳定内核中。评测 是表示不同性能特性和特征的数据的形式化总结或分析，它通常以图形和表的形式的出现。评测表提供为特定的处理器事件收集的采样的百分数或数量，比如高速缓存线路故障的数量、传输后备缓存( TLB )故障的数量，等等。Oprofile 是用于 Linux ...</description>
<link>http://lfree.itpub.net/post/4950/461822</link>
<pubDate>Tue,13 05 2008 08:34:16</pubDate>
</item>
<item>
<title>ORA-00257: archiver error. Connect internal only, until freed.</title>
<description>今天一上班，登陆测试库，出现ORA-00257: archiver error. Connect internal only, until freed.看alert.log 文件，出现如下：Sun May 4 11:53:29 2008ARCH: Archival stopped, error occurred. Will continue retryingSun May 4 11:53:29 2008ORACLE Instance torcl - Archival ErrorSun May 4 11:53:29 2008ORA-16038: log 1 sequence# 2455 cannot be archivedORA-19809: limit exceeded for recovery filesORA-00312: online log 1 thread 1: '/u01/app/oracle/oradata/torcl/redo01.log'Sun May 4 11:53:29 2008Errors in file /u01/...</description>
<link>http://lfree.itpub.net/post/4950/461102</link>
<pubDate>Sun,04 05 2008 14:37:12</pubDate>
</item>
<item>
<title>zt：Oracle10gR2中调整user commit的实用方法 </title>
<description>在以前的的Oracle版本中，假如用户commit，后台的LGWR进程必将会把内存中的redo数据写入到online redo log的文件里，之后又会将控制权返回给用户，需要注意的是，其实这段很可能并不是磁盘操作，而是写入到磁盘缓冲中的。假如应用中有过于频繁的用户commit，那么很可能会产生明显的log file sync的等待事件。而Oracle10g中的新功能－Asynchronous Commit可能是解决这个问题的一个最新方法。Oracle10g中，我们可以设置commit的行为来做到在commit之后，控制权立刻返回给用户，而Oracle会在恰当的时候来唤醒LGWR，批量更新online redo log文...</description>
<link>http://lfree.itpub.net/post/4950/461067</link>
<pubDate>Sun,04 05 2008 08:26:20</pubDate>
</item>
<item>
<title>samba不允许一个用户使用一个以上用户名与一个服务器或共享资源的多重连接</title>
<description>最近在配置samba，windows连接的时候出现如下问题：samba不允许一个用户使用一个以上用户名与一个服务器或共享资源的多重连接,google查询后，找到解决方法：如下：net use * /del /y实际上我估计我自己重新启动windows就OK了。因为在配置的过程中改来改去。加上linux中我使用selinux安全机制，引入了许多麻烦。http://blog.chinaunix.net/u/19637/showart_491257.html事实上这个不是samba的限制。是Windows的限制。始终要用public＝yes的话，上面的方法都不能有效解决，因为：在打开存在public＝yes的samba服务器时，如果首先点击了有publ...</description>
<link>http://lfree.itpub.net/post/4950/460818</link>
<pubDate>Tue,29 04 2008 15:37:51</pubDate>
</item>
 </rdf:RDF>


