Two Plus Two Newer Archives  

Go Back   Two Plus Two Newer Archives > Internet Gambling > Software
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools Display Modes
  #1  
Old 04-11-2007, 12:48 AM
BlueBear BlueBear is offline
Senior Member
 
Join Date: Apr 2003
Posts: 1,337
Default How to work out who\'s multitabling from raw PT stats?

As a multi-tabler (12 tables) myself with a largish PT database, is there any statistical method that I can work approximately how many tables they are playing at one go from raw PT stats?

Feedback much appreciated.
Reply With Quote
  #2  
Old 04-11-2007, 01:52 PM
MSPChris MSPChris is offline
Member
 
Join Date: Mar 2005
Posts: 70
Default Re: How to work out who\'s multitabling from raw PT stats?

A lot depends on the site you are collecting data from. If the site you're playing on support data collection, you can set your preferences so that you are filtering over only the past couple of hours.

Set the filter, and go to the Summary tab -- you can see how many sessions a player is playing at a given time. when you see a player with a large number of sessions, you can select that player to see exactly where and when they're playing, and how they are doing.
Reply With Quote
  #3  
Old 04-11-2007, 01:56 PM
MSPChris MSPChris is offline
Member
 
Join Date: Mar 2005
Posts: 70
Default Re: How to work out who\'s multitabling from raw PT stats?

More....

Here's a postgres query that I use to identify big current losers -- you can sort this data differently to find multi-tablers, etc.

Notes on the query:

1) you will have to find the correct value for game_level_id in your own PT database (you can get that value from PT itself

2) sort the results on screen_name to find mulit-tablers, and more importantly, multi-tablers that are running badly.



SELECT session.session_id,
players.screen_name,
session.session_start,
session.session_end,
session.table_name,
game_level.game_level_desc,
session.seat_number,
session.amount_won as amt_won,
session.total_hands
FROM session, game_level, players, poker_sites
WHERE session.game_level_id = game_level.game_level_id AND
session.player_id = players.player_id AND
session.site_id = poker_sites.site_id AND ( session.game_level_id IN (18) ) AND ((session.session_start > '2007-04-05 17:00:00'))
order by table_name, amt_won
Reply With Quote
  #4  
Old 04-11-2007, 01:57 PM
MSPChris MSPChris is offline
Member
 
Join Date: Mar 2005
Posts: 70
Default Re: How to work out who\'s multitabling from raw PT stats?

One more note....

The thing i hate about the query up above is that my [censored] screen name keep showing up at the top of the list.

I think it's a bug... but I'm working on it.... [img]/images/graemlins/smile.gif[/img]
Reply With Quote
  #5  
Old 04-11-2007, 03:05 PM
TheIrishThug TheIrishThug is offline
Senior Member
 
Join Date: Jan 2005
Location: Belligerent and numerous
Posts: 1,819
Default Re: How to work out who\'s multitabling from raw PT stats?

Not tested, but should be what you need.

<font class="small">Code:</font><hr /><pre>SELECT session.session_id,
players.screen_name,
session.session_start,
session.session_end,
session.table_name,
game_level.game_level_desc,
session.seat_number,
session.amount_won as amt_won,
session.total_hands
FROM session, game_level, players, poker_sites
WHERE session.game_level_id = game_level.game_level_id AND
session.player_id = players.player_id AND
session.player_id &lt;&gt; (SELECT player_id FROM players WHERE screen_name = 'YOUR_SCREEN_NAME')
session.site_id = poker_sites.site_id AND ( session.game_level_id IN (18) ) AND ((session.session_start &gt; '2007-04-05 17:00:00'))
order by table_name, amt_won [/CODE]
Reply With Quote
  #6  
Old 04-11-2007, 06:10 PM
MSPChris MSPChris is offline
Member
 
Join Date: Mar 2005
Posts: 70
Default Re: How to work out who\'s multitabling from raw PT stats?

Irish -- i'm really sorry....

Thank you for the help but if you notice the order by clause, i usually run it with amt_won sorted first...

because of the default sort order, the biggest losers show up at the top.

That's why my name is up there when I run the query... I meant the last post as a joke.

Thank you for taking the time to answer though. Again i'm sorry....

(I tried to PM this to you but your inbox was full....)
Reply With Quote
  #7  
Old 04-11-2007, 07:02 PM
TheIrishThug TheIrishThug is offline
Senior Member
 
Join Date: Jan 2005
Location: Belligerent and numerous
Posts: 1,819
Default Re: How to work out who\'s multitabling from raw PT stats?

My reading comprehension, poor, imo.

Thanks for letting me know about the pm box.
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 01:42 PM.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2024, vBulletin Solutions Inc.