<?xml version="1.0" encoding="gbk"?>
<rss version="2.0">
<channel>
 <title><![CDATA[中国排名网IT论坛]]></title>
 <link><![CDATA[http://it.paiming.org/bbs]]></link>
 <description><![CDATA[Latest 20 article of all forums]]></description>
 <copyright><![CDATA[Copyright(C) 中国排名网IT论坛]]></copyright>
 <generator><![CDATA[PHPWind Forums by PHPWind Studio]]></generator>
 <lastBuildDate><![CDATA[Tue, 06 Jan 2009 21:00:40 +0000]]></lastBuildDate>
  <image>
 <url><![CDATA[images/rss.gif]]></url>
 <title><![CDATA[PHPWind Board]]></title>
 <link><![CDATA[http://it.paiming.org/bbs]]></link>
 <description><![CDATA[中国排名网IT论坛]]></description>
  </image>
<item>
 <title><![CDATA[如何获取SQL Server数据库元数据的方法]]></title>
 <description><![CDATA[[size=5][b]如何获取SQL Server数据库元数据的方法[/b][/size]
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp ..]]></description>
 <link><![CDATA[http://it.paiming.org/bbs/read.php?tid=10437]]></link>
 <author><![CDATA[spider]]></author>
 <category><![CDATA[SQLServer]]></category>
 <pubdate><![CDATA[Tue, 06 Jan 2009 15:08:28 +0000]]></pubdate>
</item>
<item>
 <title><![CDATA[MS SQLSERVER中如何快速获取表的记录总数]]></title>
 <description><![CDATA[在数据库应用的设计中，我们往往会需要获取某些表的记录总数，用于判断表的记录总数是否过大，是否需要备份数据等。我们通常的做法是：select count(*) as c from tableA 。然而对于记录数巨大的表，上述做法将会非常耗时。在DELL4400 服务器上做试验，MS Sqlserver 2000数据库对于100万记录的简单数据表执行上述语句，时 ..]]></description>
 <link><![CDATA[http://it.paiming.org/bbs/read.php?tid=10436]]></link>
 <author><![CDATA[spider]]></author>
 <category><![CDATA[SQLServer]]></category>
 <pubdate><![CDATA[Tue, 06 Jan 2009 15:07:11 +0000]]></pubdate>
</item>
<item>
 <title><![CDATA[SQLSERVER中快速获海量数据的记录总数]]></title>
 <description><![CDATA[2月份 曾写过一篇sqlserver 优化海量查询的方法[url=http://blog.csdn.net/great_domino/archive/2005/02/01/275839.aspx]http://blog.csdn.net/great_domino/archive/2005/02/01/275839.aspx[/url]
　　最近有同事遇到sqlserver统计记百万条以上记录条数太慢的问题，sp经常会遇到统计大量数据问题，或许是巧合的原因，找 ..]]></description>
 <link><![CDATA[http://it.paiming.org/bbs/read.php?tid=10435]]></link>
 <author><![CDATA[spider]]></author>
 <category><![CDATA[SQLServer]]></category>
 <pubdate><![CDATA[Tue, 06 Jan 2009 15:05:47 +0000]]></pubdate>
</item>
<item>
 <title><![CDATA[请问如何知道每张表的记录条数？从哪个系统表中可以找到这个信息呢？？？]]></title>
 <description><![CDATA[select &#160; 表名=a.name,記錄數=max(b.rows) &#160; from &#160; sysobjects &#160; a &#160; ,sysindexes &#160; b &#160;&nbsp;&nbsp;&#160; 
 &#160; where &#160; a.id=b.id &#160; and &#160; a.xtype=&#39;u&#39; &#160; group &#160; by &#160; a.name &#160; ]]></description>
 <link><![CDATA[http://it.paiming.org/bbs/read.php?tid=10434]]></link>
 <author><![CDATA[spider]]></author>
 <category><![CDATA[SQLServer]]></category>
 <pubdate><![CDATA[Tue, 06 Jan 2009 15:01:40 +0000]]></pubdate>
</item>
<item>
 <title><![CDATA[ms sql server2005 系统表知多少]]></title>
 <description><![CDATA[&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;[size=5]sql server 2005系统表详细说明[/size]&#160;&#160;&#160;&#160; 
sysaltfiles&#160; 主数据库 保存数据库的文件 
syscharsets&#160; 主数据库字符集与排序顺序
sysconfigures 主数据库 配置选项
&#160;syscurconfigs 主数 ..]]></description>
 <link><![CDATA[http://it.paiming.org/bbs/read.php?tid=10433]]></link>
 <author><![CDATA[spider]]></author>
 <category><![CDATA[SQLServer]]></category>
 <pubdate><![CDATA[Tue, 06 Jan 2009 15:00:13 +0000]]></pubdate>
</item>
<item>
 <title><![CDATA[oracle中所有表记录数统计]]></title>
 <description><![CDATA[oracle中所有表记录数统计
create table A
(
USERNAME VARCHAR2(20),
TABLENAME VARCHAR2(50),
JS VARCHAR2(10)
)
create or replace procedure p_getcount
as
miCount INTEGER;
t_owner varchar2(40);
t_table varchar2(40);
BEGIN
FORc_tab IN (SELECT owner,table_name FROM dba_tables where owner not in(&#39;SYS&# ..]]></description>
 <link><![CDATA[http://it.paiming.org/bbs/read.php?tid=10432]]></link>
 <author><![CDATA[spider]]></author>
 <category><![CDATA[Oracle]]></category>
 <pubdate><![CDATA[Tue, 06 Jan 2009 14:54:04 +0000]]></pubdate>
</item>
<item>
 <title><![CDATA[一个统计Oracle中所有应用表记录数的例子]]></title>
 <description><![CDATA[通常开发人员很少关注表数据量的大小的Impact，但是设计者和DBA就需要实时监测数据的大小对系统的Impact，说到底就是对Oracle DBInstance的负荷量的估算。举个例子，我们在设计的时候需要估算出一定的数据量需要多大的Tablespace，包括Data的Tablespace，Index的Tablespace，ArchiveLog的Tablespace（这个需要一个有经验的 ..]]></description>
 <link><![CDATA[http://it.paiming.org/bbs/read.php?tid=10431]]></link>
 <author><![CDATA[spider]]></author>
 <category><![CDATA[Oracle]]></category>
 <pubdate><![CDATA[Tue, 06 Jan 2009 14:53:01 +0000]]></pubdate>
</item>
<item>
 <title><![CDATA[怎样统计数据库中所有表的记录数]]></title>
 <description><![CDATA[怎样统计数据库中所有表的记录数

各位,谁能告诉我,怎样统计ORACLE数据库中所有表的记录数.我的数据库有400多个表,但是并非都用了,我想知道所有表的记录数,从而知道哪些表没有用.

谢谢!

select &#39;ANALYZE TABLE &#39;||TABLE_NAME||&#39; compute statistics;&#39; from all_tables;
执行生成的脚本
SELECT TABLE_NA ..]]></description>
 <link><![CDATA[http://it.paiming.org/bbs/read.php?tid=10430]]></link>
 <author><![CDATA[spider]]></author>
 <category><![CDATA[Oracle]]></category>
 <pubdate><![CDATA[Tue, 06 Jan 2009 14:52:30 +0000]]></pubdate>
</item>
<item>
 <title><![CDATA[统计ORACLE当前用户下所有表中的记录数]]></title>
 <description><![CDATA[SQL&gt; show user
USER is &quot;AAA&quot;

SQL&gt; set serverout on

写一个脚本，查询当前用户下所有的表并统计记录数。

declare
v_table varchar2(60);
v_num number;
v_sum number;
begin
v_sum:=0;
for idx in (select * from user_tables order by table_name) loop
v_table:=idx.table_name;
execute immediat ..]]></description>
 <link><![CDATA[http://it.paiming.org/bbs/read.php?tid=10429]]></link>
 <author><![CDATA[spider]]></author>
 <category><![CDATA[Oracle]]></category>
 <pubdate><![CDATA[Tue, 06 Jan 2009 14:48:02 +0000]]></pubdate>
</item>
<item>
 <title><![CDATA[Oracle中统计所有的表中的记录数]]></title>
 <description><![CDATA[执行下面的角本，生成c:\mytext.sql的文件，运行c:\mytext.sql文件中的内容，可以得到当前用户下的所有表及表中的记录数
Connect [url=mailto:UserID/PSW@NETServerName]UserID/PSW@NETServerName[/url]
set feedback off
set heading off
spool c:\mytext.sql
select decode(rownum,1,&#39;&#39;,&#39;union&#39;)||&#39 ..]]></description>
 <link><![CDATA[http://it.paiming.org/bbs/read.php?tid=10428]]></link>
 <author><![CDATA[spider]]></author>
 <category><![CDATA[Oracle]]></category>
 <pubdate><![CDATA[Tue, 06 Jan 2009 14:47:05 +0000]]></pubdate>
</item>
<item>
 <title><![CDATA[精华对联]]></title>
 <description><![CDATA[[size=5][b]精华对联[/b][/size]
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb ..]]></description>
 <link><![CDATA[http://it.paiming.org/bbs/read.php?tid=10427]]></link>
 <author><![CDATA[spider]]></author>
 <category><![CDATA[诗风词韵轩]]></category>
 <pubdate><![CDATA[Tue, 06 Jan 2009 14:31:13 +0000]]></pubdate>
</item>
<item>
 <title><![CDATA[有趣的对联]]></title>
 <description><![CDATA[“悠然见南山”在《银海拾贝》开了个《征对联》的帖子，我比较喜欢，也试着对了几个下联，把它保存在此： 
&#160;&#160;&#160; [img]http://photo.hexun.com/p/2005/0817/2881/b_CB9469B48934528C.jpg[/img]
 
&#160;&#160;&#160;&#160;&#160; 南山上联：天作棋盘星作子，谁人能下？

&#160;&#160;&#160;&#160;&#160;&#16 ..]]></description>
 <link><![CDATA[http://it.paiming.org/bbs/read.php?tid=10426]]></link>
 <author><![CDATA[spider]]></author>
 <category><![CDATA[诗风词韵轩]]></category>
 <pubdate><![CDATA[Tue, 06 Jan 2009 14:29:43 +0000]]></pubdate>
</item>
<item>
 <title><![CDATA[广东寺院对联]]></title>
 <description><![CDATA[[size=5][b]广东寺院对联[/b][/size]
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp ..]]></description>
 <link><![CDATA[http://it.paiming.org/bbs/read.php?tid=10425]]></link>
 <author><![CDATA[spider]]></author>
 <category><![CDATA[诗风词韵轩]]></category>
 <pubdate><![CDATA[Tue, 06 Jan 2009 14:22:28 +0000]]></pubdate>
</item>
<item>
 <title><![CDATA[【高姓宗祠通用对联】（一）]]></title>
 <description><![CDATA[[font=verdana]三年泣血；八战铭功。——佚名撰高姓宗祠通用联[/font]
[font=verdana]上联典指春秋时卫国人高柴，字子羔，孔子的弟子，性情仁爱，对父母孝敬，为双亲执丧礼，泣血（哀痛至极，哭泣无声，如血出）三年。下联说唐代幽州人高崇文，字崇文，贞元年间随韩全义镇守长武城，治军有名。吐蕃兵侵犯宁州，他率军前去 ..]]></description>
 <link><![CDATA[http://it.paiming.org/bbs/read.php?tid=10424]]></link>
 <author><![CDATA[spider]]></author>
 <category><![CDATA[诗风词韵轩]]></category>
 <pubdate><![CDATA[Tue, 06 Jan 2009 14:22:06 +0000]]></pubdate>
</item>
<item>
 <title><![CDATA[发人深省的官署对联]]></title>
 <description><![CDATA[封建时代，许多官员往往在各级官署门口贴上自撰的对联。这类对联多有施政纲领的味道。由于撰写者的经历不同，抱负不同，处世态度不同，所撰对联内容也大异其趣。

　　明代王阳明每赴新任，都要以两块高脚牌作为行队前导，两块木牌上写就一副引人注目的对联：

　　求通民情愿闻己过

　　联语简明扼要地表现了他的官风和 ..]]></description>
 <link><![CDATA[http://it.paiming.org/bbs/read.php?tid=10423]]></link>
 <author><![CDATA[spider]]></author>
 <category><![CDATA[诗风词韵轩]]></category>
 <pubdate><![CDATA[Tue, 06 Jan 2009 14:20:30 +0000]]></pubdate>
</item>
<item>
 <title><![CDATA[中国十大“金饭碗”曝光 看看啥职业最挣钱]]></title>
 <description><![CDATA[[size=6][b]中国十大“金饭碗”曝光 看看啥职业最挣钱[/b][/size]
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;[url=http://shop.soufun.com/]http://shop.soufun.com[/url] [url=http://www.soufun.com/]房地产门户-搜房网[/url] 2009-1-6 9:19:00 [url=http://s ..]]></description>
 <link><![CDATA[http://it.paiming.org/bbs/read.php?tid=10422]]></link>
 <author><![CDATA[spider]]></author>
 <category><![CDATA[职业生涯]]></category>
 <pubdate><![CDATA[Tue, 06 Jan 2009 14:13:16 +0000]]></pubdate>
</item>
<item>
 <title><![CDATA[白领职场：十招教你搞定最大薪酬]]></title>
 <description><![CDATA[想让工资支票上的数字再大些吗？或许，这并非像你想象中那么不可企及！以下是薪酬专家教你的十招。
1.听听上司怎样说
或许你比周围的人更卖力地工作，但每年的加薪和分红奖励却仍比别人低。那是因为，比起你来你的同事更能把工作做得恰到好处又确信能得到上司的注意。切莫以为自己了解管理人的期望，也不要害怕而不敢问。 ..]]></description>
 <link><![CDATA[http://it.paiming.org/bbs/read.php?tid=10421]]></link>
 <author><![CDATA[spider]]></author>
 <category><![CDATA[职业生涯]]></category>
 <pubdate><![CDATA[Tue, 06 Jan 2009 14:11:12 +0000]]></pubdate>
</item>
<item>
 <title><![CDATA[最牛上班族黑话辞典大曝光（图）]]></title>
 <description><![CDATA[[b]工作评语[/b]
如果你在一家大公司工作，那么你很可能会定期接受人事部门的考评，得到一两句简短的评语，但你了解它们的意思吗？
[align=center][url=http://office.soufun.com/2009-1-6/2329299_2.htm][img]http://img.soufun.com/news/2009_01/06/office/1231205880506_000.jpg[/img][/url][/align]最牛上班族“黑话” ..]]></description>
 <link><![CDATA[http://it.paiming.org/bbs/read.php?tid=10420]]></link>
 <author><![CDATA[spider]]></author>
 <category><![CDATA[奇文共赏]]></category>
 <pubdate><![CDATA[Tue, 06 Jan 2009 14:10:15 +0000]]></pubdate>
</item>
<item>
 <title><![CDATA[SQLSERVER中统计所有表的记录数]]></title>
 <description><![CDATA[今天群里的一个朋友问了个问题:[color=#ff0000]如何把数据库里所有表的记录数都统计出来？[/color]
&#160;&#160; 由于以前我曾经试着写过一个存储过程,作用就是删除所有表的内容,思路是这样的:
&#160;&#160; 首先通过sysobjects表构造一个sql语句字符串&#39;DELETE 表名&#39;,其中表名就是sysobjects中的name列,把这些DEL ..]]></description>
 <link><![CDATA[http://it.paiming.org/bbs/read.php?tid=10419]]></link>
 <author><![CDATA[spider]]></author>
 <category><![CDATA[SQLServer]]></category>
 <pubdate><![CDATA[Tue, 06 Jan 2009 10:28:02 +0000]]></pubdate>
</item>
<item>
 <title><![CDATA[SQLSERVER中统计所有表的记录数]]></title>
 <description><![CDATA[<br />                                 今天群里的一个朋友问了个问题:<font color="#ff0000">如何把数据库里所有表的记录数都统计出来？</font><br />   由于以前我曾经试着写过一个存储过程,作用就是删除所有表的内容,思路是这样的:   首先通过sysobjects表构造一个sql语句字符串'Delete 表名',其中表名就是sysobject ..]]></description>
 <link><![CDATA[http://it.paiming.org/bbs/read.php?tid=10418]]></link>
 <author><![CDATA[spider]]></author>
 <category><![CDATA[SQLServer]]></category>
 <pubdate><![CDATA[Tue, 06 Jan 2009 10:26:50 +0000]]></pubdate>
</item>
</channel></rss>