<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: AUL Sybase数据恢复工具</title>
	<atom:link href="http://www.anysql.net/aulmydul/qq_by_mobile_phone.html/feed" rel="self" type="application/rss+xml" />
	<link>http://www.anysql.net/aulmydul/qq_by_mobile_phone.html</link>
	<description>Oracle DBA,MySQL DBA, 数据恢复, 数据迁移, 报表软件, 性能优化, 系统监控</description>
	<lastBuildDate>Thu, 11 Mar 2010 09:00:12 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: 方风</title>
		<link>http://www.anysql.net/aulmydul/qq_by_mobile_phone.html/comment-page-1#comment-1643</link>
		<dc:creator>方风</dc:creator>
		<pubDate>Wed, 23 Apr 2008 17:54:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.anysql.net/wordpress/uncategorized/aul-sybase%e6%95%b0%e6%8d%ae%e6%81%a2%e5%a4%8d%e5%b7%a5%e5%85%b7.html#comment-1643</guid>
		<description>是这个牛人吗？
&lt;a href=&quot;http://hobbylu.blogcn.com/diary,9141872.shtml&quot; rel=&quot;nofollow&quot;&gt;http://hobbylu.blogcn.com/diary,9141872.shtml&lt;/a&gt;
你们都是牛人，我只能关注＋崇拜了。
</description>
		<content:encoded><![CDATA[<p>是这个牛人吗？<br />
<a href="http://hobbylu.blogcn.com/diary,9141872.shtml" rel="nofollow">http://hobbylu.blogcn.com/diary,9141872.shtml</a><br />
你们都是牛人，我只能关注＋崇拜了。</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gabri</title>
		<link>http://www.anysql.net/aulmydul/qq_by_mobile_phone.html/comment-page-1#comment-1642</link>
		<dc:creator>Gabri</dc:creator>
		<pubDate>Sat, 19 Apr 2008 21:54:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.anysql.net/wordpress/uncategorized/aul-sybase%e6%95%b0%e6%8d%ae%e6%81%a2%e5%a4%8d%e5%b7%a5%e5%85%b7.html#comment-1642</guid>
		<description>关注。。。
</description>
		<content:encoded><![CDATA[<p>关注。。。</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: anysql</title>
		<link>http://www.anysql.net/aulmydul/qq_by_mobile_phone.html/comment-page-1#comment-1641</link>
		<dc:creator>anysql</dc:creator>
		<pubDate>Thu, 17 Apr 2008 02:01:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.anysql.net/wordpress/uncategorized/aul-sybase%e6%95%b0%e6%8d%ae%e6%81%a2%e5%a4%8d%e5%b7%a5%e5%85%b7.html#comment-1641</guid>
		<description>好的，会做的。虽不一定是我自已做的，但肯定会有AUL for SQLServer。
</description>
		<content:encoded><![CDATA[<p>好的，会做的。虽不一定是我自已做的，但肯定会有AUL for SQLServer。</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: carny</title>
		<link>http://www.anysql.net/aulmydul/qq_by_mobile_phone.html/comment-page-1#comment-1640</link>
		<dc:creator>carny</dc:creator>
		<pubDate>Thu, 17 Apr 2008 00:58:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.anysql.net/wordpress/uncategorized/aul-sybase%e6%95%b0%e6%8d%ae%e6%81%a2%e5%a4%8d%e5%b7%a5%e5%85%b7.html#comment-1640</guid>
		<description>你應也可做一個AUL FOR MS SQL Server , 因為MS SQL Server是從SYBASE舊版,改良出來的,每個page(block)和SYBASE很像,  DUMP DATABLOCK(PAGE) 語法參考如下:
create table aaa (f1 char(2));
insert into aaa (f1) values(&#039;cc&#039;);
DBCC TRACEON (3604)
DECLARE @dbid int, @objectid int
SELECT @dbid = DB_ID(&#039;pubs&#039;)
SELECT @objectid = object_id(&#039;aaa&#039;)
DBCC TAB (@dbid,@objectid)
645577338
645577338
DBCC TRACEON (3604)
DECLARE @dbid int, @objectid int
SELECT @dbid = DB_ID(&#039;pubs&#039;)
SELECT @objectid = object_id(&#039;aaa&#039;)
DBCC prtipage(@dbid,@objectid,0,0)
DBCC TRACEON (3604)
DBCC PAGE (pubs,1,15,1)
DBCC PAGE (pubs,1,15,2)
DBCC TRACEON (3604)
DBCC DES(pubs,aaa)
DBCC IND(pubs,aaa,0)
DBCC dbtable(pubs)
USE pubs
GO
DBCC TRACEON (3604)
GO
DECLARE @pgid int
SELECT @pgid  FROM sysindexes WHERE id = object_id(&#039;aaa&#039;)
SELECT *  FROM sysindexes WHERE id = object_id(&#039;aaa&#039;)
DBCC PAGE (pubs,15 , 1)
GO
</description>
		<content:encoded><![CDATA[<p>你應也可做一個AUL FOR MS SQL Server , 因為MS SQL Server是從SYBASE舊版,改良出來的,每個page(block)和SYBASE很像,  DUMP DATABLOCK(PAGE) 語法參考如下:<br />
create table aaa (f1 char(2));<br />
insert into aaa (f1) values(&#8216;cc&#8217;);<br />
DBCC TRACEON (3604)<br />
DECLARE @dbid int, @objectid int<br />
SELECT @dbid = DB_ID(&#8216;pubs&#8217;)<br />
SELECT @objectid = object_id(&#8216;aaa&#8217;)<br />
DBCC TAB (@dbid,@objectid)<br />
645577338<br />
645577338<br />
DBCC TRACEON (3604)<br />
DECLARE @dbid int, @objectid int<br />
SELECT @dbid = DB_ID(&#8216;pubs&#8217;)<br />
SELECT @objectid = object_id(&#8216;aaa&#8217;)<br />
DBCC prtipage(@dbid,@objectid,0,0)<br />
DBCC TRACEON (3604)<br />
DBCC PAGE (pubs,1,15,1)<br />
DBCC PAGE (pubs,1,15,2)<br />
DBCC TRACEON (3604)<br />
DBCC DES(pubs,aaa)<br />
DBCC IND(pubs,aaa,0)<br />
DBCC dbtable(pubs)<br />
USE pubs<br />
GO<br />
DBCC TRACEON (3604)<br />
GO<br />
DECLARE @pgid int<br />
SELECT @pgid  FROM sysindexes WHERE id = object_id(&#8216;aaa&#8217;)<br />
SELECT *  FROM sysindexes WHERE id = object_id(&#8216;aaa&#8217;)<br />
DBCC PAGE (pubs,15 , 1)<br />
GO</p>
]]></content:encoded>
	</item>
</channel>
</rss>
