Showing posts with label Recovery Tips. Show all posts
Showing posts with label Recovery Tips. Show all posts

Tuesday, 21 May 2013

Top 10 things Stellar Phoenix SQL Recovery user needs to know




Recover your corrupt SQL Server Database with a dedicated software application is a SQL Recovery Software provided by Stellar. The application runs directly from your system after installing software on specified location. Here I am sharing useful information of SQL Recovery Software. 


There are two types of files, mdf and ndf which manage your data in proper format. The ndf file is a secondary file, if you have a large amount of data; you probably have a secondary file (ndf) to save your data. The new feature is to recover large ndf files. Now you have no need to worry about large file recovery, Stellar SQL Recovery can also recover large corrupt ndf files. The SQL Recovery Software should run on copy of the corrupt file.

In any version of SQL Database, if you find any problem to find the corrupt mdf file then you can easily search it by using the "Find Option". Just click on this button & the application find into your system that appears immediately in list view format. You can choose the file that you want to recover from this list. 

The new version of SQL Server Database launched in 2011. Another new feature is- supports to latest version of SQL Server Database that is SQL Server 2008 R2. 

Fast scanning algorithms — you can recover database quickly & accurately without completing the whole recovery. 

In addition to the whole process information, the new set includes separate log report after scanning database which shows all recovery process. I am eager to see how this apps sharing this process in the software. 

You can also recover XML data types and XML indexes with this software.

You cannot save preview of your database in demo version. For this you have to purchase full version of the software.

You can check the preview more than one objects at a time. Click on either one to multiple objects to recover it. Save it quickly and easily on location as you like.

You should perform software updates as soon as they become available. The easiest way for users to update your software is through update button. If you are using software, when an update is available, you can see it by clicking update button the top fifth right button on the software screen. Just click on this button to install the new updates.

If any of option isn’t used by you just yet, don’t worry use it now & give your precious comments about it.

Source : http://data-base-recovery.blogspot.in

Monday, 29 April 2013

5 Free Data Recovery Programs


Discovering you lost important data is one of the worst feelings in the world. Sometimes it’s impossible to get back what you lost, but sometimes it is possible that what you lost still exists somewhere on your hard drive. If it’s there, these five free tools will help you find it.

Recycle
Although many Windows users know about the Recycle Bin, not everyone does. Even more importantly, not everyone knows how it works, so a file might be in the Recycle Bin even though you can’t find it.
When you delete a file on Windows the regular way, Windows doesn’t actually delete it—it moves it to the Recycle Bin. When your hard drive starts to fill up, you can permanentlydelete files from your Recyle Bin.
What many people don’t realize is that Windows can only use the move trick on a single drive. That means there may be more than one Recycle Bin on your computer if you use more than one drive (or you use removable USB drives). If you delete a file from the X:\ drive, you have to check the X:\RECYCLE folder to see if you can get your file back.


Undelete
If you’ve permanently deleted a file relatively recently, you can use special Undelete software to get it back. The problem is that once you permanently delete a file, Windows may write a new file where the old file used to be, so undeleting doesn’t always work. (It works best on a hard drive with a lot of free space.)
There are several free Undelete programs on the Web, such as the one from EaseUS.

ddrescue
Sometimes you lose data not because you deleted it, but because your hard drive is failing. If that’s the case, you can use a tool designed torecover data from a partially failed drive. I use the open source Disk Drive Rescue (ddrescue).

When you run ddrescue, it tries to copy data from every part of your drive in big chunks to get off as much data as possible. When it encounters a problem (because your drive is failing), it makes a note and skips to the next chunk. After it gets as much data off as possible, it goes back and works on the edges of failed chunks to get every single bit of data it can off of your drive.
I’ve used ddrescue to recover over 95% of the data from a failed drive. It also works on scratched CDs and DVDs, and it may also help you with damaged USB drives.

Stellar Phoenix Photo Recovery
Although photos are regular files, so you can recover them with Undelete software, you can also get them off with special photo recovery software. Undelete works by figuring out where your file was before it was deleted. Photo recovery software looks for the signature of photos on your drive, so it can recover photos even after you reformat your drive.

SluethKit
Although not for the faint-of-heart, the SluethKit is collection of tools used by forensic scientists (think CSI) to recover evidence from computers. It contains a number of tools which help recover lost data—even deliberately destroyed data. It isn’t easy to use, but it can be your last resort option.

Courtesy : http://bnjho.blogspot.in/ & http://sapost.blogspot.in/

Monday, 30 July 2012

Breaking The XP Password


HACK COMPUTER PASSWORD
Steps:
Start PC Press F5
Select - Safe Mode
Select - Administrator
Goto - User A/C
Remove Password...

In case of user password boot the pc in safemode by pressing the F8 key and then selecting the Safe Mode option. You can now logon as an administrator and XP wont prompt for the password. Incase of an administrator account try rebooting the pc in DOS. access C:\Windows\system32\config\sam . Rename SAM as SAM.mj
Now XP wont ask for password next time You Login. Also

Go to the cmd prompt .
Type net user *.
It will list all the users.
Again type net user "administrator" or the name of the administrator "name" *.
e.g.: net user aaaaaa *(where aaaaaa is the name).
It will ask for the password.
Type the password and there you are done.
Logging In As Administrator:

Hold the Ctrl-Alt key and press Del twice. This will bring up the normal login and you can log on as Administrator.

To unhide the Administrator account so it does show up:

Start Regedit

Go to HKEY_LOCAL_MACHINE \ SOFTWARE \ Microsoft \ Windows NT \ CurrentVersion \ Winlogon \ SpecialAccou

How to Lock the Computer?

Goto -> RUN -> syskey
then Password save it in Floppy Disk(only ur Password can unlock ur Computer)

Friday, 20 July 2012

How to Repair a SQL Server 2005 Suspect database


Sometimes when you connect to your database server, you may find it in suspect mode. Your database server won’t allow you to perform any operation on that database until the database is repaired.

SQL server database can go in suspect mode for many reasons; some of them are given below:
Improper shutdown of the database server
Corruption of the database files
Unavailable device files
Unavailable database files
Database resource used by operating system
SQL Server incorrectly asserts free data page space when a row is inserted

To get the exact reason of a database going into suspect mode can be found using the following query,

DBCC CHECKDB (‘YourDBname’) WITH NO_INFOMSGS, ALL_ERRORMSGS
Output of the above query will give the errors in the database.
To repair the database, run the following queries in Query Analyzer,
EXEC sp_resetstatus ‘yourDBname’;
ALTER DATABASE yourDBname SET EMERGENCY
DBCC checkdb(‘yourDBname’)
ALTER DATABASE yourDBname SET SINGLE_USER WITH ROLLBACK IMMEDIATE
DBCC CheckDB (‘yourDBname’, REPAIR_ALLOW_DATA_LOSS)
ALTER DATABASE yourDBname SET MULTI_USER
and you are done. 
You should keep one thing in mind while using the above queries that the repair mode used here , REPAIR_ALLOW_DATA_LOSS, is a one way operation i.e. once the database is repaired all the actions performed by these queries can’t be undone. There is no way to go back to the previous state of the database. So as a precautionary step you should take backup of your database before executing above mentioned queries.

Thursday, 19 January 2012

Recovering Scratched CD’s/DVD's


Recover CD/DVD Using Softwares: There are many softwares available on the net, which enable the recovery of the CD data. BadCopy Pro is one such software, which can be used to recover destroyed data and files from a range of media.
Just a few clicks is all it requires to recover the disc from almost all kind of damage situation; be it corrupted, lost data, unreadable or defective.
DiskDoctors is another popular company, which offers both software and solutions to
recover data from a scratched CDs and DVDs
Manual method of recovering data from Scratched cd/dvd:
* Always wipe the CD from the
center outward with straight spoke-like strokes. Wiping CDs in circles will create more scratches.errors.
* Clean your Disc players lens regularly with a suitable product to ensure optimal viewing pleasure.
* Make sure to use a soft, lint-free cloth to clean both sides of the disc. Wipe in a straight line from the centre of the disc to the outer edge.
* If wiping with a cloth does not remove a fingerprint or smudge, use a specialized DVD disc polishing spray to clean the disc.
* Do not scratch the graphics layer as you cannot repair the disc.

HINT: Hold the disc up to a light with the graphics layer facing the light source. If you can see light thru the scratches at any point then the disc may be irreparable and or exhibit loading or playing
Here’s an easy home remedy, which might give you the desired results. Rub a small amount of toothpaste on the scratch and polish the CD with a soft cloth and any petroleum-based polishing solution (like clear shoe polish). Squirt a drop of Brasso and wipe it with a clean cloth.

Courtesy : saparavur.blogspot.com

Monday, 23 May 2011

Registry Mechanic Registry Cleaner

Clean your Windows Registry with one easy download!

The Windows Registry stores information, settings and options for all the hardware, software and preferences on your PC. Since the registry holds so much crucial information, corrupt or invalid entries cause slow computer performance, error messages and even Windows crashes.
Regardless of your computer expertise, PC Tools’ easy-to-use download cleans your registry by scanning and fixing invalid entries. PC Tools Registry Mechanic registry cleaner software backs up any and all repairs, so you can restore your registry at any time.

But PC Tools registry cleaner doesn’t just clean your registry – Registry Mechanic also repairs, optimizes and protects your PC.
Repair. Your Windows Registry gets corrupted during a range of everyday computing activities. Installing and uninstalling software, missing or damaged hardware drivers, and surfing the Internet can all cause registry problems. Registry Mechanic’s advanced algorithm detects and fixes corrupt and invalid registry entries, speeding up and smoothing out your PC experience.
Optimize. Registry Mechanic’s tune-up services improve your PC’s overall performance and stability. Streamline start-up time by turning off non-essential Windows services. Organize and consolidate registry entries to increase system efficiency.
Protect. PC Tools registry cleaner ensures that all traces of your online and computer activities are permanently erased from your PC. Using Department of Defense standards of encryption, Registry Mechanic securely shreds personal files and confidential data making them unrecoverable using regular methods.
Powerful features. Registry Mechanic includes plug-ins to clean the history of more than 100 third-party programs, including chat, image viewers, P2P applications and more. Smart Updates silently and automatically install product upgrades for no-hassle optimization and protection.
Download PC Tools Windows registry cleaner. Stabilize and secure your system today!

Monday, 16 May 2011

Password Recovery Magic Products with Serial



With Password Recovery Magic Products you can:
- Recover passwords for RAR/WinRAR archives
- Recover passwords for ZIP archives
- Recover read-only passwords for Microsoft Office Word


RAR Password Recovery Magic



RAR Password Recovery Magic is a powerful tool designed to recover lost or forgotten passwords for a RAR/WinRAR archives. RAR Password Recovery Magic supports the customizable brute-force and dictionary-based attacks. 


RAR Password Recovery Magic has an easy to use interface. All you need to do to recover your password is just to add your file to the operation window. 


Key Features
- Recover passwords for RAR/WinRAR archives.
- Custom character set for "brute-force" attack supported.
- You can select character from a range of character options including: Letters, Numbers, symbol...
- Large wordlist dictionary.
- Work in the background.
- Features a user-friendly interface.


Download
Name: Martik
Serial: RPRM2699978


ZIP Password Recovery Magic


ZIP Password Recovery Magic is an easy-to-use program that can help you to recover lost passwords for zip archives. ZIP Password Recovery Magic provides brute-force and dictionary recovery methods, you can pause and resume recovery job easily.


ZIP Password Recovery Magic has an easy to use interface. All you need to recover your password is just to add your file to the operation window. 


Key Features
- Recover passwords for ZIP archives and self-extracting ZIP archives.
- Supports brute-force and dictionary recovery methods.
- You can select character from a range of character options including: Letters, Numbers, symbol...
- Pause and resume recovery job easily.
- Work in the background.
- Features a user-friendly interface.


Download
Name: Martik
Serial: ZPRM0015789


Office Password Recovery Magic




Office Password Recovery Magic is password recovery software designed to help users recover the lost or forgotten password. Any office files' read-only passwords can be recovered here. We still can recover *.xls, *.ppt, *.mdb, *.doc and Office 2007 formats files. The easy-to-use interface help users do exact search. Users can set parameters to exact the range of searching password, such as the length of the password and the shape of the password. Users still can using dictionary file, which is a string document to find password more quickly.


You can enjoy full function of recovering password. If you have questions or suggestions about our software, please contact us, we hope to grow up with you together. 


Key Features
- Recover the lost or forgotten password quickly.
- Recover read-only passwords for Microsoft Office Word.
- Recover read-only passwords for Microsoft Office Excel.
- Recover read-only passwords for Microsoft Office PowerPoint.
- Recover read-only passwords for Microsoft Office Access.
- User-friendly interface.


Download
Name: Martik
Serial: OPRM7854681

Monday, 21 March 2011

Remove Write Protection On USB Pen Drive or Memory Card or iPod


problem in copying files on their USB portable devices like pen drives, memory card and iPod etc.



§  Cannot copy files and folders, drive is write protected
§  Cannot format the drive, drive is write protected
§  The disk is write protected
§  Remove write protection or use another disk
§  Media is write protected
Some times people say that suddenly their drive become write protected and they are not able to delete any files and folder on the drive and also not able to copy new files and folder to USB portable drive.
Let’s see how can you remove write protection on your portable devices like pen drives, memory cards, iPod and other USB mass storage devices.
Fix:
Write Protection on any portable USB Device can be applied by the physical lock provided on the card adjuster or some times provided on the pen drives, so make sure to make your drive not write protected by moving the lock in right direction.
But even after moving the physical lock for write protection the problem can happen due to some virus action. This happens when some virus or script which applies the registry hack to make any drive write protect when connected to the computer, In that case follow the procedure below to remove write protection from your pen drive.

1. Open Start Menu >> Run, type regedit and press Enter, this will open the registry editor.
2. Navigate to the following path:
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\StorageDevicePolicies
Note: If the registry key StorageDevicePolicies key does not exist, you will need to create it
Download this batch file called add.bat from here, and double click after download the key will beautomatically added to registry.
3. Double click the key WriteProtect in the right pane and set the value to 0 in the Value Data Box and press OK button

(value 1 to Write protect the USB Pendrive)

4.Exit Registry, restart your computer and then again re-connect your USB pen drive on your computer

Monday, 28 February 2011

Restore point creation Disabled by Group Policy


As a result, you’re unable to create System Restore Points or configure System Restore.

Resolution

This happens if the Turn off Configuration Policy is enabled in your system, either using Group Policy or through registry edit. For standalone Windows Vista systems, use these steps:
Using the Group Policy Editor
If your edition of Windows Vista includes the Group Policy Editor snap-in (gpedit.msc), follow these steps:


1. Click Start, type gpedit.msc and press ENTER
2. Go to the following branch:
Computer Configuration | Administrative Templates | System | System Restore
3. Double-click Turn off Configuration and set it to Not configured.
Note: If the above setting is already set to Not configured, set it to Enabled and click Apply. Then revert back the setting to Not configured, and click Apply, OK.
4. Exit the Group Policy Editor.
Using the Registry Editor
1. Click Start, type regedit.exe and press ENTER
2. Navigate to the following key:
HKEY_LOCAL_MACHINE \ Software \ Policies \ Microsoft \ Windows NT \ SystemRestore
3. In the right-pane, delete the value named DisableConfig
4. Exit the Registry Editor.
Registry Fix
To automate the above setting, download srpol-clear.reg and save to Desktop. Right-click on the file and choose Merge.

More Information

If you set the Turn of configuration option to Enabled, the option to configure System Restore on the Configuration Interface disappears. If the Turn off Configuration setting is disabled, the configuration interface is still visible, but all System Restore configuration defaults are enforced, and the Create button is grayed out. If you set it to Not configured, the configuration interface for System Restore remains, and the user has the ability to configure System Restore

Friday, 28 January 2011

SQL Error - MMC cannot open the file


MMC cannot open the file C:\Program Files\Microsoft SQL Server\80\Tools\BINN\SQL Server Enterprise Manager.MSC.
Upon clicking on the SQL Server Enterprise Manager shortcut the following error occurs:
MMC cannot open the file C:\Program Files\Microsoft SQL Server\80\Tools\BINN\SQL Server Enterprise Manager.MSC.
This may be because the file does not exist, is not an MMC console, or was created by a later version of MMC. This may also be because you do not have sufficient access rights to the file.
The msc file did exist and I definately has permissions to it.  So I can only assume it some how got corrupt.
The solution to this is fairly simple... either get another copy of this file, or create one, as follows:
1.     Select Start - Run.
2.     At the Open prompt enter: mmc
3.     Click OK
4.     Select File - Add/Remove Snap-in...
5.     Click Add...
6.     Select Microsoft SQL Enterprise Manager
7.     Click Add, then Close
8.     Click Ok to return to the mmc.
9.     Select File - Save As...
10.  Delete or rename the original (offending) file out the way.
11.  Save the new msc file as C:\Program Files\Microsoft SQL Server\80\Tools\BINN\SQL Server Enterprise Manager.MSC
Now your original shortcut should work.
Alternatively you can always access Enterprise Manager from within the Computer Management mmc.

Alternate Method
at command-line:

RegSvr32 MSXML.DLL
RegSvr32 MSXML2.DLL
RegSvr32 MSXML3.DLL 

or

regsvr32 C:\Windows\system32\msxml.dll
regsvr32 C:\Windows\system32\msxml2.dll
regsvr32 C:\Windows\system32\msxml3.dll

Wednesday, 29 December 2010

Recover Lost Data and Deleted Files From Hard Disk, Pen Drive, etc

Data is the most precious part of a computer, especially on a computer which you have been using for a while. Most of us store photographs of friends and family, work related documents, personal and professional data on out computers.


What will happen if you loose this data because of some incident like accidentally deleting the data, Virus Infection, software or hardware corruption, disk level failures etc. ? In this digital age, its no less than a nightmare to loose your data.

Thankfully there are some ways of avoiding and recovering such losses. To avoid such loss, we strongly recommend that you backup your data regularlyusing some external disk or reliable online backup service. In this post we will show you a free tool to recover any accidentally deleted file. This tool is calledUndelete 360 and it recovers a variety of files which might have got deleted due to accidental deletion, virus problem, hardware or software problems. There is a portable version of this tool available which can be used without installing it on the computer.

The most important things to keep in mind when you are using this tool are:
  1. DO NOT install Undelete 360 on the same drive from which you want to recover files.
  2. DO NOT use the disk or save any data on the disk from which you want to recover data, this will help to avoid any overwriting of the deleted files.
All you need to do is to select the disk and click Start

It will scan and will list all the files by the file type and you can select the files you want to recover and it will attempt to recover the selected files.

NOTE – Data recovery tools are not fool proof and may not recover all deleted files, however if the disk has not been used after the deletion, the chances of recovery are high but there is no guarantee of Data recovery.





Saturday, 18 September 2010

Windows Registry Editor, Task Manager Problem

Registry editing has been disabled by your administrator” - Error you get when you try to open the Registry Editor in Windows XP, Windows 2000, Windows Vista and prevents access to registry editing.

If you are unable to access your regitry editor by typing REGEDIT.exe in Run Dialog then read following tips to quickly access disabled registry access. 

Tip 1
Download Registry Fix tool to enable disabled registry access. Click Fix Registry and your registry access is enabled immediately.

Tip 2
Following tip is extremely helpful, and usually necessary in helping to rid your computer of a viral infection, which has disabled your registry access.  Many virus programs will intercept registry access, based on its original file name (regedit.exe), and prevent them from running.  The alternate copies of theis file will not encounter this problem. 

Simply navigate to the C:\Windows and locate regedit.exe .
Once located rename regedit.exe to some other name (e.g. new_reg.exe) and double click the file to run.


Task Manager Fix is a FREEWARE system utility to fix task manager disabled by spywares, trojans and displays error message : Task Manager has been disabled by your administrator“, which blocks access to Windows Task Manager.
When you try to open Windows Task Manager, by pressing CTRL+ALT+DEL the following error often appear:
Task Manager has been disabled by your administrator
INSTANT solution to common problem“Task Manager Not Working”


This error message appears due to restriction placed in the Windows Registry. One can easily enable Task Manager by editing some registry settings. For a normal user editing registry is not easy and a bit risky.
Task Manager Fix is designed to enable disabled Task Manager. Download the FREE Task Manager Fix tool to quickly enable Task Manager. Handy windows system recovery tool to remove task manager restrictions and effective solution to the problem – “Task Manager not Working”.


  Download Registry Fix