<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>Question Re: Max User Query? in Technology Q&amp;A</title>
    <link>https://community.sap.com/t5/technology-q-a/max-user-query/qaa-p/13823260#M4854103</link>
    <description>&lt;P&gt;Shorter form: "AND dbnumber = DB_ID()"&lt;/P&gt;</description>
    <pubDate>Thu, 22 Mar 2012 05:13:48 GMT</pubDate>
    <dc:creator>former_SQLA_member1694875</dc:creator>
    <dc:date>2012-03-22T05:13:48Z</dc:date>
    <item>
      <title>Max User Query?</title>
      <link>https://community.sap.com/t5/technology-q-a/max-user-query/qaq-p/13823248</link>
      <description>&lt;P&gt;How would you figure out what how many users were ever logged in at the same time?&lt;/P&gt;
&lt;P&gt;I am trying to come up with some testing scenarios for our software, and I know how many users there are total for a given site, and therefore how many possibly could be logged in at the same time.  But I was wondering if there was a counter in the DB that I could query that kept track of how many actually ever were logged in at the same time historically.&lt;BR /&gt;
&lt;/P&gt;</description>
      <pubDate>Wed, 21 Mar 2012 11:52:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/max-user-query/qaq-p/13823248</guid>
      <dc:creator>former_SQLA_member1694868</dc:creator>
      <dc:date>2012-03-21T11:52:34Z</dc:date>
    </item>
    <item>
      <title>Re: Max User Query?</title>
      <link>https://community.sap.com/t5/technology-q-a/max-user-query/qaa-p/13823249#M4854092</link>
      <description>&lt;P&gt;There is no property to tell you this information, but try using a connect event to count the number of users.  For example:&lt;/P&gt;
&lt;DIV class="codehilite"&gt;&lt;PRE&gt;&lt;SPAN class="n"&gt;create&lt;/SPAN&gt; &lt;SPAN class="n"&gt;table&lt;/SPAN&gt; &lt;SPAN class="n"&gt;dba&lt;/SPAN&gt;&lt;SPAN class="o"&gt;.&lt;/SPAN&gt;&lt;SPAN class="n"&gt;max_connected_users&lt;/SPAN&gt; &lt;SPAN class="p"&gt;(&lt;/SPAN&gt;
       &lt;SPAN class="n"&gt;on_date&lt;/SPAN&gt;   &lt;SPAN class="n"&gt;date&lt;/SPAN&gt;&lt;SPAN class="p"&gt;,&lt;/SPAN&gt;
       &lt;SPAN class="n"&gt;max_users&lt;/SPAN&gt; &lt;SPAN class="nb"&gt;int&lt;/SPAN&gt;&lt;SPAN class="p"&gt;,&lt;/SPAN&gt;
       &lt;SPAN class="n"&gt;primary&lt;/SPAN&gt; &lt;SPAN class="n"&gt;key&lt;/SPAN&gt;&lt;SPAN class="p"&gt;(&lt;/SPAN&gt; &lt;SPAN class="n"&gt;on_date&lt;/SPAN&gt; &lt;SPAN class="p"&gt;)&lt;/SPAN&gt;
&lt;SPAN class="p"&gt;);&lt;/SPAN&gt;

&lt;SPAN class="n"&gt;create&lt;/SPAN&gt; &lt;SPAN class="n"&gt;event&lt;/SPAN&gt; &lt;SPAN class="n"&gt;dba&lt;/SPAN&gt;&lt;SPAN class="o"&gt;.&lt;/SPAN&gt;&lt;SPAN class="n"&gt;Count_Max_Connected_Users&lt;/SPAN&gt;
  &lt;SPAN class="n"&gt;type&lt;/SPAN&gt; &lt;SPAN class="n"&gt;Connect&lt;/SPAN&gt;
&lt;SPAN class="n"&gt;handler&lt;/SPAN&gt;
  &lt;SPAN class="n"&gt;begin&lt;/SPAN&gt;
    &lt;SPAN class="n"&gt;declare&lt;/SPAN&gt; &lt;SPAN class="nv"&gt;@num&lt;/SPAN&gt;   &lt;SPAN class="nb"&gt;int&lt;/SPAN&gt;&lt;SPAN class="p"&gt;;&lt;/SPAN&gt;
    &lt;SPAN class="n"&gt;declare&lt;/SPAN&gt; &lt;SPAN class="nv"&gt;@today&lt;/SPAN&gt; &lt;SPAN class="n"&gt;date&lt;/SPAN&gt; &lt;SPAN class="o"&gt;=&lt;/SPAN&gt; &lt;SPAN class="n"&gt;today&lt;/SPAN&gt;&lt;SPAN class="p"&gt;();&lt;/SPAN&gt;

    &lt;SPAN class="nb"&gt;select&lt;/SPAN&gt; &lt;SPAN class="n"&gt;count&lt;/SPAN&gt;&lt;SPAN class="p"&gt;(&lt;/SPAN&gt;&lt;SPAN class="o"&gt;*&lt;/SPAN&gt;&lt;SPAN class="p"&gt;)&lt;/SPAN&gt;
      &lt;SPAN class="n"&gt;into&lt;/SPAN&gt; &lt;SPAN class="nv"&gt;@num&lt;/SPAN&gt;
      &lt;SPAN class="n"&gt;from&lt;/SPAN&gt; &lt;SPAN class="n"&gt;sa_conn_info&lt;/SPAN&gt;&lt;SPAN class="p"&gt;()&lt;/SPAN&gt;
     &lt;SPAN class="n"&gt;where&lt;/SPAN&gt; &lt;SPAN class="n"&gt;number&lt;/SPAN&gt; &lt;SPAN class="o"&gt;&amp;lt;&lt;/SPAN&gt; &lt;SPAN class="mi"&gt;1000000000&lt;/SPAN&gt;&lt;SPAN class="p"&gt;;&lt;/SPAN&gt;

    &lt;SPAN class="n"&gt;merge&lt;/SPAN&gt;
     &lt;SPAN class="n"&gt;into&lt;/SPAN&gt; &lt;SPAN class="n"&gt;max_connected_users&lt;/SPAN&gt;
       &lt;SPAN class="n"&gt;as&lt;/SPAN&gt; &lt;SPAN class="n"&gt;cv&lt;/SPAN&gt;&lt;SPAN class="p"&gt;(&lt;/SPAN&gt; &lt;SPAN class="n"&gt;on_date&lt;/SPAN&gt;&lt;SPAN class="p"&gt;,&lt;/SPAN&gt; &lt;SPAN class="n"&gt;max_users&lt;/SPAN&gt; &lt;SPAN class="p"&gt;)&lt;/SPAN&gt;
    &lt;SPAN class="n"&gt;using&lt;/SPAN&gt; &lt;SPAN class="p"&gt;(&lt;/SPAN&gt; &lt;SPAN class="nb"&gt;select&lt;/SPAN&gt; &lt;SPAN class="nv"&gt;@today&lt;/SPAN&gt; &lt;SPAN class="n"&gt;as&lt;/SPAN&gt; &lt;SPAN class="n"&gt;on_date&lt;/SPAN&gt;&lt;SPAN class="p"&gt;,&lt;/SPAN&gt;
                   &lt;SPAN class="nv"&gt;@num&lt;/SPAN&gt;   &lt;SPAN class="n"&gt;as&lt;/SPAN&gt; &lt;SPAN class="n"&gt;max_users&lt;/SPAN&gt; &lt;SPAN class="p"&gt;)&lt;/SPAN&gt; &lt;SPAN class="n"&gt;nv&lt;/SPAN&gt;
       &lt;SPAN class="n"&gt;on&lt;/SPAN&gt; &lt;SPAN class="n"&gt;cv&lt;/SPAN&gt;&lt;SPAN class="o"&gt;.&lt;/SPAN&gt;&lt;SPAN class="n"&gt;on_date&lt;/SPAN&gt; &lt;SPAN class="o"&gt;=&lt;/SPAN&gt; &lt;SPAN class="n"&gt;nv&lt;/SPAN&gt;&lt;SPAN class="o"&gt;.&lt;/SPAN&gt;&lt;SPAN class="n"&gt;on_date&lt;/SPAN&gt;
     &lt;SPAN class="n"&gt;when&lt;/SPAN&gt; &lt;SPAN class="n"&gt;matched&lt;/SPAN&gt; &lt;SPAN class="k"&gt;then&lt;/SPAN&gt; &lt;SPAN class="n"&gt;update&lt;/SPAN&gt;
      &lt;SPAN class="n"&gt;set&lt;/SPAN&gt; &lt;SPAN class="n"&gt;cv&lt;/SPAN&gt;&lt;SPAN class="o"&gt;.&lt;/SPAN&gt;&lt;SPAN class="n"&gt;max_users&lt;/SPAN&gt; &lt;SPAN class="o"&gt;=&lt;/SPAN&gt; &lt;SPAN class="k"&gt;if&lt;/SPAN&gt; &lt;SPAN class="n"&gt;cv&lt;/SPAN&gt;&lt;SPAN class="o"&gt;.&lt;/SPAN&gt;&lt;SPAN class="n"&gt;max_users&lt;/SPAN&gt; &lt;SPAN class="o"&gt;&amp;lt;&lt;/SPAN&gt; &lt;SPAN class="n"&gt;nv&lt;/SPAN&gt;&lt;SPAN class="o"&gt;.&lt;/SPAN&gt;&lt;SPAN class="n"&gt;max_users&lt;/SPAN&gt;
                         &lt;SPAN class="k"&gt;then&lt;/SPAN&gt; &lt;SPAN class="n"&gt;nv&lt;/SPAN&gt;&lt;SPAN class="o"&gt;.&lt;/SPAN&gt;&lt;SPAN class="n"&gt;max_users&lt;/SPAN&gt;
                         &lt;SPAN class="k"&gt;else&lt;/SPAN&gt; &lt;SPAN class="n"&gt;cv&lt;/SPAN&gt;&lt;SPAN class="o"&gt;.&lt;/SPAN&gt;&lt;SPAN class="n"&gt;max_users&lt;/SPAN&gt;
                         &lt;SPAN class="n"&gt;endif&lt;/SPAN&gt;
     &lt;SPAN class="n"&gt;when&lt;/SPAN&gt; &lt;SPAN class="ow"&gt;not&lt;/SPAN&gt; &lt;SPAN class="n"&gt;matched&lt;/SPAN&gt; &lt;SPAN class="k"&gt;then&lt;/SPAN&gt; &lt;SPAN class="n"&gt;insert&lt;/SPAN&gt;&lt;SPAN class="p"&gt;;&lt;/SPAN&gt;
    &lt;SPAN class="n"&gt;commit&lt;/SPAN&gt;&lt;SPAN class="p"&gt;;&lt;/SPAN&gt;
  &lt;SPAN class="n"&gt;end&lt;/SPAN&gt;&lt;SPAN class="p"&gt;;&lt;/SPAN&gt;
&lt;/PRE&gt;&lt;/DIV&gt;


&lt;P&gt;Once this event is created it will insert/update the max_connected_users table to have one row per day indicating the maximum number of concurrently connected users on each day.&lt;/P&gt;</description>
      <pubDate>Wed, 21 Mar 2012 13:12:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/max-user-query/qaa-p/13823249#M4854092</guid>
      <dc:creator>MarkCulp</dc:creator>
      <dc:date>2012-03-21T13:12:32Z</dc:date>
    </item>
    <item>
      <title>Re: Max User Query?</title>
      <link>https://community.sap.com/t5/technology-q-a/max-user-query/qaa-p/13823252#M4854095</link>
      <description>&lt;P&gt;What about...&lt;/P&gt;
&lt;DIV class="codehilite"&gt;&lt;PRE&gt;&lt;SPAN class="k"&gt;when&lt;/SPAN&gt; &lt;SPAN class="n"&gt;matched&lt;/SPAN&gt; &lt;SPAN class="k"&gt;and&lt;/SPAN&gt; &lt;SPAN class="n"&gt;cv&lt;/SPAN&gt;&lt;SPAN class="p"&gt;.&lt;/SPAN&gt;&lt;SPAN class="n"&gt;max_users&lt;/SPAN&gt; &lt;SPAN class="o"&gt;&amp;lt;&lt;/SPAN&gt; &lt;SPAN class="n"&gt;nv&lt;/SPAN&gt;&lt;SPAN class="p"&gt;.&lt;/SPAN&gt;&lt;SPAN class="n"&gt;max_users&lt;/SPAN&gt; &lt;SPAN class="k"&gt;then&lt;/SPAN&gt; &lt;SPAN class="k"&gt;update&lt;/SPAN&gt;
&lt;SPAN class="k"&gt;when&lt;/SPAN&gt; &lt;SPAN class="k"&gt;not&lt;/SPAN&gt; &lt;SPAN class="n"&gt;matched&lt;/SPAN&gt; &lt;SPAN class="k"&gt;then&lt;/SPAN&gt; &lt;SPAN class="k"&gt;insert&lt;/SPAN&gt;&lt;SPAN class="p"&gt;;&lt;/SPAN&gt;
&lt;/PRE&gt;&lt;/DIV&gt;</description>
      <pubDate>Wed, 21 Mar 2012 13:21:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/max-user-query/qaa-p/13823252#M4854095</guid>
      <dc:creator>VolkerBarth</dc:creator>
      <dc:date>2012-03-21T13:21:41Z</dc:date>
    </item>
    <item>
      <title>Re: Max User Query?</title>
      <link>https://community.sap.com/t5/technology-q-a/max-user-query/qaa-p/13823253#M4854096</link>
      <description>&lt;P&gt;Catch 22... sa_conn_info() lists connections on all databases, but the Connect event fires only on one database, and the max_connected_users exists on only one database.&lt;/P&gt;</description>
      <pubDate>Wed, 21 Mar 2012 13:53:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/max-user-query/qaa-p/13823253#M4854096</guid>
      <dc:creator>Breck_Carter</dc:creator>
      <dc:date>2012-03-21T13:53:55Z</dc:date>
    </item>
    <item>
      <title>Re: Max User Query?</title>
      <link>https://community.sap.com/t5/technology-q-a/max-user-query/qaa-p/13823250#M4854093</link>
      <description>&lt;P&gt;An old-school solution for the maximum number of connections to &lt;STRONG&gt;this database&lt;/STRONG&gt;...&lt;/P&gt;
&lt;PRE&gt;CREATE TABLE max_connected_users ( 
   on_date         DATE NOT NULL PRIMARY KEY,
   max_connections INTEGER NOT NULL );

CREATE EVENT record_max_connections TYPE CONNECT HANDLER
BEGIN

INSERT max_connected_users
   ON EXISTING SKIP
   VALUES ( CURRENT DATE, 0 );

UPDATE max_connected_users
      SET max_connections = GREATER ( max_connections, DB_PROPERTY ( 'ConnCount' ) )
    WHERE on_date = CURRENT DATE;

END;
&lt;/PRE&gt;</description>
      <pubDate>Wed, 21 Mar 2012 14:07:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/max-user-query/qaa-p/13823250#M4854093</guid>
      <dc:creator>Breck_Carter</dc:creator>
      <dc:date>2012-03-21T14:07:25Z</dc:date>
    </item>
    <item>
      <title>Re: Max User Query?</title>
      <link>https://community.sap.com/t5/technology-q-a/max-user-query/qaa-p/13823254#M4854097</link>
      <description>&lt;P&gt;Yep, you are correct. The query that counts the number of connected users would need to be adjusted ... to count what you (as the developer) wants to count.  As written it counts the number of users that are connected to the server (which is also what the server counts for its licensing checking... depending on your license type!).  If you want to only count the current database then you need to add "AND dbnumber = ( select number from ( select number, db_name(number) as dbname  from sa_db_list() where dbname = db_property('name') ) dt )"&lt;/P&gt;</description>
      <pubDate>Wed, 21 Mar 2012 14:24:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/max-user-query/qaa-p/13823254#M4854097</guid>
      <dc:creator>MarkCulp</dc:creator>
      <dc:date>2012-03-21T14:24:15Z</dc:date>
    </item>
    <item>
      <title>Re: Max User Query?</title>
      <link>https://community.sap.com/t5/technology-q-a/max-user-query/qaa-p/13823255#M4854098</link>
      <description>&lt;P&gt;Yep, that would work too.&lt;/P&gt;</description>
      <pubDate>Wed, 21 Mar 2012 14:29:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/max-user-query/qaa-p/13823255#M4854098</guid>
      <dc:creator>MarkCulp</dc:creator>
      <dc:date>2012-03-21T14:29:45Z</dc:date>
    </item>
    <item>
      <title>Re: Max User Query?</title>
      <link>https://community.sap.com/t5/technology-q-a/max-user-query/qaa-p/13823256#M4854099</link>
      <description>&lt;P&gt;Note that the ConnCount database property counts more than just user connections - it includes event connections and external environment connections.&lt;/P&gt;</description>
      <pubDate>Wed, 21 Mar 2012 14:47:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/max-user-query/qaa-p/13823256#M4854099</guid>
      <dc:creator>MarkCulp</dc:creator>
      <dc:date>2012-03-21T14:47:05Z</dc:date>
    </item>
    <item>
      <title>Re: Max User Query?</title>
      <link>https://community.sap.com/t5/technology-q-a/max-user-query/qaa-p/13823257#M4854100</link>
      <description>&lt;P&gt;FWIW, according to my understanding of license details (which might be inappropriate...), one could also count "different users" or connections from "different machines":&lt;/P&gt;
&lt;P&gt;Some applications will use several connections per user in parallel, say to separate read-only and write access. Therefore one might want to add some kind of grouping to the &lt;EM&gt;sa_conn_info()&lt;/EM&gt; result, say by &lt;EM&gt;UserID&lt;/EM&gt; or &lt;EM&gt;NodeAddr&lt;/EM&gt;.&lt;/P&gt;
&lt;P&gt;Just my 2 cents.&lt;/P&gt;</description>
      <pubDate>Thu, 22 Mar 2012 04:32:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/max-user-query/qaa-p/13823257#M4854100</guid>
      <dc:creator>VolkerBarth</dc:creator>
      <dc:date>2012-03-22T04:32:37Z</dc:date>
    </item>
    <item>
      <title>Re: Max User Query?</title>
      <link>https://community.sap.com/t5/technology-q-a/max-user-query/qaa-p/13823258#M4854101</link>
      <description>&lt;P&gt;IMHO, the - small - advantage would be that it&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;is shorter and&lt;/LI&gt;
&lt;LI&gt;would only do an "update" if there's need to.&lt;/LI&gt;
&lt;/UL&gt;</description>
      <pubDate>Thu, 22 Mar 2012 04:34:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/max-user-query/qaa-p/13823258#M4854101</guid>
      <dc:creator>VolkerBarth</dc:creator>
      <dc:date>2012-03-22T04:34:59Z</dc:date>
    </item>
    <item>
      <title>Re: Max User Query?</title>
      <link>https://community.sap.com/t5/technology-q-a/max-user-query/qaa-p/13823259#M4854102</link>
      <description>&lt;P&gt;&lt;A href="https://sqlanywhere-forum.sap.com/users/2/breck-carter/"&gt;@Breck&lt;/A&gt;: "Old-school" - so you don't code MERGE all the day? &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 22 Mar 2012 04:35:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/max-user-query/qaa-p/13823259#M4854102</guid>
      <dc:creator>VolkerBarth</dc:creator>
      <dc:date>2012-03-22T04:35:35Z</dc:date>
    </item>
    <item>
      <title>Re: Max User Query?</title>
      <link>https://community.sap.com/t5/technology-q-a/max-user-query/qaa-p/13823260#M4854103</link>
      <description>&lt;P&gt;Shorter form: "AND dbnumber = DB_ID()"&lt;/P&gt;</description>
      <pubDate>Thu, 22 Mar 2012 05:13:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/max-user-query/qaa-p/13823260#M4854103</guid>
      <dc:creator>former_SQLA_member1694875</dc:creator>
      <dc:date>2012-03-22T05:13:48Z</dc:date>
    </item>
    <item>
      <title>Re: Max User Query?</title>
      <link>https://community.sap.com/t5/technology-q-a/max-user-query/qaa-p/13823251#M4854094</link>
      <description>&lt;P&gt;You can have a look at the file sadiags.xml in this you find an entry maxconcurconn, as Mark stated:
"...records the maximum concurrent client connections that was seen during the database server's up-time..."&lt;/P&gt;
&lt;P&gt;see also question: &lt;A href="http://sqlanywhere-forum.sap.com/questions/6157/any-documentation-for-sadiagsxml"&gt;Any documentation for sadiags.xml?&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 22 Mar 2012 06:05:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/max-user-query/qaa-p/13823251#M4854094</guid>
      <dc:creator>MCMartin</dc:creator>
      <dc:date>2012-03-22T06:05:36Z</dc:date>
    </item>
    <item>
      <title>Re: Max User Query?</title>
      <link>https://community.sap.com/t5/technology-q-a/max-user-query/qaa-p/13823261#M4854104</link>
      <description>&lt;P&gt;That's a nice hint - but how to analyze these numbers in the "maxconcurconn" node?&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;&amp;lt;F N="0" D="0" M="1,6,0,2,0,0,1,0,1,0,0,0,0,1,0,0,0,0,2,0,1" /&amp;gt; &lt;BR /&gt;
&amp;lt;F N="1" D="1,1" M="2,3,3,2,5,0,2,0,0,1,1,3,1,1,0,0,1,4,7,1,1,1,1" /&amp;gt;&lt;/P&gt;
&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&lt;EM&gt;(Yes, my somewhat rash comment on your cited question - "self-documenting XML" - hits back...)&lt;/EM&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 22 Mar 2012 08:14:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/max-user-query/qaa-p/13823261#M4854104</guid>
      <dc:creator>VolkerBarth</dc:creator>
      <dc:date>2012-03-22T08:14:06Z</dc:date>
    </item>
    <item>
      <title>Re: Max User Query?</title>
      <link>https://community.sap.com/t5/technology-q-a/max-user-query/qaa-p/13823262#M4854105</link>
      <description>&lt;P&gt;Duh! I figured there must be a function that gave the number of the current database but I didn't see it. Thanks.&lt;/P&gt;</description>
      <pubDate>Thu, 22 Mar 2012 08:20:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/max-user-query/qaa-p/13823262#M4854105</guid>
      <dc:creator>MarkCulp</dc:creator>
      <dc:date>2012-03-22T08:20:18Z</dc:date>
    </item>
    <item>
      <title>Re: Max User Query?</title>
      <link>https://community.sap.com/t5/technology-q-a/max-user-query/qaa-p/13823263#M4854106</link>
      <description>&lt;P&gt;My understanding is, that N is the number of concurrent connections, but maybe Mark can give use more insight&lt;/P&gt;</description>
      <pubDate>Thu, 22 Mar 2012 08:50:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/max-user-query/qaa-p/13823263#M4854106</guid>
      <dc:creator>MCMartin</dc:creator>
      <dc:date>2012-03-22T08:50:08Z</dc:date>
    </item>
    <item>
      <title>Re: Max User Query?</title>
      <link>https://community.sap.com/t5/technology-q-a/max-user-query/qaa-p/13823264#M4854107</link>
      <description>&lt;P&gt;In the above two posted examples the N="0" and N="1" specify the maximum number of concurrent connections and the D-list and M-list of numbers refer to the number of times that that maximum was hit in the previous days and months respectively. Note that the days and months are relative to the date specified at the top of the file in the S tag. HTH&lt;/P&gt;</description>
      <pubDate>Thu, 22 Mar 2012 09:20:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/max-user-query/qaa-p/13823264#M4854107</guid>
      <dc:creator>MarkCulp</dc:creator>
      <dc:date>2012-03-22T09:20:26Z</dc:date>
    </item>
    <item>
      <title>Re: Max User Query?</title>
      <link>https://community.sap.com/t5/technology-q-a/max-user-query/qaa-p/13823265#M4854108</link>
      <description>&lt;P&gt;Looks good, thanks Mark.  I need to spend some more time with Mr. Merge.  One of those things that came across as a new feature and I thought was neat but never really practiced.&lt;/P&gt;</description>
      <pubDate>Thu, 22 Mar 2012 09:41:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/max-user-query/qaa-p/13823265#M4854108</guid>
      <dc:creator>former_SQLA_member1694868</dc:creator>
      <dc:date>2012-03-22T09:41:31Z</dc:date>
    </item>
    <item>
      <title>Re: Max User Query?</title>
      <link>https://community.sap.com/t5/technology-q-a/max-user-query/qaa-p/13823266#M4854109</link>
      <description>&lt;P&gt;&lt;A href="https://sqlanywhere-forum.sap.com/users/239/mark/"&gt;@Mark&lt;/A&gt;: Thanks for the clarification!&lt;/P&gt;
&lt;P&gt;I should add, this excerpt is taken from a rarely-used test server on my box, and there were further entries with N &amp;gt; 1:)&lt;/P&gt;</description>
      <pubDate>Thu, 22 Mar 2012 10:09:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/max-user-query/qaa-p/13823266#M4854109</guid>
      <dc:creator>VolkerBarth</dc:creator>
      <dc:date>2012-03-22T10:09:57Z</dc:date>
    </item>
    <item>
      <title>Re: Max User Query?</title>
      <link>https://community.sap.com/t5/technology-q-a/max-user-query/qaa-p/13823267#M4854110</link>
      <description>&lt;P&gt;Sounds very common to me - "insert on existing" still looks way easier:)&lt;/P&gt;</description>
      <pubDate>Thu, 22 Mar 2012 10:10:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/max-user-query/qaa-p/13823267#M4854110</guid>
      <dc:creator>VolkerBarth</dc:creator>
      <dc:date>2012-03-22T10:10:58Z</dc:date>
    </item>
  </channel>
</rss>

