export notes to HM1
Page 1 of 3 123 LastLast
Results 1 to 10 of 22
  1. #1
    Member
    Join Date
    Apr 2009
    Posts
    50

    Default export notes to HM1

    Is it possible to export my notes to HM1? im playing on a site that runs better on HM1 and i have a lot of notes to move over

  2. #2
    HM Support Patvs's Avatar
    Join Date
    Feb 2009
    Location
    Amsterdam, the Netherlands
    Posts
    33,523

    Default

    Unfortunately this is NOT possible. HM2 isn't forward-compatible.

    In fact, at the moment it's not even backward-compatible as HM2 also is unable to import a HM1-exportednotes file, but this will be fixed as soon as possible. (and as a temporary solution you can run a import from database on the entire HM1 database, which will also import the notes)
    Participate in the Beta release of the newest Hold'em Manager version: HM Cloud. Sign-up HERE.

    If you would like to leave some feedback to help us improve the quality of the solutions, and/or the support quality you received, - you can do this here

  3. #3
    Member
    Join Date
    Apr 2009
    Posts
    50

    Default

    Quote Originally Posted by Patvs View Post
    Unfortunately this is NOT possible. HM2 isn't forward-compatible.

    In fact, at the moment it's not even backward-compatible as HM2 also is unable to import a HM1-exportednotes file, but this will be fixed as soon as possible. (and as a temporary solution you can run a import from database on the entire HM1 database, which will also import the notes)
    is there a way i can open my notes in a XML or txt in hm2 so that i can ctrl+f the player during my first few sessions and just transfer them one by one?

  4. #4
    *** HM3! *** fozzy71's Avatar
    Join Date
    Jun 2005
    Location
    HM Support
    Posts
    32,809

    Default

    Quote Originally Posted by rkt1337 View Post
    is there a way i can open my notes in a XML or txt in hm2 so that i can ctrl+f the player during my first few sessions and just transfer them one by one?
    No, this is not possible. The notes are part of the PostgreSQL database and not contained in any txt/xml type of file.

  5. #5
    Member
    Join Date
    Jan 2012
    Posts
    55

    Default

    Quote Originally Posted by fozzy71 View Post
    No, this is not possible. The notes are part of the PostgreSQL database and not contained in any txt/xml type of file.
    What about editing the database with some queries? Could you say where are exactly the notes and which tables should be edit?

  6. #6
    *** HM3! *** fozzy71's Avatar
    Join Date
    Jun 2005
    Location
    HM Support
    Posts
    32,809

    Default

    Quote Originally Posted by CuoReNeRo View Post
    What about editing the database with some queries? Could you say where are exactly the notes and which tables should be edit?
    This is well beyond our first level support and I have very limited PGAdmin knowledge. I have escalated this to our 2nd level support techs and have explained the issues you are having but I am not sure if what you want to achieve is even possible. If it is actually possible it will likely be very complicated and time consuming. Once we have more info we will reply here but I am not sure how long that will take.

    Here are the instructions for how to do it in HM1 but this is a bit beyond me so I have forwarded it to the rest of our team to see if we can possibly do the same thing - http://forums.holdemmanager.com/mana...tml#post149891

  7. #7
    Holdem Manager Support Sarek's Avatar
    Join Date
    May 2010
    Location
    Eridani 40
    Posts
    22,519

    Default

    Did some research: it IS possible to extract notes from HM2 database and to prepare them in HM1 "notes_in_file" format
    * start - programs - postgresql - pgadmin
    * dbl-click on server (enter password) and find your DB
    * expand to schemas - public - tables
    * right-click on ANY tablename - Scriprts - SELECT script
    * delete all text and type (or copy/paste) this

    Code:
    SELECT p.playername, p.pokersite_id, n.note, n.icon_id
      FROM player_notes n, players p  where n.player_id = p.player_id and category_id = 5;
    * press F5
    * In that Query window do menuitem
    File - export
    set there: Row separator = CR/LF, No qouting, charset = UTF8, untick "column names", leave column separator to "|"
    see picture
    hm2notesexp.jpg

    * save file as CSV = you have extracted notes
    * but now you need to format them exactly as in HM exported file - change separator and some, delete headers etc
    Because "original" HM1 file with exported notes looks so:
    Code:
    ----PLAYER NOTE----
    PEELII~|~2~|~note1~|~-1
    ----PLAYER NOTE----
    kmccarron~|~2~|~~|~6
    ----PLAYER NOTE----
    whitecorax~|~2~|~note and mark~|~6
    But file you just got looks like this
    Code:
    AlfenNnn|4|note1|0
    mato818|4|note adn mark|0
    So you need to change separators between values
    and to insert a kind of "separator" between lines
    This all can easy be done in any text editor.
    But do not forget to save resulting file as "plain text"
    Then rename it to
    ExportedNotes.HMNotes
    and import in HM1

    The only thing I am not sure right now is: are Pokersites numbered is same order in HM1 and HM2.
    IMO, odds = 90% order and IDs are the same.
    Just try
    Last edited by Sarek; 09-25-2012 at 03:29 PM.

  8. #8
    Member
    Join Date
    Jan 2012
    Posts
    55

    Default

    I'll try it tomorrow or when i'll have some spare. Really THANKS for your explanation, i'll let you know if it works.


  9. #9
    Member
    Join Date
    Jan 2012
    Posts
    55

    Default

    --- EDITED ---

    IT WORKED.

    Thanks a lot.
    Last edited by CuoReNeRo; 09-27-2012 at 02:37 PM.

  10. #10
    *** HM3! *** fozzy71's Avatar
    Join Date
    Jun 2005
    Location
    HM Support
    Posts
    32,809

    Default

    Thank you for letting us know it worked for you.

Similar Threads

  1. How to export notes from HEM 2 into HEM 1
    By ECart in forum General Support
    Replies: 7
    Last Post: 09-25-2012, 03:27 PM
  2. export notes
    By butyone in forum General Support
    Replies: 1
    Last Post: 03-14-2012, 05:34 PM
  3. How to export notes to HM2?
    By LeRoy in forum General Support
    Replies: 8
    Last Post: 01-07-2012, 05:11 AM
  4. export notes to PS ?
    By runhot in forum Manager General
    Replies: 1
    Last Post: 12-10-2009, 08:30 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •