有多种安全级别可供选择的文件清除软件。你以为把 Windows98、XP 甚至是WINDOWS 7的回收站清一清就放心了吗?这些文件大多仍然存在你的电脑中,随时都可能被有心人士给还原出来盗走。就让 BCWipe 来帮你把硬盘清的一干二净、不留痕迹。对于一些存有重要敏感文件的电脑,BCWipe 是一个强力的文件清除工具。它提供多种方式来清除你的磁盘文件。另外还有 粉碎可用空间、粉碎程序历史记录 及 粉碎特殊文件夹 3 个选项。
软件装好后鼠标右键点文件或者文件夹,弹出菜单会多出个 “删除并粉碎” 选项
支持Windows 7系统!
1.) 安装安装时会有一个提示选择安装语言的下拉选项,这时选择下载其他安装语言,安装程序会联网下载最新的其他语言安装包,这时候选择Chinese,然后继续安装即为官方简体中文版!
2.) 在安装过程中,选择“嵌入在安装程序中的授权”
3.) 使用压缩包中 Keygen-CRD\keygen.ex 破解 C:\Program Files\Jetico\Shared\BCWipe.dll
4.) 运行 "BCWipe", 在'关于->注册' 中使用注册机生成的LICENSE.TXT
5.) 搞定收工!
注册信息:
http://www.eset.com.cn/html/download/comp.shtml
附件中许可证已过期,新的在
http://www.gclz.cn/read.php/656.htm
2000用户的许可证,到期时间2011-12-17
文件名:nod32.lic
类型:EAV NOD32
授权用户数量: 200
过期时间: 2011年5月20日
文件名:ess.lic
类型:ESS
授权用户数量: 150
过期时间: 2011年5月20日
说明:
1.对源程序作了进一步汉化翻译,使所有界面、所有内容全部简体中文显示,近乎完美汉化;
2.已将注册表文件导入安装包,安装后即是“已注册”,免去注册麻烦;
3.安装后即支持拼音首字母查找联系人,并且重新进行了优化,无须替换文件;感谢网友guanke1982,他提供了一个比较全面的字库,在此字库基 础上,加上网友反映的没有的汉字,目前字库已达6754个汉字,较官方版本(3927个汉字)增加2827个;
Oracle/PLSQL: Execute a function that is defined in a package
Question: How can I execute a function that is defined in a package using Oracle/PLSQL?
Answer: To execute a function that is defined in a package, you'll have to prefix the function name with the package name.
package_name.function_name (parameter1, parameter2, ... parameter_n)
You can execute a function a few different ways.
Solution #1
First, we'll take a look at how to execute a function using a test block. Below we've declared a variable called result that is a number. We've passed in a value of 15000 into the function and the result of the function will be returned to the variable called result.
declare
result number;
begin
-- Call the function
result := package_name.function_name (15000);
end;
Solution #2
We can also execute a function by running an SQL statement. For example:
select package_name.function_name (15000)
from dual;
使用方法:
输入用户、密码、tnsname -> 连接9i, 10g、11g数据库 -> 选择schema、代码类型 -> 选择代码->Unwrap
或者
直接将加密过的代码输入到wrap text编辑框中(仅10g、11g)->Unwrap
来源: http://www.hellodba.com/Download/Unwrap_PLSQL.html