- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic to the Top
- Bookmark
- Subscribe
- Printer Friendly Page
How to remove Chat history for a single contact
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Link to this reply
- Email to a Friend
- Report Inappropriate Content
28-12-2011 14:53
I'm not sure about removing chat history for a single contact any trick or executable that can do the job for me.
Mark Nett.
FOunder
Re: How to remove Chat history for a single contact
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Link to this reply
- Email to a Friend
- Report Inappropriate Content
28-12-2011 17:15
Unfortunately, You cannot. It is not possible yet. By default Skype only deletes full chat history.
Tamim
__________________________________________________________________________________________
Location - Dhaka | Bangladesh - Standard Time Zone: GMT/UTC + 06:00 hour
If one of my replies has adequately addressed your issue, please click on the “Accept as Solution” button. If you found a post useful then please "Give Kudos" at the bottom of my post, so that this information can benefit others.
Re: How to remove Chat history for a single contact
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Link to this reply
- Email to a Friend
- Report Inappropriate Content
28-12-2011 17:30
There is a 3rd party application, called SkypeX, which you can use to delete selected chat messages from your computer:
http://bryancockerham.com/skypex-delete-skype-messages
Actually, you can do the same using any Sqlite database editor (e.g. SQLite Database Browser; http:/sqlitebrowser.sourceforge.net), but this requires some knowledge of the SQL language commands.
In any case, note that the chat messages will only be deleted from your own computer and will still be readable on your contacts devices.
Re: How to remove Chat history for a single contact
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Link to this reply
- Email to a Friend
- Report Inappropriate Content
03-01-2012 00:47
That program is Windows specific , what about removing the chat history for a single contact on the MAC version ?
Re: How to remove Chat history for a single contact
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Link to this reply
- Email to a Friend
- Report Inappropriate Content
10-04-2012 11:47
1) Make backup of your skype database "main.db" located in C:\Users\PROFILE NAME\AppData\Roaming\Skype\SKYPE LOGIN ID
2) Use SQLLite and open the database
3) Run a new query as follows :
DELETE * FROM "Messages"where dialog_partner = "skype name"
4) Please note skype name will the login ID of the user who's messages are to be deleted.
enjoy...
Re: How to remove Chat history for a single contact
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Link to this reply
- Email to a Friend
- Report Inappropriate Content
14-04-2012 23:01
The above syntax does not work in SQLLite for me.
Also, how do you remove history from a group chat?
Re: How to remove Chat history for a single contact
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Link to this reply
- Email to a Friend
- Report Inappropriate Content
14-04-2012 23:36
colliberry wrote:The above syntax does not work in SQLLite for me.
Also, how do you remove history from a group chat?
You may try with this command
DELETE FROM Messages where dialog_partner = “skype user name”
Replace skype user name by the exact Skype name of your conversation partner.
The same syntax applies for group chats. You can just replace dialog_partner by e.g. chatname, author or any other column name that has unique values for the records that you want to delete.
Re: How to remove Chat history for a single contact
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Link to this reply
- Email to a Friend
- Report Inappropriate Content
09-05-2012 10:54
Re: How to remove Chat history for a single contact
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Link to this reply
- Email to a Friend
- Report Inappropriate Content
09-05-2012 11:13
deefern wrote:
Is there a way to remove the conversation so that the other person cannot see the history either?
No. No way to do this.
Re: How to remove Chat history for a single contact
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Link to this reply
- Email to a Friend
- Report Inappropriate Content
05-06-2012 06:06
