<?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/"
	>

<channel>
	<title>Sybase数据库技术，数据库恢复专家 &#187; 非常规恢复</title>
	<atom:link href="http://www.dbainfo.net/tag/%e9%9d%9e%e5%b8%b8%e8%a7%84%e6%81%a2%e5%a4%8d/feed" rel="self" type="application/rss+xml" />
	<link>https://www.dbainfo.net</link>
	<description>提供Sybase ASE及Sybase SQL Anywhere数据库修复服务，电话：13811580958(微信)，QQ：289965371！We have many years of experience in recovering data from damanged Sybase devices. Contact us by Phone: +86 13811580958 Wechat: 13811580958 Email: 289965371@qq.com</description>
	<lastBuildDate>Sat, 14 Jun 2025 16:28:02 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>master数据库配置区域(configuration area)损坏的一种修复方法</title>
		<link>https://www.dbainfo.net/one-way-to-recover-master-configuration-area.htm</link>
		<comments>https://www.dbainfo.net/one-way-to-recover-master-configuration-area.htm#comments</comments>
		<pubDate>Thu, 15 Jan 2015 17:03:02 +0000</pubDate>
		<dc:creator>dbainfo</dc:creator>
				<category><![CDATA[Sybase ASE]]></category>
		<category><![CDATA[ASE]]></category>
		<category><![CDATA[ASE V15.0.3]]></category>
		<category><![CDATA[corrupt]]></category>
		<category><![CDATA[非常规恢复]]></category>

		<guid isPermaLink="false">http://www.dbainfo.net/?p=2731</guid>
		<description><![CDATA[本文提供master配置区域损坏的一种修复方法！ Sybase ASE master数据库的前2048字节存储着Sybase数据库服务器的configuration area（配置区域）。如果configuration area corrupt，那么Sybase服务器无法启动。 造成configuration area corrupt的原因一般为硬件故障。通过下面的案例分享configuration area corrupt的一种恢复方法。 背景： 版本：ASE 15.0.3 ESD#3 在通过临时设置参数upgrade version为492来重置sa口令为空时，忘记将upgrade version改回原值 (参考：将Sybase ASE登录sa的密码置为空NULL的方法)。之后重启Sybase服务器时报错： Pre 10.0 database cannot work with this version of the server. Please upgrade the databases to 10.0 or above release and then try to start with this version of the server. Shutting down ***. [...]]]></description>
			<content:encoded><![CDATA[<p>本文提供master配置区域损坏的一种修复方法！</p>
<p>Sybase ASE master数据库的前2048字节存储着Sybase数据库服务器的configuration area（配置区域）。如果configuration area corrupt，那么Sybase服务器无法启动。</p>
<p>造成configuration area corrupt的原因一般为硬件故障。通过下面的案例分享configuration area corrupt的一种恢复方法。</p>
<p><strong>背景：</strong></p>
<p>版本：ASE 15.0.3 ESD#3</p>
<p>在通过临时设置参数upgrade version为492来重置sa口令为空时，忘记将upgrade version改回原值 (参考：<a href="https://www.dbainfo.net/sybase-set-sa-password-to-null.htm" target="_blank">将Sybase ASE登录sa的密码置为空NULL的方法</a>)。之后重启Sybase服务器时报错：</p>
<p>Pre 10.0 database cannot work with this version of the server. Please upgrade the databases to 10.0 or above release and then try to start with this version of the server. Shutting down ***.</p>
<p>ASE配置文件(*.cfg)中大多数情况下不存在参数：upgrade version。在cfg中添加upgrade version=15000后，启动时仍然报上面的master数据库版本低于10.0的错误。</p>
<p>通过比较多个版本的configuration area，发现master数据库的第1805和第1806字节表示upgrade version，15000的十六进制形式为：0x3A98，则将第1805字节改为98，第1806字节改为3A（此处master为linux平台上的数据库）。改为之后启动报错：</p>
<p>The configuration area in device &#39;/home/sybase/data/master.dat&#39; appears to be corrupt. The server cannot continue and will shut down.</p>
<p>看来仅仅修改2个字节的内容无法验证通过，那么<span style="color:#f00;">通过替换master数据库头部2048字节呢？ 我测试是可行的！<span id="more-2731"></span></span></p>
<p><strong>步骤：<br />
	</strong></p>
<p>1、使用相同版本的dataserver(ASE 15.0.3 ESD#3) 创建一个新的master库</p>
<p>dataserver -d /home/sybase/data/new.master.dat -b 51200 -z 4k</p>
<p>页面大小要与源环境相同，master设备大小不必与源环境相同</p>
<p>2、将新master库的configuration area拷贝到文件config_block.out</p>
<p>dd if=new.master.dat&nbsp; of=config_block.out bs=2048 count=1</p>
<p>3、覆盖源环境的master设备的前2048字节内容</p>
<p>dd if=config_block.out&nbsp; of=master.dat bs=2048 count=1 conv=notrunc</p>
<p>一定要加conv=notrunc，这样不会截断master.dat第2048字节后的内容。</p>
<p>4、使用修改后的master.dat成功启动</p>
<p>个人感觉，如果启动Sybase ASE服务器时仅仅报错：The configuration area in device &#39;/home/sybase/data/master.dat&#39; appears to be corrupt. The server cannot continue and will shut down.而没有其它信息，那么使用替换configuration area的方法可行性比较高。</p>
<p>如果在报The configuration area in device &#39;/home/sybase/data/master.dat&#39; appears to be corrupt. The server cannot continue and will shut down.之前还有其他信息，比如：</p>
<p>os_create_region: can&#39;t allocate 37076992 bytes<br />
	kbcreate: couldn&#39;t create kernel region.<br />
	kistartup: could not create shared memory</p>
<p>可能的原因是：操作系统共享内存配置值太低，尤其在Linux平台上。</p>
<p>Linux平台上增加共享内存方法：编辑/etc/sysctl.conf，修改kernel.shmmax值（字节为单位），sysctl -p生效。或者临时设定/proc/sys/kernel/shmmax。</p>
<div style="clear: both; margin: 10px 0pt; border: 1px dashed rgb(153, 153, 153); font-size: 12px; padding: 5px 10px;">
<li>本文链接地址：<a href="https://www.dbainfo.net/one-way-to-recover-master-configuration-area.htm">https://www.dbainfo.net/one-way-to-recover-master-configuration-area.htm</a>；</li>
<li>本文为dbainfo个人原创，请在尊重作者劳动成果的前提下进行转载；</li>
<li>转载务必注明原始出处 : <a href="https://www.dbainfo.net/">Sybase数据库技术，数据库恢复专家</a>；</li>
<li>对《<a href="https://www.dbainfo.net/one-way-to-recover-master-configuration-area.htm">master数据库配置区域(configuration area)损坏的一种修复方法</a>》有何疑问或见解，请在本文下方发表；</li>
<li>对网站还有其他问题或建议，请提交在<a href="https://www.dbainfo.net/messages" target="_blank">留言板</a>，谢谢！</li>
</div>
<h2  class="related_post_title">相关文章</h2><ul class="related_post"><li>2013-11-11 -- <a href="https://www.dbainfo.net/ase-15-0-3-for-windows-installation5.htm" title="Sybase ASE 15.0.3 for windows平台安装文档 – 5、安装后的配置工作">Sybase ASE 15.0.3 for windows平台安装文档 – 5、安装后的配置工作</a> (1)</li><li>2013-11-11 -- <a href="https://www.dbainfo.net/ase-15-0-3-for-windows-installation4.htm" title="Sybase ASE 15.0.3 for windows平台安装文档 – 4、安装Sybase数据库服务">Sybase ASE 15.0.3 for windows平台安装文档 – 4、安装Sybase数据库服务</a> (0)</li><li>2013-11-11 -- <a href="https://www.dbainfo.net/ase-15-0-3-for-windows-installation3.htm" title="Sybase ASE 15.0.3 for windows平台安装文档 – 3、升级到 Sybase 15.0.3 ESD #3">Sybase ASE 15.0.3 for windows平台安装文档 – 3、升级到 Sybase 15.0.3 ESD #3</a> (0)</li><li>2013-11-11 -- <a href="https://www.dbainfo.net/ase-15-0-3-for-windows-installation2.htm" title="Sybase ASE 15.0.3 for windows平台安装文档 – 2、安装Sybase ASE程序">Sybase ASE 15.0.3 for windows平台安装文档 – 2、安装Sybase ASE程序</a> (0)</li><li>2013-11-11 -- <a href="https://www.dbainfo.net/ase-15-0-3-for-windows-installation1.htm" title="Sybase ASE 15.0.3 for windows平台安装文档 – 1、安装前的准备工作">Sybase ASE 15.0.3 for windows平台安装文档 – 1、安装前的准备工作</a> (1)</li><li>2013-10-15 -- <a href="https://www.dbainfo.net/ase-xml-introduction.htm" title="ASE中xml服务使用方法简介">ASE中xml服务使用方法简介</a> (0)</li><li>2013-09-16 -- <a href="https://www.dbainfo.net/select-random-rows-from-table.htm" title="ASE从表中随机选择数据的三种方法">ASE从表中随机选择数据的三种方法</a> (0)</li><li>2013-09-08 -- <a href="https://www.dbainfo.net/get-current-running-sql.htm" title="查看ASE v15正在执行的SQL语句内容">查看ASE v15正在执行的SQL语句内容</a> (0)</li><li>2013-06-02 -- <a href="https://www.dbainfo.net/recovery-tools" title="Sybase数据库恢复工具">Sybase数据库恢复工具</a> (0)</li><li>2013-06-02 -- <a href="https://www.dbainfo.net/2120.htm" title=""></a> (0)</li></ul>]]></content:encoded>
			<wfw:commentRss>https://www.dbainfo.net/one-way-to-recover-master-configuration-area.htm/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Sybase数据库恢复工具</title>
		<link>https://www.dbainfo.net/recovery-tools</link>
		<comments>https://www.dbainfo.net/recovery-tools#comments</comments>
		<pubDate>Sun, 02 Jun 2013 03:30:39 +0000</pubDate>
		<dc:creator>dbainfo</dc:creator>
				<category><![CDATA[ASA]]></category>
		<category><![CDATA[ASE]]></category>
		<category><![CDATA[分析日志内容]]></category>
		<category><![CDATA[恢复]]></category>
		<category><![CDATA[物理存储结构]]></category>
		<category><![CDATA[误操作]]></category>
		<category><![CDATA[读取设备内容]]></category>
		<category><![CDATA[非常规恢复]]></category>

		<guid isPermaLink="false">http://www.dbainfo.net</guid>
		<description><![CDATA[window.open("https://www.dbainfo.net/tag/recovery-tools","_self"); 试用方法： SQL ASE非常规恢复工具 SQL Anywhere非常规恢复工具：ReadASADB/p&#62; 如果没有跳转，请直接访问该页面：Sybase ASE&#38;ASA非常规恢复工具 本文链接地址：https://www.dbainfo.net/recovery-tools； 本文为dbainfo个人原创，请在尊重作者劳动成果的前提下进行转载； 转载务必注明原始出处 : Sybase数据库技术，数据库恢复专家； 对《Sybase数据库恢复工具》有何疑问或见解，请在本文下方发表； 对网站还有其他问题或建议，请提交在留言板，谢谢！ 相关文章2013-06-02 -- (0)2019-04-12 -- Sybase ASE及SQL Anywhere数据库修复专家 (0)2012-06-22 -- Sybase SQL Anywhere(ASA)数据库非常规恢复工具 (0)2012-06-11 -- 研发成功了从Sybase SQL Anywhere的DB文件上恢复数据的工具 (3)2009-11-18 -- Sybase Adaptive Server Enterprise(ASE)数据库恢复工具 (2)2019-04-11 -- SQL Server 数据库修复专家SQLRescue (0)2010-02-25 -- MSSQLSERVER利用日志恢复drop table的表数据[转] (0)2010-02-23 -- 成功恢复drop table的表内数据 (3)2015-01-16 -- master数据库配置区域(configuration area)损坏的一种修复方法 [...]]]></description>
			<content:encoded><![CDATA[<p><script language="javascript">
	window.open("https://www.dbainfo.net/tag/recovery-tools","_self");	
</script></p>
<p><strong>试用方法：<br />
	</strong></p>
<p><a href="https://www.dbainfo.net/introduce-sql-anywhere-recovery-tool-readasadb.htm">SQL ASE非常规恢复工具</a></p>
<p><a href="https://www.dbainfo.net/sybase-ase-recovery-tool.htm">SQL Anywhere非常规恢复工具：ReadASADB</a>/p&gt;</p>
<p>如果没有跳转，请直接访问该页面：<a href="https://www.dbainfo.net/tag/recovery-tools">Sybase ASE&amp;ASA非常规恢复工具</a></p>
<div style="clear: both; margin: 10px 0pt; border: 1px dashed rgb(153, 153, 153); font-size: 12px; padding: 5px 10px;">
<li>本文链接地址：<a href="https://www.dbainfo.net/recovery-tools">https://www.dbainfo.net/recovery-tools</a>；</li>
<li>本文为dbainfo个人原创，请在尊重作者劳动成果的前提下进行转载；</li>
<li>转载务必注明原始出处 : <a href="https://www.dbainfo.net/">Sybase数据库技术，数据库恢复专家</a>；</li>
<li>对《<a href="https://www.dbainfo.net/recovery-tools">Sybase数据库恢复工具</a>》有何疑问或见解，请在本文下方发表；</li>
<li>对网站还有其他问题或建议，请提交在<a href="https://www.dbainfo.net/messages" target="_blank">留言板</a>，谢谢！</li>
</div>
<h2  class="related_post_title">相关文章</h2><ul class="related_post"><li>2013-06-02 -- <a href="https://www.dbainfo.net/2120.htm" title=""></a> (0)</li><li>2019-04-12 -- <a href="https://www.dbainfo.net/sybase-ase-asa-recovery-service.htm" title="Sybase ASE及SQL Anywhere数据库修复专家">Sybase ASE及SQL Anywhere数据库修复专家</a> (0)</li><li>2012-06-22 -- <a href="https://www.dbainfo.net/introduce-sql-anywhere-recovery-tool-readasadb.htm" title="Sybase SQL Anywhere(ASA)数据库非常规恢复工具">Sybase SQL Anywhere(ASA)数据库非常规恢复工具</a> (0)</li><li>2012-06-11 -- <a href="https://www.dbainfo.net/i-have-the-tool-can-recover-from-asa-db-file.htm" title="研发成功了从Sybase SQL Anywhere的DB文件上恢复数据的工具">研发成功了从Sybase SQL Anywhere的DB文件上恢复数据的工具</a> (3)</li><li>2009-11-18 -- <a href="https://www.dbainfo.net/sybase-ase-recovery-tool.htm" title="Sybase Adaptive Server Enterprise(ASE)数据库恢复工具">Sybase Adaptive Server Enterprise(ASE)数据库恢复工具</a> (2)</li><li>2019-04-11 -- <a href="https://www.dbainfo.net/sql-server-recovery-service.htm" title="SQL Server 数据库修复专家SQLRescue">SQL Server 数据库修复专家SQLRescue</a> (0)</li><li>2010-02-25 -- <a href="https://www.dbainfo.net/mssqlserver-flashback-to-before-drop-table-by-logs.htm" title="MSSQLSERVER利用日志恢复drop table的表数据[转]">MSSQLSERVER利用日志恢复drop table的表数据[转]</a> (0)</li><li>2010-02-23 -- <a href="https://www.dbainfo.net/sybase-ase-flashback-table-to-before-drop-table.htm" title="成功恢复drop table的表内数据">成功恢复drop table的表内数据</a> (3)</li><li>2015-01-16 -- <a href="https://www.dbainfo.net/one-way-to-recover-master-configuration-area.htm" title="master数据库配置区域(configuration area)损坏的一种修复方法">master数据库配置区域(configuration area)损坏的一种修复方法</a> (1)</li><li>2012-04-11 -- <a href="https://www.dbainfo.net/ase-alter-table-modify-column-default-value.htm" title="ASE修改列的默认值属性">ASE修改列的默认值属性</a> (0)</li></ul>]]></content:encoded>
			<wfw:commentRss>https://www.dbainfo.net/recovery-tools/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sybase SQL Anywhere(ASA)数据库非常规恢复工具</title>
		<link>https://www.dbainfo.net/introduce-sql-anywhere-recovery-tool-readasadb.htm</link>
		<comments>https://www.dbainfo.net/introduce-sql-anywhere-recovery-tool-readasadb.htm#comments</comments>
		<pubDate>Fri, 22 Jun 2012 14:05:31 +0000</pubDate>
		<dc:creator>dbainfo</dc:creator>
				<category><![CDATA[DBA's Career]]></category>
		<category><![CDATA[Sybase ASA]]></category>
		<category><![CDATA[ASA]]></category>
		<category><![CDATA[ReadASADB]]></category>
		<category><![CDATA[recovery tools]]></category>
		<category><![CDATA[SQL Anywhere]]></category>
		<category><![CDATA[sybase]]></category>
		<category><![CDATA[恢复]]></category>
		<category><![CDATA[物理存储结构]]></category>
		<category><![CDATA[读取设备内容]]></category>
		<category><![CDATA[非常规恢复]]></category>

		<guid isPermaLink="false">http://www.dbainfo.net/?p=2072</guid>
		<description><![CDATA[专注于Sybase Adaptive Server Enterprise(ASE)以及 Sybase SQL Anywhere(ASA)数据库文件的恢复。 联系手机：sybase="138";ase="1158";recovery="0958";document.write(sybase+ase+recovery);（微信），QQ： sybase="289";ASA="965";recovery="371";document.write(sybase+ASA+recovery);！ 郑重承诺，修不好不收费。客户验证数据的正确性后，再付款。 Sybase SQL Anywhere(ASA)数据库非常规恢复工具 ReadASADB---一个不依赖数据库管理系统、直接从db文件上提取数据的业内领先的恢复工具！ 一、SQL Anywhere、UltraLite介绍 SQL Anywhere&#160; 一个免维护、易管理的移动数据库。 SQL Anywhere 提供了企业级的功能，包括完全的事务处理、无与伦比的可靠性和功能，包括参照完整性、存储过程、触发器、行级锁、自动的任务安排和自动恢复等功能 易于使用，易于管理 ，降低最终用户的日常管理费用！ 多平台支持 资源效率高 配套的定时数据同步工具Mobilink UltraLite 是一种用于小型、移动和嵌入式设备的、具有同步功能的关系数据库 稳健的数据管理 强大的同步功能 直接简明的开发 多平台可用性 您可以开发和部署用于 Windows CE、 Palm OS 和基于 Java 的设备的 UltraLite 数据库应用程序！ 二、ReadASADB功能 能够从损坏的SQL Anywhere数据文件(.db)和UltraLite数据文件(.udb)上提取数据的非常规恢复工具 适用于所有的SQL Anywhere版本&#160;&#160;&#160; 包括：5.x,6.x,7.x,8.x,9.x,10.x,11.x,12.x,16.x 适用于所有的UltraLite版本 能够恢复出来表结构和数据 能够恢复自定义数据类型 能够恢复存储过程等对象的语法 能够导出到目标数据库 能够导出到SQL文件并生成导入脚本 [...]]]></description>
			<content:encoded><![CDATA[<p><span style="font-size:16px;">专注于Sybase Adaptive Server Enterprise(ASE)以及 Sybase SQL Anywhere(ASA)数据库文件的恢复。</span></p>
<p><span style="font-size:16px;">联系手机：<SCRIPT language=JavaScript>sybase="138";ase="1158";recovery="0958";document.write(sybase+ase+recovery);</SCRIPT>（微信），QQ： <SCRIPT language=JavaScript>sybase="289";ASA="965";recovery="371";document.write(sybase+ASA+recovery);</SCRIPT>！<br />
	<strong><span style="color:#f00;">郑重承诺，修不好不收费。客户验证数据的正确性后，再付款。</span></strong><br />
	</span></p>
<p style="text-align: center;"><strong><span style="font-size:16px;">Sybase SQL Anywhere(ASA)数据库非常规恢复工具<br />
	</span></strong></p>
<p><strong>ReadASADB</strong>---一个不依赖数据库管理系统、直接从db文件上提取数据的业内领先的恢复工具！</p>
<p><strong>一、SQL Anywhere、UltraLite介绍</strong><br />
	<span style="color:#f00;">SQL Anywhere&nbsp; 一个免维护、易管理的移动数据库。</span></p>
<p>	SQL Anywhere 提供了企业级的功能，包括完全的事务处理、无与伦比的可靠性和功能，包括参照完整性、存储过程、触发器、行级锁、自动的任务安排和自动恢复等功能</p>
<ul>
<li>易于使用，易于管理 ，降低最终用户的日常管理费用！</li>
<li>多平台支持</li>
<li>资源效率高</li>
<li>配套的定时数据同步工具Mobilink</li>
</ul>
<p><span style="color:#f00;">UltraLite 是一种用于小型、移动和嵌入式设备的、具有同步功能的关系数据库</span></p>
<ul>
<li>稳健的数据管理</li>
<li>强大的同步功能</li>
<li>直接简明的开发</li>
<li>多平台可用性</li>
</ul>
<p>您可以开发和部署用于 Windows CE、 Palm OS 和基于 Java 的设备的 UltraLite 数据库应用程序！</p>
<p>
	<strong>二、ReadASADB功能</strong><br />
	<span style="color:#f00;">能够从损坏的SQL Anywhere数据文件(.db)和UltraLite数据文件(.udb)上提取数据的非常规恢复工具</span></p>
<ol>
<li>适用于所有的SQL Anywhere版本&nbsp;&nbsp;&nbsp; <span style="font-size:10px;">包括：5.x,6.x,7.x,8.x,9.x,10.x,11.x,12.x</span><span style="font-size:10px;">,16.x</span></li>
<li>适用于所有的UltraLite版本</li>
<li>能够恢复出来表结构和数据</li>
<li>能够恢复自定义数据类型</li>
<li>能够恢复存储过程等对象的语法</li>
<li>能够导出到目标数据库</li>
<li>能够导出到SQL文件并生成导入脚本</li>
<li>支持多种字符集&nbsp; <span style="font-size:10px;">包括：cp850、cp936、gb18030、utf8等</span></li>
<li>能够恢复未加密或者简单加密类型的数据</li>
<li>简单易用</li>
<li>限制：不支持AES加密的数据文件</li>
</ol>
<p><span id="more-2072"></span><br />
	<strong>三、ReadASADB适用场景</strong></p>
<p>	<span style="color:#f00;">各种误操作：</span></p>
<ol>
<li>误截断表(truncate table)</li>
<li>误删除表(drop table)</li>
<li>错误的where条件误删数据</li>
<li>误删除db或log文件</li>
<li>误删除表中的字段</li>
</ol>
<p><strong><br />
	四、ReadASADB恢复数据过程</strong><br />
	关于工具ReadASADB还可以参考我的博客：<br />
	<a href="https://www.dbainfo.net/i-have-the-tool-can-recover-from-asa-db-file.htm" target="_blank">研发成功了从Sybase SQL Anywhere的DB文件上恢复数据的工具</a><br />
	<a href="https://www.dbainfo.net/anywhere-database-internal-physical-storage-analysis-1.htm" target="_blank">ASA数据库物理存储结构分析（1）</a><br />
	<a href="https://www.dbainfo.net/anywhere-database-internal-physical-storage-analysis-2.htm" target="_blank">ASA数据库物理存储结构分析（2）</a><br />
	&nbsp;</p>
<p><strong>浏览操作过程视频：</strong><br />
	&nbsp; <embed align="middle" allowfullscreen="true" allowscriptaccess="always" height="400" quality="high" src="http://player.youku.com/player.php/sid/XODEzNjk4NzAw/v.swf" type="application/x-shockwave-flash" width="480"></embed></p>
<p><img alt="SQL Anywhere恢复工具介绍1" src="https://www.dbainfo.net/wp-content/uploads/2013/04/SQL Anywhere Unusual Recovery Tool ReadASADB Introduction (1).JPG" /></p>
<p><img alt="SQL Anywhere恢复工具介绍2" src="https://www.dbainfo.net/wp-content/uploads/2013/04/SQL Anywhere Unusual Recovery Tool ReadASADB Introduction (2).JPG" /></p>
<p>&nbsp;</p>
<p><img alt="SQL Anywhere恢复工具介绍3" src="https://www.dbainfo.net/wp-content/uploads/2013/04/SQL Anywhere Unusual Recovery Tool ReadASADB Introduction (3).JPG" /></p>
<p><img alt="SQL Anywhere恢复工具介绍4" src="https://www.dbainfo.net/wp-content/uploads/2013/04/SQL Anywhere Unusual Recovery Tool ReadASADB Introduction (4).JPG" /></p>
<p><img alt="SQL Anywhere恢复工具介绍5" src="https://www.dbainfo.net/wp-content/uploads/2013/04/SQL Anywhere Unusual Recovery Tool ReadASADB Introduction (5).JPG" /></p>
<p><img alt="SQL Anywhere恢复工具介绍6" src="https://www.dbainfo.net/wp-content/uploads/2013/04/SQL Anywhere Unusual Recovery Tool ReadASADB Introduction (6).JPG" /></p>
<p><img alt="SQL Anywhere恢复工具介绍7" src="https://www.dbainfo.net/wp-content/uploads/2013/04/SQL Anywhere Unusual Recovery Tool ReadASADB Introduction (7).JPG" /></p>
<p><img alt="SQL Anywhere恢复工具介绍8" src="https://www.dbainfo.net/wp-content/uploads/2013/04/SQL Anywhere Unusual Recovery Tool ReadASADB Introduction (8).JPG" /></p>
<p><img alt="SQL Anywhere恢复工具介绍9" src="https://www.dbainfo.net/wp-content/uploads/2013/04/SQL Anywhere Unusual Recovery Tool ReadASADB Introduction (9).JPG" /></p>
<p><img alt="SQL Anywhere恢复工具介绍10" src="https://www.dbainfo.net/wp-content/uploads/2013/04/SQL Anywhere Unusual Recovery Tool ReadASADB Introduction (10).JPG" /></p>
<p><img alt="SQL Anywhere恢复工具介绍11" src="https://www.dbainfo.net/wp-content/uploads/2013/04/SQL Anywhere Unusual Recovery Tool ReadASADB Introduction (11).JPG" /></p>
<p><img alt="SQL Anywhere恢复工具介绍12" src="https://www.dbainfo.net/wp-content/uploads/2013/04/SQL Anywhere Unusual Recovery Tool ReadASADB Introduction (12).JPG" /></p>
<p><img alt="SQL Anywhere恢复工具介绍13" src="https://www.dbainfo.net/wp-content/uploads/2013/04/SQL Anywhere Unusual Recovery Tool ReadASADB Introduction (13).JPG" /></p>
<p><img alt="SQL Anywhere恢复工具介绍14" src="https://www.dbainfo.net/wp-content/uploads/2013/04/SQL Anywhere Unusual Recovery Tool ReadASADB Introduction (14).JPG" /></p>
<p><img alt="SQL Anywhere恢复工具介绍15" src="https://www.dbainfo.net/wp-content/uploads/2013/04/SQL Anywhere Unusual Recovery Tool ReadASADB Introduction (15).JPG" /></p>
<p><img alt="SQL Anywhere恢复工具介绍16" src="https://www.dbainfo.net/wp-content/uploads/2013/04/SQL Anywhere Unusual Recovery Tool ReadASADB Introduction (16).JPG" /></p>
<p><img alt="SQL Anywhere恢复工具介绍17" src="https://www.dbainfo.net/wp-content/uploads/2013/04/SQL Anywhere Unusual Recovery Tool ReadASADB Introduction (17).JPG" /></p>
<p><img alt="SQL Anywhere恢复工具介绍18" src="https://www.dbainfo.net/wp-content/uploads/2013/04/SQL Anywhere Unusual Recovery Tool ReadASADB Introduction (18).JPG" /></p>
<p><img alt="SQL Anywhere恢复工具介绍19" src="https://www.dbainfo.net/wp-content/uploads/2013/04/SQL Anywhere Unusual Recovery Tool ReadASADB Introduction (19).JPG" /></p>
<p><img alt="SQL Anywhere恢复工具介绍20" src="https://www.dbainfo.net/wp-content/uploads/2013/04/SQL Anywhere Unusual Recovery Tool ReadASADB Introduction (20).JPG" /></p>
<p><img alt="SQL Anywhere恢复工具介绍21" src="https://www.dbainfo.net/wp-content/uploads/2013/04/SQL Anywhere Unusual Recovery Tool ReadASADB Introduction (21).JPG" /></p>
<p><img alt="SQL Anywhere恢复工具介绍22" src="https://www.dbainfo.net/wp-content/uploads/2013/04/SQL Anywhere Unusual Recovery Tool ReadASADB Introduction (22).JPG" /></p>
<p><img alt="SQL Anywhere恢复工具介绍23" src="https://www.dbainfo.net/wp-content/uploads/2013/04/SQL Anywhere Unusual Recovery Tool ReadASADB Introduction (23).JPG" /></p>
<p>视频浏览地址：<a href="https://www.dbainfo.net/wp-content/uploads/file/SQL_Anywhere_Recovery_Tool-ReadASADB-demo.swf" target="_blank">https://www.dbainfo.net/wp-content/uploads/file/SQL_Anywhere_Recovery_Tool-ReadASADB-demo.swf</a></p>
<p>幻灯片格式的下载地址：<a href="https://www.dbainfo.net/wp-content/uploads/file/SQL%20Anywhere恢复工具介绍.ppt" target="_blank">SQL Anywhere恢复工具介绍.ppt</a></p>
<div style="clear: both; margin: 10px 0pt; border: 1px dashed rgb(153, 153, 153); font-size: 12px; padding: 5px 10px;">
<li>本文链接地址：<a href="https://www.dbainfo.net/introduce-sql-anywhere-recovery-tool-readasadb.htm">https://www.dbainfo.net/introduce-sql-anywhere-recovery-tool-readasadb.htm</a>；</li>
<li>本文为dbainfo个人原创，请在尊重作者劳动成果的前提下进行转载；</li>
<li>转载务必注明原始出处 : <a href="https://www.dbainfo.net/">Sybase数据库技术，数据库恢复专家</a>；</li>
<li>对《<a href="https://www.dbainfo.net/introduce-sql-anywhere-recovery-tool-readasadb.htm">Sybase SQL Anywhere(ASA)数据库非常规恢复工具</a>》有何疑问或见解，请在本文下方发表；</li>
<li>对网站还有其他问题或建议，请提交在<a href="https://www.dbainfo.net/messages" target="_blank">留言板</a>，谢谢！</li>
</div>
<h2  class="related_post_title">相关文章</h2><ul class="related_post"><li>2019-04-12 -- <a href="https://www.dbainfo.net/sybase-ase-asa-recovery-service.htm" title="Sybase ASE及SQL Anywhere数据库修复专家">Sybase ASE及SQL Anywhere数据库修复专家</a> (0)</li><li>2012-06-11 -- <a href="https://www.dbainfo.net/i-have-the-tool-can-recover-from-asa-db-file.htm" title="研发成功了从Sybase SQL Anywhere的DB文件上恢复数据的工具">研发成功了从Sybase SQL Anywhere的DB文件上恢复数据的工具</a> (3)</li><li>2019-04-11 -- <a href="https://www.dbainfo.net/sql-server-recovery-service.htm" title="SQL Server 数据库修复专家SQLRescue">SQL Server 数据库修复专家SQLRescue</a> (0)</li><li>2013-06-02 -- <a href="https://www.dbainfo.net/recovery-tools" title="Sybase数据库恢复工具">Sybase数据库恢复工具</a> (0)</li><li>2013-06-02 -- <a href="https://www.dbainfo.net/2120.htm" title=""></a> (0)</li><li>2009-11-18 -- <a href="https://www.dbainfo.net/sybase-ase-recovery-tool.htm" title="Sybase Adaptive Server Enterprise(ASE)数据库恢复工具">Sybase Adaptive Server Enterprise(ASE)数据库恢复工具</a> (2)</li><li>2012-04-11 -- <a href="https://www.dbainfo.net/ase-alter-table-modify-column-default-value.htm" title="ASE修改列的默认值属性">ASE修改列的默认值属性</a> (0)</li><li>2010-02-25 -- <a href="https://www.dbainfo.net/mssqlserver-flashback-to-before-drop-table-by-logs.htm" title="MSSQLSERVER利用日志恢复drop table的表数据[转]">MSSQLSERVER利用日志恢复drop table的表数据[转]</a> (0)</li><li>2010-02-23 -- <a href="https://www.dbainfo.net/sybase-ase-flashback-table-to-before-drop-table.htm" title="成功恢复drop table的表内数据">成功恢复drop table的表内数据</a> (3)</li><li>2015-01-16 -- <a href="https://www.dbainfo.net/one-way-to-recover-master-configuration-area.htm" title="master数据库配置区域(configuration area)损坏的一种修复方法">master数据库配置区域(configuration area)损坏的一种修复方法</a> (1)</li></ul>]]></content:encoded>
			<wfw:commentRss>https://www.dbainfo.net/introduce-sql-anywhere-recovery-tool-readasadb.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>研发成功了从Sybase SQL Anywhere的DB文件上恢复数据的工具</title>
		<link>https://www.dbainfo.net/i-have-the-tool-can-recover-from-asa-db-file.htm</link>
		<comments>https://www.dbainfo.net/i-have-the-tool-can-recover-from-asa-db-file.htm#comments</comments>
		<pubDate>Mon, 11 Jun 2012 13:33:32 +0000</pubDate>
		<dc:creator>dbainfo</dc:creator>
				<category><![CDATA[Sybase ASA]]></category>
		<category><![CDATA[ASA]]></category>
		<category><![CDATA[DBA]]></category>
		<category><![CDATA[ReadASADB]]></category>
		<category><![CDATA[recovery tools]]></category>
		<category><![CDATA[物理存储结构]]></category>
		<category><![CDATA[误操作]]></category>
		<category><![CDATA[读取设备内容]]></category>
		<category><![CDATA[非常规恢复]]></category>

		<guid isPermaLink="false">http://www.dbainfo.net/?p=1930</guid>
		<description><![CDATA[之前就已经研发成功了能够从Sybase SQL Anywhere的DB文件中恢复数据的工具，现在公布一下。 此工具支持ASA v5.0,v6.0,v7.0,v8.0,v9.0,v10.0,v11.0,v12.0等版本。恢复Sybase SQL Anywhere的工具在国内应该算首创。 本工具的应用场景： 1.因为物理磁盘故障、操作系统、系统软件方面或者掉电等等原因导致的Sybase SQL Anywhere数据库无法打开的情况； 2.误操作，包括truncate table,drop table,不正确的where条件导致的误删除等； Sybase SQL Anywhere无法打开时，比较常见的错误是：Assertion failed。 如： 1、Internal database error *** ERROR *** Assertion failed:201819 (8.0.1.2600) Checkpoint log: invalid bitmap page -- transaction rolled back 2、Internal database error *** ERROR *** Assertion failed:201819 (8.0.1.2600) Page number on page does not match page requested [...]]]></description>
			<content:encoded><![CDATA[<p>之前就已经研发成功了能够从Sybase SQL Anywhere的DB文件中恢复数据的工具，现在公布一下。</p>
<p>此工具支持ASA v5.0,v6.0,v7.0,v8.0,v9.0,v10.0,v11.0,v12.0等版本。恢复Sybase SQL Anywhere的工具在国内应该算首创。</p>
<p><strong>本工具的应用场景：</strong></p>
<p>1.因为物理磁盘故障、操作系统、系统软件方面或者掉电等等原因导致的Sybase SQL Anywhere数据库无法打开的情况；</p>
<p>2.误操作，包括truncate table,drop table,不正确的where条件导致的误删除等；</p>
<p>Sybase SQL Anywhere无法打开时，比较常见的错误是：Assertion failed。</p>
<p>如：</p>
<p>1、Internal database error *** ERROR *** Assertion failed:201819 (8.0.1.2600) Checkpoint log: invalid bitmap page -- transaction rolled back<br />
	2、Internal database error *** ERROR *** Assertion failed:201819 (8.0.1.2600) Page number on page does not match page requested -- transaction rolled back<br />
	3、Internal database error *** ERROR *** Assertion failed:200502 (9.0.2.2451) Checksum failure on page 23 -- transaction rolled back</p>
<p>4、File is shorter than expected</p>
<p>5、Internal database error *** ERROR *** Assertion failed: 201116 Invalid free list index page found while processing checkpoint log -- transaction rolled back</p>
<p>6、*** ERROR *** Assertion failed: 51901 Page for requested record not a table page or record not present on page</p>
<p>7、*** ERROR *** Assertion failed: 201417 (7.0.4.3541) Invalid count or free space offset detected on a table page</p>
<p>8、Internal database error *** ERROR *** Assertion failed: 201425 (8.0.3.5594) Invalid count or free space offset detected on a free list page -- transaction rolled back.</p>
<p>9、Internal database error *** ERROR *** Assertion failed: 100702 (8.0.1.2600) Unable to modify indexes for a row referenced in rollback log -- transaction rolled back</p>
<div style="text-align: center;"><img alt="Checkpoint log: invalid bitmap page -- transaction rolled back" src="https://www.dbainfo.net/wp-content/uploads/2014/07/invalid-bitmap-page.png" /></div>
<div style="text-align: center;"><img alt="Internal database error *** ERROR *** Assertion failed: 201116 Invalid free list index page found while processing checkpoint log -- transaction rolled back" height="162" src="https://www.dbainfo.net/wp-content/uploads/2014/07/invalid-free-list-index-page.jpg" width="384" /></div>
<div style="text-align: center;"><img alt="Unable to modify indexes for a row referenced in rollback log -- transaction rolled back" height="162" src="https://www.dbainfo.net/wp-content/uploads/2014/07/unable to modify indexes for a row referenced in rollback log.png" width="414" /></div>
<p>等等。报错的同时可能会在db文件相同目录下生成assert.dmp文件。</p>
<p>关于Assertion Failure，大家可以参考Sybase官方技术文章：<a href="http://www.sybase.com/detail?id=1010805" target="_blank">I&#39;ve got an assertion! What should I do? </a></p>
<p>本博中有两篇文章介绍Sybase SQL Anywhere数据库db文件的物理存储结构的分析过程，可以参考一下：</p>
<p><a href="https://www.dbainfo.net/anywhere-database-internal-physical-storage-analysis-1.htm">ASA数据库物理存储结构分析（1）<br />
	</a></p>
<p><a href="https://www.dbainfo.net/anywhere-database-internal-physical-storage-analysis-2.htm">ASA数据库物理存储结构分析（2）<br />
	</a></p>
<p>本人不提供此工具的下载。如想了解使用本工具恢复损坏db文件的过程，可以观看下面的视频：<span id="more-1930"></span></p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0" height="335" width="600"><param name="quality" value="high" /><param name="movie" value="https://www.dbainfo.net/wp-content/uploads/file/SQL_Anywhere_Recovery_Tool-ReadASADB-demo.swf" /><embed height="335" pluginspage="http://www.macromedia.com/go/getflashplayer" quality="high" src="https://www.dbainfo.net/wp-content/uploads/file/SQL_Anywhere_Recovery_Tool-ReadASADB-demo.swf" type="application/x-shockwave-flash" width="600"></embed></object></p>
<p>全屏浏览视频：<a href="https://www.dbainfo.net/wp-content/uploads/file/SQL_Anywhere_Recovery_Tool-ReadASADB-demo.swf" target="_blank">https://www.dbainfo.net/wp-content/uploads/file/SQL_Anywhere_Recovery_Tool-ReadASADB-demo.swf</a></p>
<p>如果您的ASA数据库需要恢复的话，可以联系我。</p>
<div style="clear: both; margin: 10px 0pt; border: 1px dashed rgb(153, 153, 153); font-size: 12px; padding: 5px 10px;">
<li>本文链接地址：<a href="https://www.dbainfo.net/i-have-the-tool-can-recover-from-asa-db-file.htm">https://www.dbainfo.net/i-have-the-tool-can-recover-from-asa-db-file.htm</a>；</li>
<li>本文为dbainfo个人原创，请在尊重作者劳动成果的前提下进行转载；</li>
<li>转载务必注明原始出处 : <a href="https://www.dbainfo.net/">Sybase数据库技术，数据库恢复专家</a>；</li>
<li>对《<a href="https://www.dbainfo.net/i-have-the-tool-can-recover-from-asa-db-file.htm">研发成功了从Sybase SQL Anywhere的DB文件上恢复数据的工具</a>》有何疑问或见解，请在本文下方发表；</li>
<li>对网站还有其他问题或建议，请提交在<a href="https://www.dbainfo.net/messages" target="_blank">留言板</a>，谢谢！</li>
</div>
<h2  class="related_post_title">相关文章</h2><ul class="related_post"><li>2012-06-22 -- <a href="https://www.dbainfo.net/introduce-sql-anywhere-recovery-tool-readasadb.htm" title="Sybase SQL Anywhere(ASA)数据库非常规恢复工具">Sybase SQL Anywhere(ASA)数据库非常规恢复工具</a> (0)</li><li>2019-04-12 -- <a href="https://www.dbainfo.net/sybase-ase-asa-recovery-service.htm" title="Sybase ASE及SQL Anywhere数据库修复专家">Sybase ASE及SQL Anywhere数据库修复专家</a> (0)</li><li>2013-06-02 -- <a href="https://www.dbainfo.net/recovery-tools" title="Sybase数据库恢复工具">Sybase数据库恢复工具</a> (0)</li><li>2013-06-02 -- <a href="https://www.dbainfo.net/2120.htm" title=""></a> (0)</li><li>2019-04-11 -- <a href="https://www.dbainfo.net/sql-server-recovery-service.htm" title="SQL Server 数据库修复专家SQLRescue">SQL Server 数据库修复专家SQLRescue</a> (0)</li><li>2009-11-18 -- <a href="https://www.dbainfo.net/sybase-ase-recovery-tool.htm" title="Sybase Adaptive Server Enterprise(ASE)数据库恢复工具">Sybase Adaptive Server Enterprise(ASE)数据库恢复工具</a> (2)</li><li>2010-02-25 -- <a href="https://www.dbainfo.net/mssqlserver-flashback-to-before-drop-table-by-logs.htm" title="MSSQLSERVER利用日志恢复drop table的表数据[转]">MSSQLSERVER利用日志恢复drop table的表数据[转]</a> (0)</li><li>2010-02-23 -- <a href="https://www.dbainfo.net/sybase-ase-flashback-table-to-before-drop-table.htm" title="成功恢复drop table的表内数据">成功恢复drop table的表内数据</a> (3)</li><li>2015-01-16 -- <a href="https://www.dbainfo.net/one-way-to-recover-master-configuration-area.htm" title="master数据库配置区域(configuration area)损坏的一种修复方法">master数据库配置区域(configuration area)损坏的一种修复方法</a> (1)</li><li>2012-11-10 -- <a href="https://www.dbainfo.net/sybase-ase-15-0-3-test-server.htm" title="免费提供Sybase ASE v15.0.3试用测试服务器环境">免费提供Sybase ASE v15.0.3试用测试服务器环境</a> (0)</li></ul>]]></content:encoded>
			<wfw:commentRss>https://www.dbainfo.net/i-have-the-tool-can-recover-from-asa-db-file.htm/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>MSSQLSERVER利用日志恢复drop table的表数据[转]</title>
		<link>https://www.dbainfo.net/mssqlserver-flashback-to-before-drop-table-by-logs.htm</link>
		<comments>https://www.dbainfo.net/mssqlserver-flashback-to-before-drop-table-by-logs.htm#comments</comments>
		<pubDate>Thu, 25 Feb 2010 09:33:23 +0000</pubDate>
		<dc:creator>dbainfo</dc:creator>
				<category><![CDATA[SQL SERVER]]></category>
		<category><![CDATA[恢复]]></category>
		<category><![CDATA[误操作]]></category>
		<category><![CDATA[非常规恢复]]></category>

		<guid isPermaLink="false">http://www.dbainfo.net/?p=173</guid>
		<description><![CDATA[-- 创建测试数据库 CREATE DATABASE Db GO -- 对数据库进行备份 BACKUP DATABASE Db TO DISK = ' c:\db.bak ' WITH FORMAT GO -- 创建测试表 CREATE TABLE Db.dbo.TB_test(ID int ) -- 延时1秒钟,再进行后面的操作(这是由于SQL Server的时间精度最大为百分之三秒,不延时的话,可能会导致还原到时间点的操作失败) WAITFOR DELAY ' 00:00:01 ' GO -- 假设我们现在误操作删除了 Db.dbo.TB_test 这个表 DROP TABLE Db.dbo.TB_test -- 保存删除表的时间 SELECT dt = GETDATE () INTO # GO -- 在删除操作后,发现不应该删除表 [...]]]></description>
			<content:encoded><![CDATA[<p>-- 创建测试数据库<br />
CREATE   DATABASE  Db<br />
GO</p>
<p>-- 对数据库进行备份<br />
BACKUP   DATABASE  Db  TO   DISK = ' c:\db.bak '   WITH  FORMAT<br />
GO</p>
<p>-- 创建测试表<br />
CREATE   TABLE  Db.dbo.TB_test(ID  int )</p>
<p>-- 延时1秒钟,再进行后面的操作(这是由于SQL Server的时间精度最大为百分之三秒,不延时的话,可能会导致还原到时间点的操作失败)<br />
WAITFOR  DELAY  ' 00:00:01 '<br />
GO</p>
<p>-- 假设我们现在误操作删除了 Db.dbo.TB_test 这个表<br />
DROP   TABLE  Db.dbo.TB_test</p>
<p>-- 保存删除表的时间<br />
SELECT  dt = GETDATE ()  INTO  #<br />
GO</p>
<p>-- 在删除操作后,发现不应该删除表 Db.dbo.TB_test</p>
<p>-- 下面演示了如何恢复这个误删除的表 Db.dbo.TB_test</p>
<p>-- 首先,备份事务日志(使用事务日志才能还原到指定的时间点)<br />
BACKUP   LOG  Db  TO   DISK = ' c:\db_log.bak '   WITH  FORMAT<br />
GO</p>
<p>-- 接下来,我们要先还原完全备份(还原日志必须在还原完全备份的基础上进行)<br />
RESTORE   DATABASE  Db  FROM   DISK = ' c:\db.bak '   WITH   REPLACE ,NORECOVERY<br />
GO</p>
<p>-- 将事务日志还原到删除操作前（这里的时间对应上面的删除时间，并比删除时间略早<br />
DECLARE   @dt   datetime<br />
SELECT   @dt = DATEADD (ms, - 20 ,dt)  FROM  #   -- 获取比表被删除的时间略早的时间<br />
RESTORE   LOG  Db  FROM   DISK = ' c:\db_log.bak '   WITH  RECOVERY,STOPAT = @dt<br />
GO</p>
<p>-- 查询一下,看表是否恢复<br />
SELECT   *   FROM  Db.dbo.TB_test</p>
<p>/* --结果:<br />
ID<br />
-----------</p>
<p>（所影响的行数为 0 行）<br />
-- */</p>
<p>-- 测试成功<br />
GO</p>
<p>-- 最后删除我们做的测试环境<br />
DROP   DATABASE   Db<br />
DROP   TABLE  #
<div style="clear: both; margin: 10px 0pt; border: 1px dashed rgb(153, 153, 153); font-size: 12px; padding: 5px 10px;">
<li>本文链接地址：<a href="https://www.dbainfo.net/mssqlserver-flashback-to-before-drop-table-by-logs.htm">https://www.dbainfo.net/mssqlserver-flashback-to-before-drop-table-by-logs.htm</a>；</li>
<li>本文为dbainfo个人原创，请在尊重作者劳动成果的前提下进行转载；</li>
<li>转载务必注明原始出处 : <a href="https://www.dbainfo.net/">Sybase数据库技术，数据库恢复专家</a>；</li>
<li>对《<a href="https://www.dbainfo.net/mssqlserver-flashback-to-before-drop-table-by-logs.htm">MSSQLSERVER利用日志恢复drop table的表数据[转]</a>》有何疑问或见解，请在本文下方发表；</li>
<li>对网站还有其他问题或建议，请提交在<a href="https://www.dbainfo.net/messages" target="_blank">留言板</a>，谢谢！</li>
</div>
<h2  class="related_post_title">相关文章</h2><ul class="related_post"><li>2013-06-02 -- <a href="https://www.dbainfo.net/recovery-tools" title="Sybase数据库恢复工具">Sybase数据库恢复工具</a> (0)</li><li>2013-06-02 -- <a href="https://www.dbainfo.net/2120.htm" title=""></a> (0)</li><li>2010-02-23 -- <a href="https://www.dbainfo.net/sybase-ase-flashback-table-to-before-drop-table.htm" title="成功恢复drop table的表内数据">成功恢复drop table的表内数据</a> (3)</li><li>2012-06-22 -- <a href="https://www.dbainfo.net/introduce-sql-anywhere-recovery-tool-readasadb.htm" title="Sybase SQL Anywhere(ASA)数据库非常规恢复工具">Sybase SQL Anywhere(ASA)数据库非常规恢复工具</a> (0)</li><li>2012-06-11 -- <a href="https://www.dbainfo.net/i-have-the-tool-can-recover-from-asa-db-file.htm" title="研发成功了从Sybase SQL Anywhere的DB文件上恢复数据的工具">研发成功了从Sybase SQL Anywhere的DB文件上恢复数据的工具</a> (3)</li><li>2009-11-18 -- <a href="https://www.dbainfo.net/sybase-ase-recovery-tool.htm" title="Sybase Adaptive Server Enterprise(ASE)数据库恢复工具">Sybase Adaptive Server Enterprise(ASE)数据库恢复工具</a> (2)</li><li>2019-04-12 -- <a href="https://www.dbainfo.net/sybase-ase-asa-recovery-service.htm" title="Sybase ASE及SQL Anywhere数据库修复专家">Sybase ASE及SQL Anywhere数据库修复专家</a> (0)</li><li>2019-04-11 -- <a href="https://www.dbainfo.net/sql-server-recovery-service.htm" title="SQL Server 数据库修复专家SQLRescue">SQL Server 数据库修复专家SQLRescue</a> (0)</li><li>2015-01-16 -- <a href="https://www.dbainfo.net/one-way-to-recover-master-configuration-area.htm" title="master数据库配置区域(configuration area)损坏的一种修复方法">master数据库配置区域(configuration area)损坏的一种修复方法</a> (1)</li><li>2010-12-13 -- <a href="https://www.dbainfo.net/sqlserver2005-reinstall-sql-engine.htm" title="SQL Server 2005系统数据库master重建、修复">SQL Server 2005系统数据库master重建、修复</a> (0)</li></ul>]]></content:encoded>
			<wfw:commentRss>https://www.dbainfo.net/mssqlserver-flashback-to-before-drop-table-by-logs.htm/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>密码保护：成功恢复drop table的表内数据</title>
		<link>https://www.dbainfo.net/sybase-ase-flashback-table-to-before-drop-table.htm</link>
		<comments>https://www.dbainfo.net/sybase-ase-flashback-table-to-before-drop-table.htm#comments</comments>
		<pubDate>Tue, 23 Feb 2010 09:40:48 +0000</pubDate>
		<dc:creator>dbainfo</dc:creator>
				<category><![CDATA[Sybase ASE]]></category>
		<category><![CDATA[DBCC]]></category>
		<category><![CDATA[dbcc allocdump]]></category>
		<category><![CDATA[dbcc page]]></category>
		<category><![CDATA[dbcc pglinkage]]></category>
		<category><![CDATA[drop table]]></category>
		<category><![CDATA[truncate table]]></category>
		<category><![CDATA[恢复]]></category>
		<category><![CDATA[误操作]]></category>
		<category><![CDATA[非常规恢复]]></category>

		<guid isPermaLink="false">http://www.dbainfo.net/?p=144</guid>
		<description><![CDATA[无法提供摘要。这是一篇受保护的文章。]]></description>
			<content:encoded><![CDATA[<form action="https://www.dbainfo.net/wp-pass.php" method="post">
<p>这是一篇受密码保护的文章。您需要提供访问密码：</p>
<p><label for="pwbox-144">密码：<br />
<input name="post_password" id="pwbox-144" type="password" size="20" /></label><br />
<input type="submit" name="Submit" value="提交" /></p></form>
<div style="clear: both; margin: 10px 0pt; border: 1px dashed rgb(153, 153, 153); font-size: 12px; padding: 5px 10px;">
<li>本文链接地址：<a href="https://www.dbainfo.net/sybase-ase-flashback-table-to-before-drop-table.htm">https://www.dbainfo.net/sybase-ase-flashback-table-to-before-drop-table.htm</a>；</li>
<li>本文为dbainfo个人原创，请在尊重作者劳动成果的前提下进行转载；</li>
<li>转载务必注明原始出处 : <a href="https://www.dbainfo.net/">Sybase数据库技术，数据库恢复专家</a>；</li>
<li>对《<a href="https://www.dbainfo.net/sybase-ase-flashback-table-to-before-drop-table.htm">密码保护：成功恢复drop table的表内数据</a>》有何疑问或见解，请在本文下方发表；</li>
<li>对网站还有其他问题或建议，请提交在<a href="https://www.dbainfo.net/messages" target="_blank">留言板</a>，谢谢！</li>
</div>
<h2  class="related_post_title">相关文章</h2><ul class="related_post"><li>2013-06-02 -- <a href="https://www.dbainfo.net/recovery-tools" title="Sybase数据库恢复工具">Sybase数据库恢复工具</a> (0)</li><li>2013-06-02 -- <a href="https://www.dbainfo.net/2120.htm" title=""></a> (0)</li><li>2010-02-25 -- <a href="https://www.dbainfo.net/mssqlserver-flashback-to-before-drop-table-by-logs.htm" title="MSSQLSERVER利用日志恢复drop table的表数据[转]">MSSQLSERVER利用日志恢复drop table的表数据[转]</a> (0)</li><li>2012-06-22 -- <a href="https://www.dbainfo.net/introduce-sql-anywhere-recovery-tool-readasadb.htm" title="Sybase SQL Anywhere(ASA)数据库非常规恢复工具">Sybase SQL Anywhere(ASA)数据库非常规恢复工具</a> (0)</li><li>2012-06-11 -- <a href="https://www.dbainfo.net/i-have-the-tool-can-recover-from-asa-db-file.htm" title="研发成功了从Sybase SQL Anywhere的DB文件上恢复数据的工具">研发成功了从Sybase SQL Anywhere的DB文件上恢复数据的工具</a> (3)</li><li>2009-11-18 -- <a href="https://www.dbainfo.net/sybase-ase-recovery-tool.htm" title="Sybase Adaptive Server Enterprise(ASE)数据库恢复工具">Sybase Adaptive Server Enterprise(ASE)数据库恢复工具</a> (2)</li><li>2019-04-12 -- <a href="https://www.dbainfo.net/sybase-ase-asa-recovery-service.htm" title="Sybase ASE及SQL Anywhere数据库修复专家">Sybase ASE及SQL Anywhere数据库修复专家</a> (0)</li><li>2019-04-11 -- <a href="https://www.dbainfo.net/sql-server-recovery-service.htm" title="SQL Server 数据库修复专家SQLRescue">SQL Server 数据库修复专家SQLRescue</a> (0)</li><li>2015-01-16 -- <a href="https://www.dbainfo.net/one-way-to-recover-master-configuration-area.htm" title="master数据库配置区域(configuration area)损坏的一种修复方法">master数据库配置区域(configuration area)损坏的一种修复方法</a> (1)</li><li>2012-09-26 -- <a href="https://www.dbainfo.net/config_dbccdb.htm" title="dbcc配置过程">dbcc配置过程</a> (0)</li></ul>]]></content:encoded>
			<wfw:commentRss>https://www.dbainfo.net/sybase-ase-flashback-table-to-before-drop-table.htm/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>
