pymssql version 1.0.1
Python version 2.6
Freetds-0.82
When I try to select many columns instead of * I get an error messages that are indicating that I have an invalid column names but this is not the case. If I change to version pymssql version 0.8.0 this problem does not exist. So what is changed in version 1.0.1? See first problem example below:
class DB:
###############################################
def CursorExecute(self):
self.sql = 'SELECT PolicyId,ObjectIdentifierValue,ObjectPackageName,ObjectSize,ObjectNumItems,ObjectMessageDigestAlgorithm,ObjectMessageDigest,ObjectPath,MetaObjectIdentifier,MetaObjectSize,DataObjectSize,DataObjectNumItems,Status,StatusActivity,StatusProcess,LastEventDate,linkingAgentIdentifierValue,CreateDate,CreateAgentIdentifierValue,ProjectCode,ProjectName,ProjectGroupCode,ProjectGroupName,objectGuid,EntryDate,EntryAgentIdentifierValue FROM IngestObject;'
try:
self.db=pymssql.connect(host=DBhost,user=DBuser,password=DBpasswd,database=DBname)
self.cursor = self.db.cursor()
self.cursor.execute(self.sql)
except (pymssql.Warning), (why):
return '',1,why
except (pymssql.Error), (why):
return '',2,why
else:
#if Debug: print self.cursor.description
self.result = self.cursor.fetchall()
self.cursor.close()
return self.result,0,''
arch@lxra05:/ESSArch/bin/src> ./mssql_test2.py
result
exitcode 2
mess SQL Server message 207, severity 16, state 3, line 1:
Invalid column name 'PolicyId'.
DB-Lib error message 207, severity 16:
General SQL Server error: Check messages from the SQL Server
SQL Server message 207, severity 16, state 3, line 1:
Invalid column name 'ObjectIdentifierValue'.
DB-Lib error message 207, severity 16:
General SQL Server error: Check messages from the SQL Server
SQL Server message 207, severity 16, state 3, line 1:
Invalid column name 'ObjectPackageName'.
DB-Lib error message 207, severity 16:
General SQL Server error: Check messages from the SQL Server
SQL Server message 207, severity 16, state 3, line 1:
Invalid column name 'ObjectSize'.
DB-Lib error message 207, severity 16:
General SQL Server error: Check messages from the SQL Server
SQL Server message 207, severity 16, state 3, line 1:
Invalid column name 'ObjectNumItems'.
DB-Lib error message 207, severity 16:
General SQL Server error: Check messages from the SQL Server
SQL Server message 207, severity 16, state 3, line 1:
Invalid column name 'ObjectMessageDigestAlgorithm'.
DB-Lib error message 207, severity 16:
General SQL Server error: Check messages from the SQL Server
SQL Server message 207, severity 16, state 3, line 1:
Invalid column name 'ObjectMessageDigest'.
DB-Lib error message 207, severity 16:
General SQL Server error: Check messages from the SQL Server
SQL Server message 207, severity 16, state 3, line 1:
Invalid column name 'ObjectPath'.
DB-Lib error message 207, severity 16:
General SQL Server error: Check messages from the SQL Server
SQL Server message 207, severity 16, state 3, line 1:
Invalid column name 'MetaObjectIdentifier'.
DB-Lib error message 207, severity 16:
General SQL Server error: Check messages from the SQL Server
SQL Server message 207, severity 16, state 3, line 1:
Invalid column name 'MetaObjectSize'.
DB-Lib error message 207, severity 16:
General SQL Server error: Check messages from the SQL Server
SQL Server message 207, severity 16, state 3, line 1:
Invalid column name 'DataObjectSize'.
DB-Lib error message 207, severity 16:
General SQL Server error: Check messages from the SQL Server
SQL Server message 207, severity 16, state 3, line 1:
Invalid column name 'DataObjectNumItems'.
DB-Lib error message 207, severity 16:
General SQL Server error: Check messages from the SQL Server
SQL Server message 207, severity 16, state 3, line 1:
Invalid column name 'Status'.
DB-Lib error message 207, severity 16:
General SQL Server error: Check messages from the SQL Server
SQL Server message 207, severity 16, state 3, line 1:
Invalid column name 'StatusActivity'.
DB-Lib error message 207, severity 16:
General SQL Server error: Check messages from the SQL Server
SQL Server message 207, severity 16, state 3, line 1:
Invalid column name 'StatusProcess'.
DB-Lib error message 207, severity 16:
General SQL Server error: Check messages from the SQL Server
SQL Server message 207, severity 16, state 3, line 1:
Invalid column name 'LastEventDate'.
DB-Lib error message 207, severity 16:
General SQL Server error: Check messages from the SQL Server
SQL Server message 207, severity 16, state 3, line 1:
Invalid column name 'linkingAgentIdentifierValue'.
DB-Lib error message 207, severity 16:
General SQL Server error: Check messages from the SQL Server
SQL Server message 207, severity 16, state 3, line 1:
Invalid column name 'CreateDate'.
DB-Lib error message 207, severity 16:
General SQL Server error: Check messages from the SQL Server
SQL Server message 207, severity 16, state 3, line 1:
Invalid column name 'CreateAgentIdentifierValue'.
DB-Lib error message 207, severity 16:
General SQL Server error: Check messages from the SQL Server
SQL Server message 207, severity 16, state 3, line 1:
Invalid column name 'ProjectCode'.
DB-Lib error message 207, severity 16:
General SQL Server error: Check messages from the SQL Server
SQL Server message 207, severity 16, state 3, line 1:
Invalid column name 'ProjectName'.
DB-Lib error message 207, severity 16:
General SQL Server error: Check messages from the SQL Server
SQL Server message 207, severity 16, state 3, line 1:
Invalid column name 'ProjectGroupCode'.
DB-Lib error message 207, severity 16:
General SQL Server error: Check messages from the SQL Server
SQL Server message 207, severity 16, state 3, line 1:
Invalid column name 'ProjectGroupName'.
DB-Lib error message 207, severity 16:
General SQL Server error: Check messages from the SQL Server
SQL Server message 207, severity 16, state 3, line 1:
Invalid column name 'objectGuid'.
DB-Lib error message 207, severity 16:
General SQL Server error: Check messages from the SQL Server
SQL Server message 207, severity 16, state 3, line 1:
Invalid column name 'EntryDate'.
DB-Lib error message 207, severity 16:
General SQL Server error: Check messages from the SQL Server
SQL Server message 207, severity 16, state 3, line 1:
Invalid column name 'EntryAgentIdeaí'.
DB-Lib error message 207, severity 16:
General SQL Server error: Check messages from the SQL Server
If I change the code to self.sql to contain fewer columns, then I get an error for incorrect syntax. See example below:
arch@lxra05:/ESSArch/bin/src> ./mssql_test2.py
result
exitcode 2
mess SQL Server message 170, severity 15, state 1, line 1:
Line 1: Incorrect syntax near ''.
DB-Lib error message 170, severity 15:
General SQL Server error: Check messages from the SQL Server
If I change the code to self.sql to contain even fewer columns, then it will work. See example below:
That's strange. pymssql doesn't have any limits on query length or anything. It uses Python strings even on the lowest C level, because it allows for flexibility.
I was unable to reproduce your behavior, at least on Windows, I'll try on Linux later. I used much longer queries without problems. Simple test case:
import pymssql
conn = pymssql.connect(host='.', user='sa', password='P@ssw0rd', database='master')
cur = conn.cursor()
cur.execute('select '+'getdate(),'*4000 + 'getdate()')
for row in cur: print row
it selects 4001 columns and it works. If you change 4000 into 5000, the query is still sent to SQL Server without problems, but you receive (as expected):
>>> cur.execute('select '+'getdate(),'*5000 + 'getdate()')
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "C:\Python26\Lib\site-packages\pymssql.py", line 195, in execute
raise OperationalError, e[0]
pymssql.OperationalError: SQL Server message 1056, severity 15, state 1, line 1:
The number of elements in the select list exceeds the maximum allowed number of 4096 elements.
The server is SQL 2005 Developer Edition SP3 (so it's the Enterprise Edition without commercial license).
I suppose there may be something with FreeTDS. I'll check this as time permits.
Regards.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Thanks Andrzej for your quick respond on my question.
I have tried your examples and I get some different results see the two examples below:
Example 1:
arch@lxra05:/ESSArch/bin/src> /ESSArch/pd/python/bin/python
Python 2.6 (r26:66714, Oct 17 2008, 09:33:36)
[GCC 4.1.2 20070115 (prerelease) (SUSE Linux)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import pymssql
>>> conn = pymssql.connect(host='192.168.100.132:1433',user='Arkis_ESSArch',password='EaB83dgK74eP',database='Arkis2db_siv')
>>> cur = conn.cursor()
>>> cur.execute('SELECT '+'getdate(),'*5000 + 'getdate()')
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/ESSArch/pd/python/lib/python2.6/site-packages/pymssql.py", line 188, in execute
raise OperationalError, e[0]
pymssql.OperationalError: SQL Server message 170, severity 15, state 1, line 1:
Line 1: Incorrect syntax near '='.
DB-Lib error message 170, severity 15:
General SQL Server error: Check messages from the SQL Server
>>> cur.execute('SELECT '+'getdate(),'*5000 + 'getdate()')
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/ESSArch/pd/python/lib/python2.6/site-packages/pymssql.py", line 188, in execute
raise OperationalError, e[0]
pymssql.OperationalError: SQL Server message 1056, severity 15, state 1, line 1:
The maximum number of elements in the select list is 4096 and you have supplied 5001.
DB-Lib error message 1056, severity 15:
General SQL Server error: Check messages from the SQL Server
Example 2:
arch@lxra05:/ESSArch/bin/src> /ESSArch/pd/python/bin/python
Python 2.6 (r26:66714, Oct 17 2008, 09:33:36)
[GCC 4.1.2 20070115 (prerelease) (SUSE Linux)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import pymssql
>>> conn = pymssql.connect(host='192.168.100.132:1433',user='Arkis_ESSArch',password='EaB83dgK74eP',database='Arkis2db_siv')
>>> cur = conn.cursor()
>>> cur.execute('SELECT '+'getdate(),'*100 + 'getdate()')
>>> cur.execute('SELECT '+'getdate(),'*4000 + 'getdate()')
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/ESSArch/pd/python/lib/python2.6/site-packages/pymssql.py", line 188, in execute
raise OperationalError, e[0]
pymssql.OperationalError: SQL Server message 207, severity 16, state 3, line 1:
Invalid column name 'get1'.
DB-Lib error message 207, severity 16:
General SQL Server error: Check messages from the SQL Server
So the conclusion is if I first cause the error and then do the large select it seems to work?!? And in example 2 you can see that’s it working to select only 100 columns but I get the error when I try to select 4000 columns and then the second time I select 4000 columns it works…
This problem is only arising when I using pymssql version 1.0.1 and this problem do not arise in version 0.8.0.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
> pymssql.OperationalError: SQL Server message 170, severity 15, state 1, line 1:
> Line 1: Incorrect syntax near '='.
But there's no '=' anywhere in 'SELECT getdate(),getdate(),...,getdate()'
> pymssql.OperationalError: SQL Server message 207, severity 16, state 3, line 1:
> Invalid column name 'get1'.
Likewise. I noticed it also in output you sent previously. It looks like something is corrupting the query string.
If you could set cur._source.debug_queries = 1
and check what it prints for your queries, then we may be able to determine what is corrupting the queries -- pymssql or FreeTDS.
Thanks.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
arch@lxra05:/ESSArch/bin/src> /ESSArch/pd/python/bin/python
Python 2.6 (r26:66714, Oct 17 2008, 09:33:36)
[GCC 4.1.2 20070115 (prerelease) (SUSE Linux)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import pymssql
>>> conn = pymssql.connect(host='192.168.100.132:1433',user='Arkis_ESSArch',password='EaB83dgK74eP',database='Arkis2db_siv')
>>> cur = conn.cursor()
>>> cur._source.debug_queries = 1
>>> cur.execute('SELECT '+'getdate(),'*200 + 'getdate()')
#SELECT getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate()#
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/ESSArch/pd/python/lib/python2.6/site-packages/pymssql.py", line 188, in execute
raise OperationalError, e[0]
pymssql.OperationalError: SQL Server message 207, severity 16, state 3, line 1:
Invalid column name 'gqØ'.
DB-Lib error message 207, severity 16:
General SQL Server error: Check messages from the SQL Server
>>>
It looks like the problem may be in FreeTDS but why is it always working i version 0.8.0? Below you can see the FreeTDS debuglog also, in the log below the SQL command looks okay, but when "writer.c" try do somthning the "gq0" appears. If i running version 0.8.0 this type of garbage characters does not appears in the FreeTDSlog.
lxra05:/usr/local/etc # more /tmp/freetds.log
13:14:01.652366 16153 (log.c:190):Starting log file for FreeTDS 0.82
on 2009-03-02 13:14:01 with debug flags 0xffff.
13:14:01.652515 16153 (iconv.c:197):names for ISO-8859-1: ISO-8859-1
13:14:01.652526 16153 (iconv.c:197):names for UTF-8: UTF-8
13:14:01.652534 16153 (iconv.c:197):names for UCS-2LE: UCS-2LE
13:14:01.652541 16153 (iconv.c:197):names for UCS-2BE: UCS-2BE
13:14:01.652548 16153 (iconv.c:363):iconv to convert client-side data to the "ISO-8859-1" character set
13:14:01.652567 16153 (iconv.c:516):tds_iconv_info_init: converting "ISO-8859-1"->"UCS-2LE"
13:14:01.652590 16153 (iconv.c:516):tds_iconv_info_init: converting "ISO-8859-1"->"UCS-2LE"
13:14:01.652604 16153 (net.c:210):Connecting to 192.168.100.132 port 1433 (TDS version 8.0)
13:14:01.652640 16153 (net.c:264):tds_open_socket: connect(2) returned "Operation now in progress"
13:14:01.652783 16153 (net.c:303):tds_open_socket() succeeded
13:14:01.652795 16153 (util.c:162):Changed query state from DEAD to IDLE
13:14:01.652805 16153 (login.c:735):quietly sending TDS 7+ login packet
13:14:01.652846 16153 (token.c:312):tds_process_login_tokens()
13:14:01.653871 16153 (net.c:592):Received header
0000 04 01 01 89 00 36 01 00- |.....6..|
Yes it looks like that the problem is in FreeTDS but it is strange why it's working with version 0.8.0. Below you have the same information but now I changed the version to 0.8.0 and everything works...
arch@lxra05:/ESSArch/bin/src> /ESSArch/pd/python/bin/python
Python 2.6 (r26:66714, Oct 17 2008, 09:33:36)
[GCC 4.1.2 20070115 (prerelease) (SUSE Linux)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import pymssql
>>> conn = pymssql.connect(host='192.168.100.132:1433',user='Arkis_ESSArch',password='EaB83dgK74eP',database='Arkis2db_siv')
>>> cur = conn.cursor()
>>> cur._source.debug_queries = 1
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
AttributeError: pymssqlCursor instance has no attribute '_source'
>>> cur.execute('SELECT '+'getdate(),'*200 + 'getdate()')
>>>
If you look at row "13:48:18.412588 16541 (write.c:136):" in FreeTDS.log with pymssql 0.8.0 and look at the "13:14:24.828514 16153 (write.c:136):" row when running version 1.0.1 you see the different with the garbage characters.
The FreeTDS.log with pymssql version 0.8.0:
lxra05:/usr/local/etc # more /tmp/freetds.log
13:47:57.164262 16541 (log.c:190):Starting log file for FreeTDS 0.82
on 2009-03-02 13:47:57 with debug flags 0xffff.
13:47:57.164407 16541 (iconv.c:197):names for ISO-8859-1: ISO-8859-1
13:47:57.164418 16541 (iconv.c:197):names for UTF-8: UTF-8
13:47:57.164426 16541 (iconv.c:197):names for UCS-2LE: UCS-2LE
13:47:57.164433 16541 (iconv.c:197):names for UCS-2BE: UCS-2BE
13:47:57.164440 16541 (iconv.c:363):iconv to convert client-side data to the "ISO-8859-1" character set
13:47:57.164458 16541 (iconv.c:516):tds_iconv_info_init: converting "ISO-8859-1"->"UCS-2LE"
13:47:57.164481 16541 (iconv.c:516):tds_iconv_info_init: converting "ISO-8859-1"->"UCS-2LE"
13:47:57.164495 16541 (net.c:210):Connecting to 192.168.100.132 port 1433 (TDS version 8.0)
13:47:57.164535 16541 (net.c:264):tds_open_socket: connect(2) returned "Operation now in progress"
13:47:57.169242 16541 (net.c:303):tds_open_socket() succeeded
13:47:57.169255 16541 (util.c:162):Changed query state from DEAD to IDLE
13:47:57.169265 16541 (login.c:735):quietly sending TDS 7+ login packet
13:47:57.169307 16541 (token.c:312):tds_process_login_tokens()
13:47:57.170338 16541 (net.c:592):Received header
0000 04 01 01 89 00 36 01 00- |.....6..|
pymssql version 1.0.1
Python version 2.6
Freetds-0.82
When I try to select many columns instead of * I get an error messages that are indicating that I have an invalid column names but this is not the case. If I change to version pymssql version 0.8.0 this problem does not exist. So what is changed in version 1.0.1? See first problem example below:
class DB:
###############################################
def CursorExecute(self):
self.sql = 'SELECT PolicyId,ObjectIdentifierValue,ObjectPackageName,ObjectSize,ObjectNumItems,ObjectMessageDigestAlgorithm,ObjectMessageDigest,ObjectPath,MetaObjectIdentifier,MetaObjectSize,DataObjectSize,DataObjectNumItems,Status,StatusActivity,StatusProcess,LastEventDate,linkingAgentIdentifierValue,CreateDate,CreateAgentIdentifierValue,ProjectCode,ProjectName,ProjectGroupCode,ProjectGroupName,objectGuid,EntryDate,EntryAgentIdentifierValue FROM IngestObject;'
try:
self.db=pymssql.connect(host=DBhost,user=DBuser,password=DBpasswd,database=DBname)
self.cursor = self.db.cursor()
self.cursor.execute(self.sql)
except (pymssql.Warning), (why):
return '',1,why
except (pymssql.Error), (why):
return '',2,why
else:
#if Debug: print self.cursor.description
self.result = self.cursor.fetchall()
self.cursor.close()
return self.result,0,''
arch@lxra05:/ESSArch/bin/src> ./mssql_test2.py
result
exitcode 2
mess SQL Server message 207, severity 16, state 3, line 1:
Invalid column name 'PolicyId'.
DB-Lib error message 207, severity 16:
General SQL Server error: Check messages from the SQL Server
SQL Server message 207, severity 16, state 3, line 1:
Invalid column name 'ObjectIdentifierValue'.
DB-Lib error message 207, severity 16:
General SQL Server error: Check messages from the SQL Server
SQL Server message 207, severity 16, state 3, line 1:
Invalid column name 'ObjectPackageName'.
DB-Lib error message 207, severity 16:
General SQL Server error: Check messages from the SQL Server
SQL Server message 207, severity 16, state 3, line 1:
Invalid column name 'ObjectSize'.
DB-Lib error message 207, severity 16:
General SQL Server error: Check messages from the SQL Server
SQL Server message 207, severity 16, state 3, line 1:
Invalid column name 'ObjectNumItems'.
DB-Lib error message 207, severity 16:
General SQL Server error: Check messages from the SQL Server
SQL Server message 207, severity 16, state 3, line 1:
Invalid column name 'ObjectMessageDigestAlgorithm'.
DB-Lib error message 207, severity 16:
General SQL Server error: Check messages from the SQL Server
SQL Server message 207, severity 16, state 3, line 1:
Invalid column name 'ObjectMessageDigest'.
DB-Lib error message 207, severity 16:
General SQL Server error: Check messages from the SQL Server
SQL Server message 207, severity 16, state 3, line 1:
Invalid column name 'ObjectPath'.
DB-Lib error message 207, severity 16:
General SQL Server error: Check messages from the SQL Server
SQL Server message 207, severity 16, state 3, line 1:
Invalid column name 'MetaObjectIdentifier'.
DB-Lib error message 207, severity 16:
General SQL Server error: Check messages from the SQL Server
SQL Server message 207, severity 16, state 3, line 1:
Invalid column name 'MetaObjectSize'.
DB-Lib error message 207, severity 16:
General SQL Server error: Check messages from the SQL Server
SQL Server message 207, severity 16, state 3, line 1:
Invalid column name 'DataObjectSize'.
DB-Lib error message 207, severity 16:
General SQL Server error: Check messages from the SQL Server
SQL Server message 207, severity 16, state 3, line 1:
Invalid column name 'DataObjectNumItems'.
DB-Lib error message 207, severity 16:
General SQL Server error: Check messages from the SQL Server
SQL Server message 207, severity 16, state 3, line 1:
Invalid column name 'Status'.
DB-Lib error message 207, severity 16:
General SQL Server error: Check messages from the SQL Server
SQL Server message 207, severity 16, state 3, line 1:
Invalid column name 'StatusActivity'.
DB-Lib error message 207, severity 16:
General SQL Server error: Check messages from the SQL Server
SQL Server message 207, severity 16, state 3, line 1:
Invalid column name 'StatusProcess'.
DB-Lib error message 207, severity 16:
General SQL Server error: Check messages from the SQL Server
SQL Server message 207, severity 16, state 3, line 1:
Invalid column name 'LastEventDate'.
DB-Lib error message 207, severity 16:
General SQL Server error: Check messages from the SQL Server
SQL Server message 207, severity 16, state 3, line 1:
Invalid column name 'linkingAgentIdentifierValue'.
DB-Lib error message 207, severity 16:
General SQL Server error: Check messages from the SQL Server
SQL Server message 207, severity 16, state 3, line 1:
Invalid column name 'CreateDate'.
DB-Lib error message 207, severity 16:
General SQL Server error: Check messages from the SQL Server
SQL Server message 207, severity 16, state 3, line 1:
Invalid column name 'CreateAgentIdentifierValue'.
DB-Lib error message 207, severity 16:
General SQL Server error: Check messages from the SQL Server
SQL Server message 207, severity 16, state 3, line 1:
Invalid column name 'ProjectCode'.
DB-Lib error message 207, severity 16:
General SQL Server error: Check messages from the SQL Server
SQL Server message 207, severity 16, state 3, line 1:
Invalid column name 'ProjectName'.
DB-Lib error message 207, severity 16:
General SQL Server error: Check messages from the SQL Server
SQL Server message 207, severity 16, state 3, line 1:
Invalid column name 'ProjectGroupCode'.
DB-Lib error message 207, severity 16:
General SQL Server error: Check messages from the SQL Server
SQL Server message 207, severity 16, state 3, line 1:
Invalid column name 'ProjectGroupName'.
DB-Lib error message 207, severity 16:
General SQL Server error: Check messages from the SQL Server
SQL Server message 207, severity 16, state 3, line 1:
Invalid column name 'objectGuid'.
DB-Lib error message 207, severity 16:
General SQL Server error: Check messages from the SQL Server
SQL Server message 207, severity 16, state 3, line 1:
Invalid column name 'EntryDate'.
DB-Lib error message 207, severity 16:
General SQL Server error: Check messages from the SQL Server
SQL Server message 207, severity 16, state 3, line 1:
Invalid column name 'EntryAgentIdeaí'.
DB-Lib error message 207, severity 16:
General SQL Server error: Check messages from the SQL Server
If I change the code to self.sql to contain fewer columns, then I get an error for incorrect syntax. See example below:
class DB:
###############################################
def CursorExecute(self):
#self.sql = 'SELECT PolicyId,ObjectIdentifierValue,ObjectPackageName,ObjectSize,ObjectNumItems,ObjectMessageDigestAlgorithm,ObjectMessageDigest,ObjectPath,MetaObjectIdentifier,MetaObjectSize,DataObjectSize,DataObjectNumItems,Status,StatusActivity,StatusProcess,LastEventDate,linkingAgentIdentifierValue,CreateDate,CreateAgentIdentifierValue,ProjectCode,ProjectName,ProjectGroupCode,ProjectGroupName,objectGuid,EntryDate,EntryAgentIdentifierValue FROM IngestObject;'
self.sql = 'SELECT ObjectSize,ObjectNumItems,ObjectMessageDigestAlgorithm,ObjectMessageDigest,ObjectPath,MetaObjectIdentifier,MetaObjectSize,DataObjectSize,DataObjectNumItems,Status,StatusActivity,StatusProcess,LastEventDate,linkingAgentIdentifierValue,CreateDate,CreateAgentIdentifierValue,ProjectCode,ProjectName,ProjectGroupCode,ProjectGroupName,objectGuid,EntryDate,EntryAgentIdentifierValue FROM IngestObject;'
try:
self.db=pymssql.connect(host=DBhost,user=DBuser,password=DBpasswd,database=DBname)
self.cursor = self.db.cursor()
self.cursor.execute(self.sql)
except (pymssql.Warning), (why):
return '',1,why
except (pymssql.Error), (why):
return '',2,why
else:
#if Debug: print self.cursor.description
self.result = self.cursor.fetchall()
self.cursor.close()
return self.result,0,''
arch@lxra05:/ESSArch/bin/src> ./mssql_test2.py
result
exitcode 2
mess SQL Server message 170, severity 15, state 1, line 1:
Line 1: Incorrect syntax near ''.
DB-Lib error message 170, severity 15:
General SQL Server error: Check messages from the SQL Server
If I change the code to self.sql to contain even fewer columns, then it will work. See example below:
class DB:
###############################################
def CursorExecute(self):
#self.sql = 'SELECT PolicyId,ObjectIdentifierValue,ObjectPackageName,ObjectSize,ObjectNumItems,ObjectMessageDigestAlgorithm,ObjectMessageDigest,ObjectPath,MetaObjectIdentifier,MetaObjectSize,DataObjectSize,DataObjectNumItems,Status,StatusActivity,StatusProcess,LastEventDate,linkingAgentIdentifierValue,CreateDate,CreateAgentIdentifierValue,ProjectCode,ProjectName,ProjectGroupCode,ProjectGroupName,objectGuid,EntryDate,EntryAgentIdentifierValue FROM IngestObject;'
self.sql = 'SELECT LastEventDate,linkingAgentIdentifierValue,CreateDate,CreateAgentIdentifierValue,ProjectCode,ProjectName,ProjectGroupCode,ProjectGroupName,objectGuid,EntryDate,EntryAgentIdentifierValue FROM IngestObject;'
try:
self.db=pymssql.connect(host=DBhost,user=DBuser,password=DBpasswd,database=DBname)
self.cursor = self.db.cursor()
self.cursor.execute(self.sql)
except (pymssql.Warning), (why):
return '',1,why
except (pymssql.Error), (why):
return '',2,why
else:
#if Debug: print self.cursor.description
self.result = self.cursor.fetchall()
self.cursor.close()
return self.result,0,''
arch@lxra05:/ESSArch/bin/src> ./mssql_test2.py
result [(datetime.datetime(2009, 1, 27, 0, 0), None, None, 'RA_berggren', 1, 'Projekt A', 1, 'Fosam Arkiv: SE/RA/83001', '}SJ"\xde\x0c(A\xb3\xf4\x8b\xcf\x89\x92\xe4N', datetime.datetime(2009, 1, 27, 7, 8, 39), 'RA_berggren'), (datetime.datetime(2009, 1, 28, 0, 0), None, None, 'RA_berggren', 1, 'Projekt A', 1, 'Fosam Arkiv: SE/RA/83001', '\x82\xbb=\xe5\x81H\x1fC\x89wb\xb7\xe3\xc7\xa9\xd9', datetime.datetime(2009, 1, 27, 7, 8, 39), 'RA_berggren'), (datetime.datetime(2009, 8, 18, 22, 45), 'ESSArch_Marieberg', None, 'RA_berggren', 1, 'Projekt A', 1, 'Fosam Arkiv: SE/RA/83001', 'kt\xeb\x96\xc1\xff\xb0C\x00\xf4\xbe\xff\xc29\xf8\xa0', datetime.datetime(2009, 1, 27, 7, 8, 39), 'RA_berggren'), (None, None, None, 'RA_berggren', 1, 'Projekt A', 1, 'Fosam Arkiv: SE/RA/83001', '\x19\x17\n\x07\xd6B:G\xb7\x00\xdc\xac\x89\xb5\x93\x80', datetime.datetime(2009, 1, 27, 7, 8, 39), 'RA_berggren'), (None, None, None, 'RA_berggren', 1, 'Projekt A', 1, 'Fosam Arkiv: SE/RA/83001', "\xdeUK'\xa4Y\x1fF\x9eS<\xbd!\x97\x00\x9c", datetime.datetime(2009, 1, 27, 7, 8, 39), 'RA_berggren'), (None, None, None, 'RA_berggren', 1, 'Projekt A', 1, 'Fosam Arkiv: SE/RA/83001', '\x94\x1aEHS\xff\xafA\xbbF\xd4x\xe3\x8f\x1c\xad', datetime.datetime(2009, 1, 27, 7, 8, 39), 'RA_berggren'), (None, None, None, 'RA_berggren', 1, 'Projekt A', 1, 'Fosam Arkiv: SE/RA/83001', '\x1dH*EB\xb2\xe5A\xa3\xbcy\xb7\xfe\x90n\x9b', datetime.datetime(2009, 1, 27, 7, 8, 39), 'RA_berggren'), (None, None, None, 'RA_berggren', 1, 'Projekt A', 1, 'Fosam Arkiv: SE/RA/83001', '\x8aF\xdc\xb28\x8c5M\x82.\x9c\xab\xeaC\xefP', datetime.datetime(2009, 1, 27, 7, 8, 39), 'RA_berggren'), (None, None, None, 'RA_berggren', 1, 'Projekt A', 1, 'Fosam Arkiv: SE/RA/83001', '2!\xa8!\x11d}N\xa8ds\xeb\xbf\xe6\x1db', datetime.datetime(2009, 1, 27, 7, 8, 39), 'RA_berggren'), (None, None, None, 'RA_berggren', 1, 'Projekt A', 1, 'Fosam Arkiv: SE/RA/83001', '\xf6\xe0V\xc1]NcO\xa6\x87`\x96\x8d\xe0\xfc\x90', datetime.datetime(2009, 1, 27, 7, 8, 39), 'RA_berggren')]
exitcode 0
mess
That's strange. pymssql doesn't have any limits on query length or anything. It uses Python strings even on the lowest C level, because it allows for flexibility.
I was unable to reproduce your behavior, at least on Windows, I'll try on Linux later. I used much longer queries without problems. Simple test case:
import pymssql
conn = pymssql.connect(host='.', user='sa', password='P@ssw0rd', database='master')
cur = conn.cursor()
cur.execute('select '+'getdate(),'*4000 + 'getdate()')
for row in cur: print row
it selects 4001 columns and it works. If you change 4000 into 5000, the query is still sent to SQL Server without problems, but you receive (as expected):
>>> cur.execute('select '+'getdate(),'*5000 + 'getdate()')
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "C:\Python26\Lib\site-packages\pymssql.py", line 195, in execute
raise OperationalError, e[0]
pymssql.OperationalError: SQL Server message 1056, severity 15, state 1, line 1:
The number of elements in the select list exceeds the maximum allowed number of 4096 elements.
The server is SQL 2005 Developer Edition SP3 (so it's the Enterprise Edition without commercial license).
I suppose there may be something with FreeTDS. I'll check this as time permits.
Regards.
Thanks Andrzej for your quick respond on my question.
I have tried your examples and I get some different results see the two examples below:
Example 1:
arch@lxra05:/ESSArch/bin/src> /ESSArch/pd/python/bin/python
Python 2.6 (r26:66714, Oct 17 2008, 09:33:36)
[GCC 4.1.2 20070115 (prerelease) (SUSE Linux)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import pymssql
>>> conn = pymssql.connect(host='192.168.100.132:1433',user='Arkis_ESSArch',password='EaB83dgK74eP',database='Arkis2db_siv')
>>> cur = conn.cursor()
>>> cur.execute('SELECT '+'getdate(),'*5000 + 'getdate()')
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/ESSArch/pd/python/lib/python2.6/site-packages/pymssql.py", line 188, in execute
raise OperationalError, e[0]
pymssql.OperationalError: SQL Server message 170, severity 15, state 1, line 1:
Line 1: Incorrect syntax near '='.
DB-Lib error message 170, severity 15:
General SQL Server error: Check messages from the SQL Server
>>> cur.execute('SELECT '+'getdate(),'*5000 + 'getdate()')
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/ESSArch/pd/python/lib/python2.6/site-packages/pymssql.py", line 188, in execute
raise OperationalError, e[0]
pymssql.OperationalError: SQL Server message 1056, severity 15, state 1, line 1:
The maximum number of elements in the select list is 4096 and you have supplied 5001.
DB-Lib error message 1056, severity 15:
General SQL Server error: Check messages from the SQL Server
>>> cur.execute('SELECT '+'getdate(),'*4000 + 'getdate()')
>>> cur.execute('SELECT '+'getdate(),'*4000 + 'getdate()')
>>> cur.execute('SELECT '+'getdate(),'*4000 + 'getdate()')
>>>
Example 2:
arch@lxra05:/ESSArch/bin/src> /ESSArch/pd/python/bin/python
Python 2.6 (r26:66714, Oct 17 2008, 09:33:36)
[GCC 4.1.2 20070115 (prerelease) (SUSE Linux)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import pymssql
>>> conn = pymssql.connect(host='192.168.100.132:1433',user='Arkis_ESSArch',password='EaB83dgK74eP',database='Arkis2db_siv')
>>> cur = conn.cursor()
>>> cur.execute('SELECT '+'getdate(),'*100 + 'getdate()')
>>> cur.execute('SELECT '+'getdate(),'*4000 + 'getdate()')
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/ESSArch/pd/python/lib/python2.6/site-packages/pymssql.py", line 188, in execute
raise OperationalError, e[0]
pymssql.OperationalError: SQL Server message 207, severity 16, state 3, line 1:
Invalid column name 'get1'.
DB-Lib error message 207, severity 16:
General SQL Server error: Check messages from the SQL Server
>>> cur.execute('SELECT '+'getdate(),'*4000 + 'getdate()')
>>> cur.execute('SELECT '+'getdate(),'*4000 + 'getdate()')
>>>
So the conclusion is if I first cause the error and then do the large select it seems to work?!? And in example 2 you can see that’s it working to select only 100 columns but I get the error when I try to select 4000 columns and then the second time I select 4000 columns it works…
This problem is only arising when I using pymssql version 1.0.1 and this problem do not arise in version 0.8.0.
I don't like these parts of the messages:
> pymssql.OperationalError: SQL Server message 170, severity 15, state 1, line 1:
> Line 1: Incorrect syntax near '='.
But there's no '=' anywhere in 'SELECT getdate(),getdate(),...,getdate()'
> pymssql.OperationalError: SQL Server message 207, severity 16, state 3, line 1:
> Invalid column name 'get1'.
Likewise. I noticed it also in output you sent previously. It looks like something is corrupting the query string.
If you could set cur._source.debug_queries = 1
and check what it prints for your queries, then we may be able to determine what is corrupting the queries -- pymssql or FreeTDS.
Thanks.
arch@lxra05:/ESSArch/bin/src> /ESSArch/pd/python/bin/python
Python 2.6 (r26:66714, Oct 17 2008, 09:33:36)
[GCC 4.1.2 20070115 (prerelease) (SUSE Linux)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import pymssql
>>> conn = pymssql.connect(host='192.168.100.132:1433',user='Arkis_ESSArch',password='EaB83dgK74eP',database='Arkis2db_siv')
>>> cur = conn.cursor()
>>> cur._source.debug_queries = 1
>>> cur.execute('SELECT '+'getdate(),'*200 + 'getdate()')
#SELECT getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate()#
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/ESSArch/pd/python/lib/python2.6/site-packages/pymssql.py", line 188, in execute
raise OperationalError, e[0]
pymssql.OperationalError: SQL Server message 207, severity 16, state 3, line 1:
Invalid column name 'gqØ'.
DB-Lib error message 207, severity 16:
General SQL Server error: Check messages from the SQL Server
>>>
It looks like the problem may be in FreeTDS but why is it always working i version 0.8.0? Below you can see the FreeTDS debuglog also, in the log below the SQL command looks okay, but when "writer.c" try do somthning the "gq0" appears. If i running version 0.8.0 this type of garbage characters does not appears in the FreeTDSlog.
lxra05:/usr/local/etc # more /tmp/freetds.log
13:14:01.652366 16153 (log.c:190):Starting log file for FreeTDS 0.82
on 2009-03-02 13:14:01 with debug flags 0xffff.
13:14:01.652515 16153 (iconv.c:197):names for ISO-8859-1: ISO-8859-1
13:14:01.652526 16153 (iconv.c:197):names for UTF-8: UTF-8
13:14:01.652534 16153 (iconv.c:197):names for UCS-2LE: UCS-2LE
13:14:01.652541 16153 (iconv.c:197):names for UCS-2BE: UCS-2BE
13:14:01.652548 16153 (iconv.c:363):iconv to convert client-side data to the "ISO-8859-1" character set
13:14:01.652567 16153 (iconv.c:516):tds_iconv_info_init: converting "ISO-8859-1"->"UCS-2LE"
13:14:01.652590 16153 (iconv.c:516):tds_iconv_info_init: converting "ISO-8859-1"->"UCS-2LE"
13:14:01.652604 16153 (net.c:210):Connecting to 192.168.100.132 port 1433 (TDS version 8.0)
13:14:01.652640 16153 (net.c:264):tds_open_socket: connect(2) returned "Operation now in progress"
13:14:01.652783 16153 (net.c:303):tds_open_socket() succeeded
13:14:01.652795 16153 (util.c:162):Changed query state from DEAD to IDLE
13:14:01.652805 16153 (login.c:735):quietly sending TDS 7+ login packet
13:14:01.652846 16153 (token.c:312):tds_process_login_tokens()
13:14:01.653871 16153 (net.c:592):Received header
0000 04 01 01 89 00 36 01 00- |.....6..|
13:14:01.653889 16153 (net.c:671):Received packet
0000 e3 27 00 01 0c 41 00 72-00 6b 00 69 00 73 00 32 |.'...A.r .k.i.s.2|
0010 00 64 00 62 00 5f 00 53-00 69 00 76 00 06 6d 00 |.d.b._.S .i.v..m.|
0020 61 00 73 00 74 00 65 00-72 00 ab 6e 00 45 16 00 |a.s.t.e. r..n.E..|
0030 00 02 00 2b 00 43 00 68-00 61 00 6e 00 67 00 65 |...+.C.h .a.n.g.e|
0040 00 64 00 20 00 64 00 61-00 74 00 61 00 62 00 61 |.d. .d.a .t.a.b.a|
0050 00 73 00 65 00 20 00 63-00 6f 00 6e 00 74 00 65 |.s.e. .c .o.n.t.e|
0060 00 78 00 74 00 20 00 74-00 6f 00 20 00 27 00 41 |.x.t. .t .o. .'.A|
0070 00 72 00 6b 00 69 00 73-00 32 00 64 00 62 00 5f |.r.k.i.s .2.d.b._|
0080 00 53 00 69 00 76 00 27-00 2e 00 06 45 00 4c 00 |.S.i.v.' ....E.L.|
0090 52 00 4f 00 4e 00 44 00-00 00 00 e3 08 00 07 05 |R.O.N.D. ........|
00a0 0b 04 f0 00 00 00 e3 17-00 02 0a 75 00 73 00 5f |........ ...u.s._|
00b0 00 65 00 6e 00 67 00 6c-00 69 00 73 00 68 00 00 |.e.n.g.l .i.s.h..|
00c0 ab 66 00 47 16 00 00 01-00 27 00 43 00 68 00 61 |.f.G.... .'.C.h.a|
00d0 00 6e 00 67 00 65 00 64-00 20 00 6c 00 61 00 6e |.n.g.e.d . .l.a.n|
00e0 00 67 00 75 00 61 00 67-00 65 00 20 00 73 00 65 |.g.u.a.g .e. .s.e|
00f0 00 74 00 74 00 69 00 6e-00 67 00 20 00 74 00 6f |.t.t.i.n .g. .t.o|
0100 00 20 00 75 00 73 00 5f-00 65 00 6e 00 67 00 6c |. .u.s._ .e.n.g.l|
0110 00 69 00 73 00 68 00 2e-00 06 45 00 4c 00 52 00 |.i.s.h.. ..E.L.R.|
0120 4f 00 4e 00 44 00 00 00-00 ad 36 00 01 71 00 00 |O.N.D... ..6..q..|
0130 01 16 4d 00 69 00 63 00-72 00 6f 00 73 00 6f 00 |..M.i.c. r.o.s.o.|
0140 66 00 74 00 20 00 53 00-51 00 4c 00 20 00 53 00 |f.t. .S. Q.L. .S.|
0150 65 00 72 00 76 00 65 00-72 00 00 00 00 00 08 00 |e.r.v.e. r.......|
0160 08 07 e3 13 00 04 04 34-00 30 00 39 00 36 00 04 |.......4 .0.9.6..|
0170 34 00 30 00 39 00 36 00-fd 00 00 00 00 00 00 00 |4.0.9.6. ........|
0180 00 - |.|
13:14:01.654018 16153 (token.c:316):looking for login token, got e3(ENVCHANGE)
13:14:01.654028 16153 (token.c:108):tds_process_default_tokens() marker is e3(ENVCHANGE)
13:14:01.654043 16153 (dblib.c:325):db_env_chg(0x66a0e0, 1, master, Arkis2db_Siv)
13:14:01.654054 16153 (token.c:316):looking for login token, got ab(INFO)
13:14:01.654061 16153 (token.c:108):tds_process_default_tokens() marker is ab(INFO)
13:14:01.654070 16153 (token.c:2451):tds_process_msg() reading message from server
13:14:01.654082 16153 (token.c:2516):tds_process_msg() calling client msg handler
13:14:01.654091 16153 (dbutil.c:86):_dblib_handle_info_message(0x650390, 0x66a0e0, 0x7fffeeee3390)
13:14:01.654099 16153 (dbutil.c:87):msgno 5701: "Changed database context to 'Arkis2db_Siv'."
13:14:01.654112 16153 (token.c:2529):tds_process_msg() returning TDS_SUCCEED
13:14:01.654120 16153 (token.c:316):looking for login token, got e3(ENVCHANGE)
13:14:01.654127 16153 (token.c:108):tds_process_default_tokens() marker is e3(ENVCHANGE)
13:14:01.654144 16153 (token.c:2281):tds_process_env_chg(): 5 bytes of collation data received
13:14:01.654151 16153 (token.c:2282):tds->collation was
0000 00 00 00 00 00 - |.....|
13:14:01.654162 16153 (iconv.c:985):setting server single-byte charset to "CP1252"
13:14:01.654231 16153 (iconv.c:516):tds_iconv_info_init: converting "ISO-8859-1"->"CP1252"
13:14:01.654242 16153 (token.c:2292):tds->collation now
0000 0b 04 f0 00 00 - |.....|
13:14:01.654252 16153 (token.c:316):looking for login token, got e3(ENVCHANGE)
13:14:01.654259 16153 (token.c:108):tds_process_default_tokens() marker is e3(ENVCHANGE)
13:14:01.654268 16153 (dblib.c:325):db_env_chg(0x66a0e0, 2, , us_english)
13:14:01.654276 16153 (token.c:316):looking for login token, got ab(INFO)
13:14:01.654283 16153 (token.c:108):tds_process_default_tokens() marker is ab(INFO)
13:14:01.654290 16153 (token.c:2451):tds_process_msg() reading message from server
13:14:01.654299 16153 (token.c:2516):tds_process_msg() calling client msg handler
13:14:01.654306 16153 (dbutil.c:86):_dblib_handle_info_message(0x650390, 0x66a0e0, 0x7fffeeee3390)
13:14:01.654314 16153 (dbutil.c:87):msgno 5703: "Changed language setting to us_english."
13:14:01.654322 16153 (token.c:2529):tds_process_msg() returning TDS_SUCCEED
13:14:01.654330 16153 (token.c:316):looking for login token, got ad(LOGINACK)
13:14:01.654339 16153 (token.c:316):looking for login token, got e3(ENVCHANGE)
13:14:01.654346 16153 (token.c:108):tds_process_default_tokens() marker is e3(ENVCHANGE)
13:14:01.654355 16153 (dblib.c:325):db_env_chg(0x66a0e0, 4, 4096, 4096)
13:14:01.654363 16153 (token.c:316):looking for login token, got fd(DONE)
13:14:01.654370 16153 (token.c:108):tds_process_default_tokens() marker is fd(DONE)
13:14:01.654377 16153 (token.c:2201):tds_process_end: more_results = 0
was_cancelled = 0
error = 0
done_count_valid = 0
13:14:01.654385 16153 (token.c:2217):tds_process_end() state set to TDS_IDLE
13:14:01.654391 16153 (token.c:2232): rows_affected = 0
13:14:01.654398 16153 (token.c:393):leaving tds_process_login_tokens() returning 1
13:14:01.654412 16153 (mem.c:563):tds_free_all_results()
13:14:01.654420 16153 (util.c:162):Changed query state from IDLE to QUERYING
13:14:01.654427 16153 (write.c:136):tds_put_string converting 16 bytes of "set textsize -1 "
13:14:01.654436 16153 (write.c:164):tds_put_string wrote 32 bytes
13:14:01.654443 16153 (util.c:162):Changed query state from QUERYING to PENDING
13:14:01.654450 16153 (net.c:779):Sending packet
0000 01 01 00 28 00 00 00 00-73 00 65 00 74 00 20 00 |...(.... s.e.t. .|
0010 74 00 65 00 78 00 74 00-73 00 69 00 7a 00 65 00 |t.e.x.t. s.i.z.e.|
0020 20 00 2d 00 31 00 20 00- | .-.1. .|
13:14:01.654474 16153 (token.c:495):tds_process_tokens(0x66a0e0, 0x7fffeeee3474, 0x7fffeeee3470, 0x100)
13:14:01.654488 16153 (util.c:162):Changed query state from PENDING to READING
13:14:01.654684 16153 (net.c:592):Received header
0000 04 01 00 11 00 36 01 00- |.....6..|
13:14:01.654701 16153 (net.c:671):Received packet
0000 fd 00 00 be 00 00 00 00-00 |........ .|
13:14:01.654713 16153 (token.c:510):processing result tokens. marker is fd(DONE)
13:14:01.654722 16153 (token.c:2201):tds_process_end: more_results = 0
was_cancelled = 0
error = 0
done_count_valid = 0
13:14:01.654731 16153 (token.c:2217):tds_process_end() state set to TDS_IDLE
13:14:01.654739 16153 (util.c:162):Changed query state from READING to IDLE
13:14:01.654747 16153 (token.c:2232): rows_affected = 0
13:14:01.654756 16153 (util.c:110):logic error: cannot change query state from IDLE to PENDING
13:14:01.654764 16153 (token.c:495):tds_process_tokens(0x66a0e0, 0x7fffeeee3474, 0x7fffeeee3470, 0x100)
13:14:01.654773 16153 (token.c:498):tds_process_tokens() state is COMPLETED
13:14:01.654782 16153 (dblib.c:237):dblib_add_connection(0x2b28bcd7e4a0, 0x66a0e0)
13:14:01.654792 16153 (dblib.c:718):dbloginfree(0x67b140)
13:14:01.654801 16153 (dblib.c:1243):dbcmd(0x5e4ad0, SET ARITHABORT ON;SET CONCAT_NULL_YIELDS_NULL ON;SET ANSI_NULLS ON;SET ANSI_NULL_DF
LT_ON ON;SET ANSI_PADDING ON;SET ANSI_WARNINGS ON;SET ANSI_NULL_DFLT_ON ON;SET CURSOR_CLOSE_ON_COMMIT ON;SET QUOTED_IDENTIFIER ON)
13:14:01.654824 16153 (dblib.c:1250):dbcmd() bufsz = 0
13:14:01.654834 16153 (dblib.c:1298):dbsqlexec(0x5e4ad0)
13:14:01.654841 16153 (dblib.c:6722):dbsqlsend(0x5e4ad0)
13:14:01.654849 16153 (mem.c:563):tds_free_all_results()
13:14:01.654856 16153 (util.c:162):Changed query state from IDLE to QUERYING
13:14:01.654863 16153 (write.c:136):tds_put_string converting 212 bytes of "SET ARITHABORT ON;SET CONCAT_NULL_YIELDS_NULL ON;SET ANSI_NU
LLS ON;SET ANSI_NULL_DFLT_ON ON;SET ANSI_PADDING ON;SET ANSI_WARNINGS ON;SET ANSI_NULL_DFLT_ON ON;SET CURSOR_CLOSE_ON_COMMIT ON;SET QUOT
ED_IDENTIFIER ON"
13:14:01.654872 16153 (write.c:136):tds_put_string converting 84 bytes of "S ON;SET ANSI_NULL_DFLT_ON ON;SET CURSOR_CLOSE_ON_COMMIT ON;S
ET QUOTED_IDENTIFIER ON"
13:14:01.654881 16153 (write.c:164):tds_put_string wrote 424 bytes
13:14:01.654888 16153 (util.c:162):Changed query state from QUERYING to PENDING
13:14:01.654895 16153 (net.c:779):Sending packet
0000 01 01 01 b0 00 00 01 00-53 00 45 00 54 00 20 00 |........ S.E.T. .|
0010 41 00 52 00 49 00 54 00-48 00 41 00 42 00 4f 00 |A.R.I.T. H.A.B.O.|
0020 52 00 54 00 20 00 4f 00-4e 00 3b 00 53 00 45 00 |R.T. .O. N.;.S.E.|
0030 54 00 20 00 43 00 4f 00-4e 00 43 00 41 00 54 00 |T. .C.O. N.C.A.T.|
0040 5f 00 4e 00 55 00 4c 00-4c 00 5f 00 59 00 49 00 |_.N.U.L. L._.Y.I.|
0050 45 00 4c 00 44 00 53 00-5f 00 4e 00 55 00 4c 00 |E.L.D.S. _.N.U.L.|
0060 4c 00 20 00 4f 00 4e 00-3b 00 53 00 45 00 54 00 |L. .O.N. ;.S.E.T.|
0070 20 00 41 00 4e 00 53 00-49 00 5f 00 4e 00 55 00 | .A.N.S. I._.N.U.|
0080 4c 00 4c 00 53 00 20 00-4f 00 4e 00 3b 00 53 00 |L.L.S. . O.N.;.S.|
0090 45 00 54 00 20 00 41 00-4e 00 53 00 49 00 5f 00 |E.T. .A. N.S.I._.|
00a0 4e 00 55 00 4c 00 4c 00-5f 00 44 00 46 00 4c 00 |N.U.L.L. _.D.F.L.|
00b0 54 00 5f 00 4f 00 4e 00-20 00 4f 00 4e 00 3b 00 |T._.O.N. .O.N.;.|
00c0 53 00 45 00 54 00 20 00-41 00 4e 00 53 00 49 00 |S.E.T. . A.N.S.I.|
00d0 5f 00 50 00 41 00 44 00-44 00 49 00 4e 00 47 00 |_.P.A.D. D.I.N.G.|
00e0 20 00 4f 00 4e 00 3b 00-53 00 45 00 54 00 20 00 | .O.N.;. S.E.T. .|
00f0 41 00 4e 00 53 00 49 00-5f 00 57 00 41 00 52 00 |A.N.S.I. _.W.A.R.|
0100 4e 00 49 00 4e 00 47 00-53 00 20 00 4f 00 4e 00 |N.I.N.G. S. .O.N.|
0110 3b 00 53 00 45 00 54 00-20 00 41 00 4e 00 53 00 |;.S.E.T. .A.N.S.|
0120 49 00 5f 00 4e 00 55 00-4c 00 4c 00 5f 00 44 00 |I._.N.U. L.L._.D.|
0130 46 00 4c 00 54 00 5f 00-4f 00 4e 00 20 00 4f 00 |F.L.T._. O.N. .O.|
0140 4e 00 3b 00 53 00 45 00-54 00 20 00 43 00 55 00 |N.;.S.E. T. .C.U.|
0150 52 00 53 00 4f 00 52 00-5f 00 43 00 4c 00 4f 00 |R.S.O.R. _.C.L.O.|
0160 53 00 45 00 5f 00 4f 00-4e 00 5f 00 43 00 4f 00 |S.E._.O. N._.C.O.|
0170 4d 00 4d 00 49 00 54 00-20 00 4f 00 4e 00 3b 00 |M.M.I.T. .O.N.;.|
0180 53 00 45 00 54 00 20 00-51 00 55 00 4f 00 54 00 |S.E.T. . Q.U.O.T.|
0190 45 00 44 00 5f 00 49 00-44 00 45 00 4e 00 54 00 |E.D._.I. D.E.N.T.|
01a0 49 00 46 00 49 00 45 00-52 00 20 00 4f 00 4e 00 |I.F.I.E. R. .O.N.|
13:14:01.655016 16153 (dblib.c:4532):dbsqlok(0x5e4ad0)
13:14:01.655912 16153 (net.c:592):Received header
0000 04 01 00 50 00 36 01 00- |...P.6..|
13:14:01.655929 16153 (net.c:671):Received packet
0000 fd 01 00 b9 00 00 00 00-00 fd 01 00 b9 00 00 00 |........ ........|
0010 00 00 fd 01 00 b9 00 00-00 00 00 fd 01 00 b9 00 |........ ........|
0020 00 00 00 00 fd 01 00 b9-00 00 00 00 00 fd 01 00 |........ ........|
0030 b9 00 00 00 00 00 fd 01-00 b9 00 00 00 00 00 fd |........ ........|
0040 00 00 b9 00 00 00 00 00- |........|
13:14:01.655960 16153 (dblib.c:4565):dbsqlok() not done, calling tds_process_tokens()
13:14:01.655968 16153 (token.c:495):tds_process_tokens(0x66a0e0, 0x7fffeeee3910, 0x7fffeeee3914, 0x6914)
13:14:01.655977 16153 (util.c:162):Changed query state from PENDING to READING
13:14:01.655985 16153 (token.c:510):processing result tokens. marker is fd(DONE)
13:14:01.656003 16153 (token.c:2201):tds_process_end: more_results = 1
was_cancelled = 0
error = 0
done_count_valid = 0
13:14:01.656013 16153 (token.c:2232): rows_affected = 0
13:14:01.656021 16153 (util.c:162):Changed query state from READING to PENDING
13:14:01.656030 16153 (dblib.c:4601):dbsqlok() end status was success
13:14:01.656038 16153 (dblib.c:3093):dbcancel(0x5e4ad0)
13:14:01.656052 16153 (query.c:1934):tds_send_cancel: not in_cancel and not idle
13:14:01.656059 16153 (query.c:1943):tds_send_cancel: sending cancel packet
13:14:01.656066 16153 (net.c:779):Sending packet
0000 06 01 00 08 00 00 01 00- |........|
13:14:01.656080 16153 (token.c:495):tds_process_tokens(0x66a0e0, 0x7fffeeee38e4, (nil), 0x0)
13:14:01.656089 16153 (util.c:162):Changed query state from PENDING to READING
13:14:01.656096 16153 (token.c:510):processing result tokens. marker is fd(DONE)
13:14:01.656103 16153 (token.c:2201):tds_process_end: more_results = 1
was_cancelled = 0
error = 0
done_count_valid = 0
13:14:01.656110 16153 (token.c:2232): rows_affected = 0
13:14:01.656117 16153 (token.c:510):processing result tokens. marker is fd(DONE)
13:14:01.656124 16153 (token.c:2201):tds_process_end: more_results = 1
was_cancelled = 0
error = 0
done_count_valid = 0
13:14:01.656132 16153 (token.c:2232): rows_affected = 0
13:14:01.656138 16153 (token.c:510):processing result tokens. marker is fd(DONE)
13:14:01.656145 16153 (token.c:2201):tds_process_end: more_results = 1
was_cancelled = 0
error = 0
done_count_valid = 0
13:14:01.656152 16153 (token.c:2232): rows_affected = 0
13:14:01.656159 16153 (token.c:510):processing result tokens. marker is fd(DONE)
13:14:01.656168 16153 (token.c:2201):tds_process_end: more_results = 1
was_cancelled = 0
error = 0
done_count_valid = 0
13:14:01.656175 16153 (token.c:2232): rows_affected = 0
13:14:01.656182 16153 (token.c:510):processing result tokens. marker is fd(DONE)
13:14:01.656189 16153 (token.c:2201):tds_process_end: more_results = 1
was_cancelled = 0
error = 0
done_count_valid = 0
13:14:01.656196 16153 (token.c:2232): rows_affected = 0
13:14:01.656203 16153 (token.c:510):processing result tokens. marker is fd(DONE)
13:14:01.656210 16153 (token.c:2201):tds_process_end: more_results = 1
was_cancelled = 0
error = 0
done_count_valid = 0
13:14:01.656217 16153 (token.c:2232): rows_affected = 0
13:14:01.656224 16153 (token.c:510):processing result tokens. marker is fd(DONE)
13:14:01.656231 16153 (token.c:2201):tds_process_end: more_results = 0
was_cancelled = 0
error = 0
done_count_valid = 0
13:14:01.656238 16153 (token.c:2232): rows_affected = 0
13:14:01.656335 16153 (net.c:592):Received header
0000 04 01 00 11 00 36 01 00- |.....6..|
13:14:01.656351 16153 (net.c:671):Received packet
0000 fd 20 00 fd 00 00 00 00-00 |. ...... .|
13:14:01.656363 16153 (token.c:510):processing result tokens. marker is fd(DONE)
13:14:01.656372 16153 (token.c:2201):tds_process_end: more_results = 0
was_cancelled = 1
error = 0
done_count_valid = 0
13:14:01.656381 16153 (token.c:2217):tds_process_end() state set to TDS_IDLE
13:14:01.656389 16153 (util.c:162):Changed query state from READING to IDLE
13:14:01.656397 16153 (token.c:2232): rows_affected = 0
13:14:01.656412 16153 (dblib.c:1243):dbcmd(0x5e4ad0, USE [Arkis2db_siv])
13:14:01.656421 16153 (dblib.c:1250):dbcmd() bufsz = 213
13:14:01.656431 16153 (dblib.c:5727):dbfreebuf(0x5e4ad0)
13:14:01.656441 16153 (dblib.c:1298):dbsqlexec(0x5e4ad0)
13:14:01.656449 16153 (dblib.c:6722):dbsqlsend(0x5e4ad0)
13:14:01.656457 16153 (mem.c:563):tds_free_all_results()
13:14:01.656465 16153 (util.c:162):Changed query state from IDLE to QUERYING
13:14:01.656473 16153 (write.c:136):tds_put_string converting 18 bytes of "USE [Arkis2db_siv]"
13:14:01.656483 16153 (write.c:164):tds_put_string wrote 36 bytes
13:14:01.656491 16153 (util.c:162):Changed query state from QUERYING to PENDING
13:14:01.656509 16153 (net.c:779):Sending packet
0000 01 01 00 2c 00 00 01 00-55 00 53 00 45 00 20 00 |...,.... U.S.E. .|
0010 5b 00 41 00 72 00 6b 00-69 00 73 00 32 00 64 00 |[.A.r.k. i.s.2.d.|
0020 62 00 5f 00 73 00 69 00-76 00 5d 00 |b._.s.i. v.].|
13:14:01.656542 16153 (dblib.c:4532):dbsqlok(0x5e4ad0)
13:14:01.657086 16153 (net.c:592):Received header
0000 04 01 00 c3 00 36 01 00- |.....6..|
13:14:01.657102 16153 (net.c:671):Received packet
0000 e3 33 00 01 0c 41 00 72-00 6b 00 69 00 73 00 32 |.3...A.r .k.i.s.2|
0010 00 64 00 62 00 5f 00 53-00 69 00 76 00 0c 41 00 |.d.b._.S .i.v..A.|
0020 72 00 6b 00 69 00 73 00-32 00 64 00 62 00 5f 00 |r.k.i.s. 2.d.b._.|
0030 53 00 69 00 76 00 ab 6e-00 45 16 00 00 01 00 2b |S.i.v..n .E.....+|
0040 00 43 00 68 00 61 00 6e-00 67 00 65 00 64 00 20 |.C.h.a.n .g.e.d. |
0050 00 64 00 61 00 74 00 61-00 62 00 61 00 73 00 65 |.d.a.t.a .b.a.s.e|
0060 00 20 00 63 00 6f 00 6e-00 74 00 65 00 78 00 74 |. .c.o.n .t.e.x.t|
0070 00 20 00 74 00 6f 00 20-00 27 00 41 00 72 00 6b |. .t.o. .'.A.r.k|
0080 00 69 00 73 00 32 00 64-00 62 00 5f 00 53 00 69 |.i.s.2.d .b._.S.i|
0090 00 76 00 27 00 2e 00 06-45 00 4c 00 52 00 4f 00 |.v.'.... E.L.R.O.|
00a0 4e 00 44 00 00 01 00 e3-08 00 07 05 0b 04 f0 00 |N.D..... ........|
00b0 00 00 fd 00 00 e2 00 00-00 00 00 |........ ...|
13:14:01.657167 16153 (dblib.c:4565):dbsqlok() not done, calling tds_process_tokens()
13:14:01.657175 16153 (token.c:495):tds_process_tokens(0x66a0e0, 0x7fffeeee3870, 0x7fffeeee3874, 0x6914)
13:14:01.657184 16153 (util.c:162):Changed query state from PENDING to READING
13:14:01.657193 16153 (token.c:510):processing result tokens. marker is e3(ENVCHANGE)
13:14:01.657201 16153 (token.c:108):tds_process_default_tokens() marker is e3(ENVCHANGE)
13:14:01.657212 16153 (dblib.c:325):db_env_chg(0x66a0e0, 1, Arkis2db_Siv, Arkis2db_Siv)
13:14:01.657226 16153 (token.c:510):processing result tokens. marker is ab(INFO)
13:14:01.657234 16153 (token.c:108):tds_process_default_tokens() marker is ab(INFO)
13:14:01.657241 16153 (token.c:2451):tds_process_msg() reading message from server
13:14:01.657250 16153 (token.c:2516):tds_process_msg() calling client msg handler
13:14:01.657258 16153 (dbutil.c:86):_dblib_handle_info_message(0x650390, 0x66a0e0, 0x7fffeeee36c0)
13:14:01.657265 16153 (dbutil.c:87):msgno 5701: "Changed database context to 'Arkis2db_Siv'."
13:14:01.657274 16153 (token.c:2529):tds_process_msg() returning TDS_SUCCEED
13:14:01.657281 16153 (token.c:510):processing result tokens. marker is e3(ENVCHANGE)
13:14:01.657288 16153 (token.c:108):tds_process_default_tokens() marker is e3(ENVCHANGE)
13:14:01.657295 16153 (token.c:2281):tds_process_env_chg(): 5 bytes of collation data received
13:14:01.657302 16153 (token.c:2282):tds->collation was
0000 0b 04 f0 00 00 - |.....|
13:14:01.657312 16153 (iconv.c:985):setting server single-byte charset to "CP1252"
13:14:01.657319 16153 (token.c:2292):tds->collation now
0000 0b 04 f0 00 00 - |.....|
13:14:01.657328 16153 (token.c:510):processing result tokens. marker is fd(DONE)
13:14:01.657336 16153 (token.c:2201):tds_process_end: more_results = 0
was_cancelled = 0
error = 0
done_count_valid = 0
13:14:01.657343 16153 (token.c:2217):tds_process_end() state set to TDS_IDLE
13:14:01.657350 16153 (util.c:162):Changed query state from READING to IDLE
13:14:01.657357 16153 (token.c:2232): rows_affected = 0
13:14:01.657364 16153 (util.c:110):logic error: cannot change query state from IDLE to PENDING
13:14:01.657371 16153 (dblib.c:4601):dbsqlok() end status was success
13:14:01.657378 16153 (dblib.c:3093):dbcancel(0x5e4ad0)
13:14:01.657385 16153 (query.c:1934):tds_send_cancel: not in_cancel and idle
13:14:01.657415 16153 (dblib.c:3093):dbcancel(0x5e4ad0)
13:14:01.657423 16153 (query.c:1934):tds_send_cancel: not in_cancel and idle
13:14:01.657431 16153 (dblib.c:1243):dbcmd(0x5e4ad0, BEGIN TRAN)
13:14:01.657438 16153 (dblib.c:1250):dbcmd() bufsz = 19
13:14:01.657453 16153 (dblib.c:5727):dbfreebuf(0x5e4ad0)
13:14:01.657461 16153 (dblib.c:1298):dbsqlexec(0x5e4ad0)
13:14:01.657468 16153 (dblib.c:6722):dbsqlsend(0x5e4ad0)
13:14:01.657475 16153 (mem.c:563):tds_free_all_results()
13:14:01.657482 16153 (util.c:162):Changed query state from IDLE to QUERYING
13:14:01.657489 16153 (write.c:136):tds_put_string converting 10 bytes of "BEGIN TRAN"
13:14:01.657497 16153 (write.c:164):tds_put_string wrote 20 bytes
13:14:01.657504 16153 (util.c:162):Changed query state from QUERYING to PENDING
13:14:01.657511 16153 (net.c:779):Sending packet
0000 01 01 00 1c 00 00 01 00-42 00 45 00 47 00 49 00 |........ B.E.G.I.|
0010 4e 00 20 00 54 00 52 00-41 00 4e 00 |N. .T.R. A.N.|
13:14:01.657531 16153 (dblib.c:4532):dbsqlok(0x5e4ad0)
13:14:01.657728 16153 (net.c:592):Received header
0000 04 01 00 11 00 36 01 00- |.....6..|
13:14:01.657744 16153 (net.c:671):Received packet
0000 fd 00 00 d4 00 00 00 00-00 |........ .|
13:14:01.657756 16153 (dblib.c:4565):dbsqlok() not done, calling tds_process_tokens()
13:14:01.657765 16153 (token.c:495):tds_process_tokens(0x66a0e0, 0x7fffeeee3290, 0x7fffeeee3294, 0x6914)
13:14:01.657774 16153 (util.c:162):Changed query state from PENDING to READING
13:14:01.657782 16153 (token.c:510):processing result tokens. marker is fd(DONE)
13:14:01.657791 16153 (token.c:2201):tds_process_end: more_results = 0
was_cancelled = 0
error = 0
done_count_valid = 0
13:14:01.657799 16153 (token.c:2217):tds_process_end() state set to TDS_IDLE
13:14:01.657807 16153 (util.c:162):Changed query state from READING to IDLE
13:14:01.657816 16153 (token.c:2232): rows_affected = 0
13:14:01.657824 16153 (util.c:110):logic error: cannot change query state from IDLE to PENDING
13:14:01.657832 16153 (dblib.c:4601):dbsqlok() end status was success
13:14:01.657842 16153 (dblib.c:1599):dbresults(0x5e4ad0)
13:14:01.657851 16153 (dblib.c:1608):dbresults: dbresults_state is 5 (_DB_RES_SUCCEED)
13:14:01.657865 16153 (dblib.c:1587):dbresults returning 1 (SUCCEED)
13:14:01.657874 16153 (dblib.c:2678):dbcount(0x5e4ad0)
13:14:01.657881 16153 (dblib.c:3093):dbcancel(0x5e4ad0)
13:14:01.657888 16153 (query.c:1934):tds_send_cancel: not in_cancel and idle
13:14:24.828374 16153 (dblib.c:3093):dbcancel(0x5e4ad0)
13:14:24.828410 16153 (query.c:1934):tds_send_cancel: not in_cancel and idle
13:14:24.828433 16153 (dblib.c:1243):dbcmd(0x5e4ad0, SELECT getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdat
e(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),ge
tdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(
),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getd
ate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),
getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdat
e(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),ge
tdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(
),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getd
ate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),
getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdat
e(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),ge
tdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(
),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getd
ate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),
getdate(),getdate(),getdate())
13:14:24.828464 16153 (dblib.c:1250):dbcmd() bufsz = 11
13:14:24.828472 16153 (dblib.c:5727):dbfreebuf(0x5e4ad0)
13:14:24.828482 16153 (dblib.c:1298):dbsqlexec(0x5e4ad0)
13:14:24.828490 16153 (dblib.c:6722):dbsqlsend(0x5e4ad0)
13:14:24.828498 16153 (mem.c:563):tds_free_all_results()
13:14:24.828505 16153 (util.c:162):Changed query state from IDLE to QUERYING
13:14:24.828514 16153 (write.c:136):tds_put_string converting 1990 bytes of "SELECT getdate(),getdate(),getdate(),getdate(),getdate(),ge
tdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(
),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getd
ate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),
getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdat
e(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),ge
tdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(
),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getd
ate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),
getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdat
e(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),ge
tdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(
),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getd
ate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),
getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdat
e(),getdate(),getdate(),gqØ"
13:14:24.828537 16153 (write.c:136):tds_put_string converting 1862 bytes of "etdate(),getdate(),getdate(),getdate(),getdate(),getdate(),
getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdat
e(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),ge
tdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(
),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getd
ate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),
getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdat
e(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),ge
tdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(
),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getd
ate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),
getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdat
e(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),ge
tdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(
),getdate(),getdate(),getdate(),gqØ"
13:14:24.828559 16153 (write.c:136):tds_put_string converting 1734 bytes of ",getdate(),getdate(),getdate(),getdate(),getdate(),getdate(
),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getd
ate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),
getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdat
e(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),ge
tdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(
),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getd
ate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),
getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdat
e(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),ge
tdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(
),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getd
ate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),
getdate(),getdate(),getdate(),getdate(),gqØ"
13:14:24.828572 16153 (write.c:136):tds_put_string converting 1606 bytes of "(),getdate(),getdate(),getdate(),getdate(),getdate(),getdat
e(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),ge
tdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(
),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getd
ate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),
getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdat
e(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),ge
tdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(
),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getd
ate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),
getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdat
e(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),ge
tdate(),getdate(),getdate(),getdate(),getdate(),gqØ"
13:14:24.828592 16153 (write.c:136):tds_put_string converting 1478 bytes of "te(),getdate(),getdate(),getdate(),getdate(),getdate(),getd
ate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),
getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdat
e(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),ge
tdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(
),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getd
ate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),
getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdat
e(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),ge
tdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(
),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getd
ate(),getdate(),getdate(),getdate(),getdate(),getdate(),gqØ"
13:14:24.828604 16153 (write.c:136):tds_put_string converting 1350 bytes of "date(),getdate(),getdate(),getdate(),getdate(),getdate(),ge
tdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(
),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getd
ate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),
getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdat
e(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),ge
tdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(
),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getd
ate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),
getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdat
e(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),gqØ"
13:14:24.828615 16153 (write.c:136):tds_put_string converting 1222 bytes of "etdate(),getdate(),getdate(),getdate(),getdate(),getdate(),
getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdat
e(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),ge
tdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(
),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getd
ate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),
getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdat
e(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),ge
tdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(
),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),gqØ"
13:14:24.828634 16153 (write.c:136):tds_put_string converting 1094 bytes of ",getdate(),getdate(),getdate(),getdate(),getdate(),getdate(
),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getd
ate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),
getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdat
e(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),ge
tdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(
),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getd
ate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),
getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),gqØ"
13:14:24.828646 16153 (write.c:136):tds_put_string converting 966 bytes of "(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate
(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),get
date(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate()
,getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getda
te(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),g
etdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate
(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),get
date(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),gqØ"
13:14:24.828656 16153 (write.c:136):tds_put_string converting 838 bytes of "te(),getdate(),getdate(),getdate(),getdate(),getdate(),getda
te(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),g
etdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate
(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),get
date(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate()
,getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getda
te(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),gqØ"
13:14:24.828666 16153 (write.c:136):tds_put_string converting 710 bytes of "date(),getdate(),getdate(),getdate(),getdate(),getdate(),get
date(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate()
,getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getda
te(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),g
etdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate
(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),gqØ"
13:14:24.828684 16153 (write.c:136):tds_put_string converting 582 bytes of "etdate(),getdate(),getdate(),getdate(),getdate(),getdate(),g
etdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate
(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),get
date(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate()
,getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),gqØ"
13:14:24.828694 16153 (write.c:136):tds_put_string converting 454 bytes of ",getdate(),getdate(),getdate(),getdate(),getdate(),getdate()
,getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getda
te(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),g
etdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),gqØ"
13:14:24.828703 16153 (write.c:136):tds_put_string converting 326 bytes of "(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate
(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),get
date(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),gqØ"
13:14:24.828712 16153 (write.c:136):tds_put_string converting 198 bytes of "te(),getdate(),getdate(),getdate(),getdate(),getdate(),getda
te(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),g
qØ"
13:14:24.828720 16153 (write.c:136):tds_put_string converting 70 bytes of "date(),getdate(),getdate(),getdate(),getdate(),getdate(),getd
ate(),gqØ"
13:14:24.828729 16153 (write.c:164):tds_put_string wrote 3980 bytes
13:14:24.828736 16153 (util.c:162):Changed query state from QUERYING to PENDING
13:14:24.828744 16153 (net.c:779):Sending packet
0000 01 01 0f 94 00 00 01 00-53 00 45 00 4c 00 45 00 |........ S.E.L.E.|
0010 43 00 54 00 20 00 67 00-65 00 74 00 64 00 61 00 |C.T. .g. e.t.d.a.|
0020 74 00 65 00 28 00 29 00-2c 00 67 00 65 00 74 00 |t.e.(.). ,.g.e.t.|
0030 64 00 61 00 74 00 65 00-28 00 29 00 2c 00 67 00 |d.a.t.e. (.).,.g.|
0040 65 00 74 00 64 00 61 00-74 00 65 00 28 00 29 00 |e.t.d.a. t.e.(.).|
0050 2c 00 67 00 65 00 74 00-64 00 61 00 74 00 65 00 |,.g.e.t. d.a.t.e.|
0060 28 00 29 00 2c 00 67 00-65 00 74 00 64 00 61 00 |(.).,.g. e.t.d.a.|
0070 74 00 65 00 28 00 29 00-2c 00 67 00 65 00 74 00 |t.e.(.). ,.g.e.t.|
0080 64 00 61 00 74 00 65 00-28 00 29 00 2c 00 67 00 |d.a.t.e. (.).,.g.|
0090 65 00 74 00 64 00 61 00-74 00 65 00 28 00 29 00 |e.t.d.a. t.e.(.).|
00a0 2c 00 67 00 65 00 74 00-64 00 61 00 74 00 65 00 |,.g.e.t. d.a.t.e.|
00b0 28 00 29 00 2c 00 67 00-65 00 74 00 64 00 61 00 |(.).,.g. e.t.d.a.|
00c0 74 00 65 00 28 00 29 00-2c 00 67 00 65 00 74 00 |t.e.(.). ,.g.e.t.|
00d0 64 00 61 00 74 00 65 00-28 00 29 00 2c 00 67 00 |d.a.t.e. (.).,.g.|
00e0 65 00 74 00 64 00 61 00-74 00 65 00 28 00 29 00 |e.t.d.a. t.e.(.).|
00f0 2c 00 67 00 65 00 74 00-64 00 61 00 74 00 65 00 |,.g.e.t. d.a.t.e.|
0100 28 00 29 00 2c 00 67 00-65 00 74 00 64 00 61 00 |(.).,.g. e.t.d.a.|
0110 74 00 65 00 28 00 29 00-2c 00 67 00 65 00 74 00 |t.e.(.). ,.g.e.t.|
0120 64 00 61 00 74 00 65 00-28 00 29 00 2c 00 67 00 |d.a.t.e. (.).,.g.|
0130 65 00 74 00 64 00 61 00-74 00 65 00 28 00 29 00 |e.t.d.a. t.e.(.).|
0140 2c 00 67 00 65 00 74 00-64 00 61 00 74 00 65 00 |,.g.e.t. d.a.t.e.|
0150 28 00 29 00 2c 00 67 00-65 00 74 00 64 00 61 00 |(.).,.g. e.t.d.a.|
0160 74 00 65 00 28 00 29 00-2c 00 67 00 65 00 74 00 |t.e.(.). ,.g.e.t.|
0170 64 00 61 00 74 00 65 00-28 00 29 00 2c 00 67 00 |d.a.t.e. (.).,.g.|
0180 65 00 74 00 64 00 61 00-74 00 65 00 28 00 29 00 |e.t.d.a. t.e.(.).|
0190 2c 00 67 00 65 00 74 00-64 00 61 00 74 00 65 00 |,.g.e.t. d.a.t.e.|
01a0 28 00 29 00 2c 00 67 00-65 00 74 00 64 00 61 00 |(.).,.g. e.t.d.a.|
01b0 74 00 65 00 28 00 29 00-2c 00 67 00 65 00 74 00 |t.e.(.). ,.g.e.t.|
01c0 64 00 61 00 74 00 65 00-28 00 29 00 2c 00 67 00 |d.a.t.e. (.).,.g.|
01d0 65 00 74 00 64 00 61 00-74 00 65 00 28 00 29 00 |e.t.d.a. t.e.(.).|
01e0 2c 00 67 00 65 00 74 00-64 00 61 00 74 00 65 00 |,.g.e.t. d.a.t.e.|
01f0 28 00 29 00 2c 00 67 00-65 00 74 00 64 00 61 00 |(.).,.g. e.t.d.a.|
0200 74 00 65 00 28 00 29 00-2c 00 67 00 65 00 74 00 |t.e.(.). ,.g.e.t.|
0210 64 00 61 00 74 00 65 00-28 00 29 00 2c 00 67 00 |d.a.t.e. (.).,.g.|
0220 65 00 74 00 64 00 61 00-74 00 65 00 28 00 29 00 |e.t.d.a. t.e.(.).|
0230 2c 00 67 00 65 00 74 00-64 00 61 00 74 00 65 00 |,.g.e.t. d.a.t.e.|
0240 28 00 29 00 2c 00 67 00-65 00 74 00 64 00 61 00 |(.).,.g. e.t.d.a.|
0250 74 00 65 00 28 00 29 00-2c 00 67 00 65 00 74 00 |t.e.(.). ,.g.e.t.|
0260 64 00 61 00 74 00 65 00-28 00 29 00 2c 00 67 00 |d.a.t.e. (.).,.g.|
0270 65 00 74 00 64 00 61 00-74 00 65 00 28 00 29 00 |e.t.d.a. t.e.(.).|
0280 2c 00 67 00 65 00 74 00-64 00 61 00 74 00 65 00 |,.g.e.t. d.a.t.e.|
0290 28 00 29 00 2c 00 67 00-65 00 74 00 64 00 61 00 |(.).,.g. e.t.d.a.|
02a0 74 00 65 00 28 00 29 00-2c 00 67 00 65 00 74 00 |t.e.(.). ,.g.e.t.|
02b0 64 00 61 00 74 00 65 00-28 00 29 00 2c 00 67 00 |d.a.t.e. (.).,.g.|
02c0 65 00 74 00 64 00 61 00-74 00 65 00 28 00 29 00 |e.t.d.a. t.e.(.).|
02d0 2c 00 67 00 65 00 74 00-64 00 61 00 74 00 65 00 |,.g.e.t. d.a.t.e.|
02e0 28 00 29 00 2c 00 67 00-65 00 74 00 64 00 61 00 |(.).,.g. e.t.d.a.|
02f0 74 00 65 00 28 00 29 00-2c 00 67 00 65 00 74 00 |t.e.(.). ,.g.e.t.|
0300 64 00 61 00 74 00 65 00-28 00 29 00 2c 00 67 00 |d.a.t.e. (.).,.g.|
0310 65 00 74 00 64 00 61 00-74 00 65 00 28 00 29 00 |e.t.d.a. t.e.(.).|
0320 2c 00 67 00 65 00 74 00-64 00 61 00 74 00 65 00 |,.g.e.t. d.a.t.e.|
0330 28 00 29 00 2c 00 67 00-65 00 74 00 64 00 61 00 |(.).,.g. e.t.d.a.|
0340 74 00 65 00 28 00 29 00-2c 00 67 00 65 00 74 00 |t.e.(.). ,.g.e.t.|
0350 64 00 61 00 74 00 65 00-28 00 29 00 2c 00 67 00 |d.a.t.e. (.).,.g.|
0360 65 00 74 00 64 00 61 00-74 00 65 00 28 00 29 00 |e.t.d.a. t.e.(.).|
0370 2c 00 67 00 65 00 74 00-64 00 61 00 74 00 65 00 |,.g.e.t. d.a.t.e.|
0380 28 00 29 00 2c 00 67 00-65 00 74 00 64 00 61 00 |(.).,.g. e.t.d.a.|
0390 74 00 65 00 28 00 29 00-2c 00 67 00 65 00 74 00 |t.e.(.). ,.g.e.t.|
03a0 64 00 61 00 74 00 65 00-28 00 29 00 2c 00 67 00 |d.a.t.e. (.).,.g.|
03b0 65 00 74 00 64 00 61 00-74 00 65 00 28 00 29 00 |e.t.d.a. t.e.(.).|
03c0 2c 00 67 00 65 00 74 00-64 00 61 00 74 00 65 00 |,.g.e.t. d.a.t.e.|
03d0 28 00 29 00 2c 00 67 00-65 00 74 00 64 00 61 00 |(.).,.g. e.t.d.a.|
03e0 74 00 65 00 28 00 29 00-2c 00 67 00 65 00 74 00 |t.e.(.). ,.g.e.t.|
03f0 64 00 61 00 74 00 65 00-28 00 29 00 2c 00 67 00 |d.a.t.e. (.).,.g.|
0400 65 00 74 00 64 00 61 00-74 00 65 00 28 00 29 00 |e.t.d.a. t.e.(.).|
0410 2c 00 67 00 65 00 74 00-64 00 61 00 74 00 65 00 |,.g.e.t. d.a.t.e.|
0420 28 00 29 00 2c 00 67 00-65 00 74 00 64 00 61 00 |(.).,.g. e.t.d.a.|
0430 74 00 65 00 28 00 29 00-2c 00 67 00 65 00 74 00 |t.e.(.). ,.g.e.t.|
0440 64 00 61 00 74 00 65 00-28 00 29 00 2c 00 67 00 |d.a.t.e. (.).,.g.|
0450 65 00 74 00 64 00 61 00-74 00 65 00 28 00 29 00 |e.t.d.a. t.e.(.).|
0460 2c 00 67 00 65 00 74 00-64 00 61 00 74 00 65 00 |,.g.e.t. d.a.t.e.|
0470 28 00 29 00 2c 00 67 00-65 00 74 00 64 00 61 00 |(.).,.g. e.t.d.a.|
0480 74 00 65 00 28 00 29 00-2c 00 67 00 65 00 74 00 |t.e.(.). ,.g.e.t.|
0490 64 00 61 00 74 00 65 00-28 00 29 00 2c 00 67 00 |d.a.t.e. (.).,.g.|
04a0 65 00 74 00 64 00 61 00-74 00 65 00 28 00 29 00 |e.t.d.a. t.e.(.).|
04b0 2c 00 67 00 65 00 74 00-64 00 61 00 74 00 65 00 |,.g.e.t. d.a.t.e.|
04c0 28 00 29 00 2c 00 67 00-65 00 74 00 64 00 61 00 |(.).,.g. e.t.d.a.|
04d0 74 00 65 00 28 00 29 00-2c 00 67 00 65 00 74 00 |t.e.(.). ,.g.e.t.|
04e0 64 00 61 00 74 00 65 00-28 00 29 00 2c 00 67 00 |d.a.t.e. (.).,.g.|
04f0 65 00 74 00 64 00 61 00-74 00 65 00 28 00 29 00 |e.t.d.a. t.e.(.).|
0500 2c 00 67 00 65 00 74 00-64 00 61 00 74 00 65 00 |,.g.e.t. d.a.t.e.|
0510 28 00 29 00 2c 00 67 00-65 00 74 00 64 00 61 00 |(.).,.g. e.t.d.a.|
0520 74 00 65 00 28 00 29 00-2c 00 67 00 65 00 74 00 |t.e.(.). ,.g.e.t.|
0530 64 00 61 00 74 00 65 00-28 00 29 00 2c 00 67 00 |d.a.t.e. (.).,.g.|
0540 65 00 74 00 64 00 61 00-74 00 65 00 28 00 29 00 |e.t.d.a. t.e.(.).|
0550 2c 00 67 00 65 00 74 00-64 00 61 00 74 00 65 00 |,.g.e.t. d.a.t.e.|
0560 28 00 29 00 2c 00 67 00-65 00 74 00 64 00 61 00 |(.).,.g. e.t.d.a.|
0570 74 00 65 00 28 00 29 00-2c 00 67 00 65 00 74 00 |t.e.(.). ,.g.e.t.|
0580 64 00 61 00 74 00 65 00-28 00 29 00 2c 00 67 00 |d.a.t.e. (.).,.g.|
0590 65 00 74 00 64 00 61 00-74 00 65 00 28 00 29 00 |e.t.d.a. t.e.(.).|
05a0 2c 00 67 00 65 00 74 00-64 00 61 00 74 00 65 00 |,.g.e.t. d.a.t.e.|
05b0 28 00 29 00 2c 00 67 00-65 00 74 00 64 00 61 00 |(.).,.g. e.t.d.a.|
05c0 74 00 65 00 28 00 29 00-2c 00 67 00 65 00 74 00 |t.e.(.). ,.g.e.t.|
05d0 64 00 61 00 74 00 65 00-28 00 29 00 2c 00 67 00 |d.a.t.e. (.).,.g.|
05e0 65 00 74 00 64 00 61 00-74 00 65 00 28 00 29 00 |e.t.d.a. t.e.(.).|
05f0 2c 00 67 00 65 00 74 00-64 00 61 00 74 00 65 00 |,.g.e.t. d.a.t.e.|
0600 28 00 29 00 2c 00 67 00-65 00 74 00 64 00 61 00 |(.).,.g. e.t.d.a.|
0610 74 00 65 00 28 00 29 00-2c 00 67 00 65 00 74 00 |t.e.(.). ,.g.e.t.|
0620 64 00 61 00 74 00 65 00-28 00 29 00 2c 00 67 00 |d.a.t.e. (.).,.g.|
0630 65 00 74 00 64 00 61 00-74 00 65 00 28 00 29 00 |e.t.d.a. t.e.(.).|
0640 2c 00 67 00 65 00 74 00-64 00 61 00 74 00 65 00 |,.g.e.t. d.a.t.e.|
0650 28 00 29 00 2c 00 67 00-65 00 74 00 64 00 61 00 |(.).,.g. e.t.d.a.|
0660 74 00 65 00 28 00 29 00-2c 00 67 00 65 00 74 00 |t.e.(.). ,.g.e.t.|
0670 64 00 61 00 74 00 65 00-28 00 29 00 2c 00 67 00 |d.a.t.e. (.).,.g.|
0680 65 00 74 00 64 00 61 00-74 00 65 00 28 00 29 00 |e.t.d.a. t.e.(.).|
0690 2c 00 67 00 65 00 74 00-64 00 61 00 74 00 65 00 |,.g.e.t. d.a.t.e.|
06a0 28 00 29 00 2c 00 67 00-65 00 74 00 64 00 61 00 |(.).,.g. e.t.d.a.|
06b0 74 00 65 00 28 00 29 00-2c 00 67 00 65 00 74 00 |t.e.(.). ,.g.e.t.|
06c0 64 00 61 00 74 00 65 00-28 00 29 00 2c 00 67 00 |d.a.t.e. (.).,.g.|
06d0 65 00 74 00 64 00 61 00-74 00 65 00 28 00 29 00 |e.t.d.a. t.e.(.).|
06e0 2c 00 67 00 65 00 74 00-64 00 61 00 74 00 65 00 |,.g.e.t. d.a.t.e.|
06f0 28 00 29 00 2c 00 67 00-65 00 74 00 64 00 61 00 |(.).,.g. e.t.d.a.|
0700 74 00 65 00 28 00 29 00-2c 00 67 00 65 00 74 00 |t.e.(.). ,.g.e.t.|
0710 64 00 61 00 74 00 65 00-28 00 29 00 2c 00 67 00 |d.a.t.e. (.).,.g.|
0720 65 00 74 00 64 00 61 00-74 00 65 00 28 00 29 00 |e.t.d.a. t.e.(.).|
0730 2c 00 67 00 65 00 74 00-64 00 61 00 74 00 65 00 |,.g.e.t. d.a.t.e.|
0740 28 00 29 00 2c 00 67 00-65 00 74 00 64 00 61 00 |(.).,.g. e.t.d.a.|
0750 74 00 65 00 28 00 29 00-2c 00 67 00 65 00 74 00 |t.e.(.). ,.g.e.t.|
0760 64 00 61 00 74 00 65 00-28 00 29 00 2c 00 67 00 |d.a.t.e. (.).,.g.|
0770 65 00 74 00 64 00 61 00-74 00 65 00 28 00 29 00 |e.t.d.a. t.e.(.).|
0780 2c 00 67 00 65 00 74 00-64 00 61 00 74 00 65 00 |,.g.e.t. d.a.t.e.|
0790 28 00 29 00 2c 00 67 00-65 00 74 00 64 00 61 00 |(.).,.g. e.t.d.a.|
07a0 74 00 65 00 28 00 29 00-2c 00 67 00 65 00 74 00 |t.e.(.). ,.g.e.t.|
07b0 64 00 61 00 74 00 65 00-28 00 29 00 2c 00 67 00 |d.a.t.e. (.).,.g.|
07c0 65 00 74 00 64 00 61 00-74 00 65 00 28 00 29 00 |e.t.d.a. t.e.(.).|
07d0 2c 00 67 00 65 00 74 00-64 00 61 00 74 00 65 00 |,.g.e.t. d.a.t.e.|
07e0 28 00 29 00 2c 00 67 00-65 00 74 00 64 00 61 00 |(.).,.g. e.t.d.a.|
07f0 74 00 65 00 28 00 29 00-2c 00 67 00 65 00 74 00 |t.e.(.). ,.g.e.t.|
0800 64 00 61 00 74 00 65 00-28 00 29 00 2c 00 67 00 |d.a.t.e. (.).,.g.|
0810 65 00 74 00 64 00 61 00-74 00 65 00 28 00 29 00 |e.t.d.a. t.e.(.).|
0820 2c 00 67 00 65 00 74 00-64 00 61 00 74 00 65 00 |,.g.e.t. d.a.t.e.|
0830 28 00 29 00 2c 00 67 00-65 00 74 00 64 00 61 00 |(.).,.g. e.t.d.a.|
0840 74 00 65 00 28 00 29 00-2c 00 67 00 65 00 74 00 |t.e.(.). ,.g.e.t.|
0850 64 00 61 00 74 00 65 00-28 00 29 00 2c 00 67 00 |d.a.t.e. (.).,.g.|
0860 65 00 74 00 64 00 61 00-74 00 65 00 28 00 29 00 |e.t.d.a. t.e.(.).|
0870 2c 00 67 00 65 00 74 00-64 00 61 00 74 00 65 00 |,.g.e.t. d.a.t.e.|
0880 28 00 29 00 2c 00 67 00-65 00 74 00 64 00 61 00 |(.).,.g. e.t.d.a.|
0890 74 00 65 00 28 00 29 00-2c 00 67 00 65 00 74 00 |t.e.(.). ,.g.e.t.|
08a0 64 00 61 00 74 00 65 00-28 00 29 00 2c 00 67 00 |d.a.t.e. (.).,.g.|
08b0 65 00 74 00 64 00 61 00-74 00 65 00 28 00 29 00 |e.t.d.a. t.e.(.).|
08c0 2c 00 67 00 65 00 74 00-64 00 61 00 74 00 65 00 |,.g.e.t. d.a.t.e.|
08d0 28 00 29 00 2c 00 67 00-65 00 74 00 64 00 61 00 |(.).,.g. e.t.d.a.|
08e0 74 00 65 00 28 00 29 00-2c 00 67 00 65 00 74 00 |t.e.(.). ,.g.e.t.|
08f0 64 00 61 00 74 00 65 00-28 00 29 00 2c 00 67 00 |d.a.t.e. (.).,.g.|
0900 65 00 74 00 64 00 61 00-74 00 65 00 28 00 29 00 |e.t.d.a. t.e.(.).|
0910 2c 00 67 00 65 00 74 00-64 00 61 00 74 00 65 00 |,.g.e.t. d.a.t.e.|
0920 28 00 29 00 2c 00 67 00-65 00 74 00 64 00 61 00 |(.).,.g. e.t.d.a.|
0930 74 00 65 00 28 00 29 00-2c 00 67 00 65 00 74 00 |t.e.(.). ,.g.e.t.|
0940 64 00 61 00 74 00 65 00-28 00 29 00 2c 00 67 00 |d.a.t.e. (.).,.g.|
0950 65 00 74 00 64 00 61 00-74 00 65 00 28 00 29 00 |e.t.d.a. t.e.(.).|
0960 2c 00 67 00 65 00 74 00-64 00 61 00 74 00 65 00 |,.g.e.t. d.a.t.e.|
0970 28 00 29 00 2c 00 67 00-65 00 74 00 64 00 61 00 |(.).,.g. e.t.d.a.|
0980 74 00 65 00 28 00 29 00-2c 00 67 00 65 00 74 00 |t.e.(.). ,.g.e.t.|
0990 64 00 61 00 74 00 65 00-28 00 29 00 2c 00 67 00 |d.a.t.e. (.).,.g.|
09a0 65 00 74 00 64 00 61 00-74 00 65 00 28 00 29 00 |e.t.d.a. t.e.(.).|
09b0 2c 00 67 00 65 00 74 00-64 00 61 00 74 00 65 00 |,.g.e.t. d.a.t.e.|
09c0 28 00 29 00 2c 00 67 00-65 00 74 00 64 00 61 00 |(.).,.g. e.t.d.a.|
09d0 74 00 65 00 28 00 29 00-2c 00 67 00 65 00 74 00 |t.e.(.). ,.g.e.t.|
09e0 64 00 61 00 74 00 65 00-28 00 29 00 2c 00 67 00 |d.a.t.e. (.).,.g.|
09f0 65 00 74 00 64 00 61 00-74 00 65 00 28 00 29 00 |e.t.d.a. t.e.(.).|
0a00 2c 00 67 00 65 00 74 00-64 00 61 00 74 00 65 00 |,.g.e.t. d.a.t.e.|
0a10 28 00 29 00 2c 00 67 00-65 00 74 00 64 00 61 00 |(.).,.g. e.t.d.a.|
0a20 74 00 65 00 28 00 29 00-2c 00 67 00 65 00 74 00 |t.e.(.). ,.g.e.t.|
0a30 64 00 61 00 74 00 65 00-28 00 29 00 2c 00 67 00 |d.a.t.e. (.).,.g.|
0a40 65 00 74 00 64 00 61 00-74 00 65 00 28 00 29 00 |e.t.d.a. t.e.(.).|
0a50 2c 00 67 00 65 00 74 00-64 00 61 00 74 00 65 00 |,.g.e.t. d.a.t.e.|
0a60 28 00 29 00 2c 00 67 00-65 00 74 00 64 00 61 00 |(.).,.g. e.t.d.a.|
0a70 74 00 65 00 28 00 29 00-2c 00 67 00 65 00 74 00 |t.e.(.). ,.g.e.t.|
0a80 64 00 61 00 74 00 65 00-28 00 29 00 2c 00 67 00 |d.a.t.e. (.).,.g.|
0a90 65 00 74 00 64 00 61 00-74 00 65 00 28 00 29 00 |e.t.d.a. t.e.(.).|
0aa0 2c 00 67 00 65 00 74 00-64 00 61 00 74 00 65 00 |,.g.e.t. d.a.t.e.|
0ab0 28 00 29 00 2c 00 67 00-65 00 74 00 64 00 61 00 |(.).,.g. e.t.d.a.|
0ac0 74 00 65 00 28 00 29 00-2c 00 67 00 65 00 74 00 |t.e.(.). ,.g.e.t.|
0ad0 64 00 61 00 74 00 65 00-28 00 29 00 2c 00 67 00 |d.a.t.e. (.).,.g.|
0ae0 65 00 74 00 64 00 61 00-74 00 65 00 28 00 29 00 |e.t.d.a. t.e.(.).|
0af0 2c 00 67 00 65 00 74 00-64 00 61 00 74 00 65 00 |,.g.e.t. d.a.t.e.|
0b00 28 00 29 00 2c 00 67 00-65 00 74 00 64 00 61 00 |(.).,.g. e.t.d.a.|
0b10 74 00 65 00 28 00 29 00-2c 00 67 00 65 00 74 00 |t.e.(.). ,.g.e.t.|
0b20 64 00 61 00 74 00 65 00-28 00 29 00 2c 00 67 00 |d.a.t.e. (.).,.g.|
0b30 65 00 74 00 64 00 61 00-74 00 65 00 28 00 29 00 |e.t.d.a. t.e.(.).|
0b40 2c 00 67 00 65 00 74 00-64 00 61 00 74 00 65 00 |,.g.e.t. d.a.t.e.|
0b50 28 00 29 00 2c 00 67 00-65 00 74 00 64 00 61 00 |(.).,.g. e.t.d.a.|
0b60 74 00 65 00 28 00 29 00-2c 00 67 00 65 00 74 00 |t.e.(.). ,.g.e.t.|
0b70 64 00 61 00 74 00 65 00-28 00 29 00 2c 00 67 00 |d.a.t.e. (.).,.g.|
0b80 65 00 74 00 64 00 61 00-74 00 65 00 28 00 29 00 |e.t.d.a. t.e.(.).|
0b90 2c 00 67 00 65 00 74 00-64 00 61 00 74 00 65 00 |,.g.e.t. d.a.t.e.|
0ba0 28 00 29 00 2c 00 67 00-65 00 74 00 64 00 61 00 |(.).,.g. e.t.d.a.|
0bb0 74 00 65 00 28 00 29 00-2c 00 67 00 65 00 74 00 |t.e.(.). ,.g.e.t.|
0bc0 64 00 61 00 74 00 65 00-28 00 29 00 2c 00 67 00 |d.a.t.e. (.).,.g.|
0bd0 65 00 74 00 64 00 61 00-74 00 65 00 28 00 29 00 |e.t.d.a. t.e.(.).|
0be0 2c 00 67 00 65 00 74 00-64 00 61 00 74 00 65 00 |,.g.e.t. d.a.t.e.|
0bf0 28 00 29 00 2c 00 67 00-65 00 74 00 64 00 61 00 |(.).,.g. e.t.d.a.|
0c00 74 00 65 00 28 00 29 00-2c 00 67 00 65 00 74 00 |t.e.(.). ,.g.e.t.|
0c10 64 00 61 00 74 00 65 00-28 00 29 00 2c 00 67 00 |d.a.t.e. (.).,.g.|
0c20 65 00 74 00 64 00 61 00-74 00 65 00 28 00 29 00 |e.t.d.a. t.e.(.).|
0c30 2c 00 67 00 65 00 74 00-64 00 61 00 74 00 65 00 |,.g.e.t. d.a.t.e.|
0c40 28 00 29 00 2c 00 67 00-65 00 74 00 64 00 61 00 |(.).,.g. e.t.d.a.|
0c50 74 00 65 00 28 00 29 00-2c 00 67 00 65 00 74 00 |t.e.(.). ,.g.e.t.|
0c60 64 00 61 00 74 00 65 00-28 00 29 00 2c 00 67 00 |d.a.t.e. (.).,.g.|
0c70 65 00 74 00 64 00 61 00-74 00 65 00 28 00 29 00 |e.t.d.a. t.e.(.).|
0c80 2c 00 67 00 65 00 74 00-64 00 61 00 74 00 65 00 |,.g.e.t. d.a.t.e.|
0c90 28 00 29 00 2c 00 67 00-65 00 74 00 64 00 61 00 |(.).,.g. e.t.d.a.|
0ca0 74 00 65 00 28 00 29 00-2c 00 67 00 65 00 74 00 |t.e.(.). ,.g.e.t.|
0cb0 64 00 61 00 74 00 65 00-28 00 29 00 2c 00 67 00 |d.a.t.e. (.).,.g.|
0cc0 65 00 74 00 64 00 61 00-74 00 65 00 28 00 29 00 |e.t.d.a. t.e.(.).|
0cd0 2c 00 67 00 65 00 74 00-64 00 61 00 74 00 65 00 |,.g.e.t. d.a.t.e.|
0ce0 28 00 29 00 2c 00 67 00-65 00 74 00 64 00 61 00 |(.).,.g. e.t.d.a.|
0cf0 74 00 65 00 28 00 29 00-2c 00 67 00 65 00 74 00 |t.e.(.). ,.g.e.t.|
0d00 64 00 61 00 74 00 65 00-28 00 29 00 2c 00 67 00 |d.a.t.e. (.).,.g.|
0d10 65 00 74 00 64 00 61 00-74 00 65 00 28 00 29 00 |e.t.d.a. t.e.(.).|
0d20 2c 00 67 00 65 00 74 00-64 00 61 00 74 00 65 00 |,.g.e.t. d.a.t.e.|
0d30 28 00 29 00 2c 00 67 00-65 00 74 00 64 00 61 00 |(.).,.g. e.t.d.a.|
0d40 74 00 65 00 28 00 29 00-2c 00 67 00 65 00 74 00 |t.e.(.). ,.g.e.t.|
0d50 64 00 61 00 74 00 65 00-28 00 29 00 2c 00 67 00 |d.a.t.e. (.).,.g.|
0d60 65 00 74 00 64 00 61 00-74 00 65 00 28 00 29 00 |e.t.d.a. t.e.(.).|
0d70 2c 00 67 00 65 00 74 00-64 00 61 00 74 00 65 00 |,.g.e.t. d.a.t.e.|
0d80 28 00 29 00 2c 00 67 00-65 00 74 00 64 00 61 00 |(.).,.g. e.t.d.a.|
0d90 74 00 65 00 28 00 29 00-2c 00 67 00 65 00 74 00 |t.e.(.). ,.g.e.t.|
0da0 64 00 61 00 74 00 65 00-28 00 29 00 2c 00 67 00 |d.a.t.e. (.).,.g.|
0db0 65 00 74 00 64 00 61 00-74 00 65 00 28 00 29 00 |e.t.d.a. t.e.(.).|
0dc0 2c 00 67 00 65 00 74 00-64 00 61 00 74 00 65 00 |,.g.e.t. d.a.t.e.|
0dd0 28 00 29 00 2c 00 67 00-65 00 74 00 64 00 61 00 |(.).,.g. e.t.d.a.|
0de0 74 00 65 00 28 00 29 00-2c 00 67 00 65 00 74 00 |t.e.(.). ,.g.e.t.|
0df0 64 00 61 00 74 00 65 00-28 00 29 00 2c 00 67 00 |d.a.t.e. (.).,.g.|
0e00 65 00 74 00 64 00 61 00-74 00 65 00 28 00 29 00 |e.t.d.a. t.e.(.).|
0e10 2c 00 67 00 65 00 74 00-64 00 61 00 74 00 65 00 |,.g.e.t. d.a.t.e.|
0e20 28 00 29 00 2c 00 67 00-65 00 74 00 64 00 61 00 |(.).,.g. e.t.d.a.|
0e30 74 00 65 00 28 00 29 00-2c 00 67 00 65 00 74 00 |t.e.(.). ,.g.e.t.|
0e40 64 00 61 00 74 00 65 00-28 00 29 00 2c 00 67 00 |d.a.t.e. (.).,.g.|
0e50 65 00 74 00 64 00 61 00-74 00 65 00 28 00 29 00 |e.t.d.a. t.e.(.).|
0e60 2c 00 67 00 65 00 74 00-64 00 61 00 74 00 65 00 |,.g.e.t. d.a.t.e.|
0e70 28 00 29 00 2c 00 67 00-65 00 74 00 64 00 61 00 |(.).,.g. e.t.d.a.|
0e80 74 00 65 00 28 00 29 00-2c 00 67 00 65 00 74 00 |t.e.(.). ,.g.e.t.|
0e90 64 00 61 00 74 00 65 00-28 00 29 00 2c 00 67 00 |d.a.t.e. (.).,.g.|
0ea0 65 00 74 00 64 00 61 00-74 00 65 00 28 00 29 00 |e.t.d.a. t.e.(.).|
0eb0 2c 00 67 00 65 00 74 00-64 00 61 00 74 00 65 00 |,.g.e.t. d.a.t.e.|
0ec0 28 00 29 00 2c 00 67 00-65 00 74 00 64 00 61 00 |(.).,.g. e.t.d.a.|
0ed0 74 00 65 00 28 00 29 00-2c 00 67 00 65 00 74 00 |t.e.(.). ,.g.e.t.|
0ee0 64 00 61 00 74 00 65 00-28 00 29 00 2c 00 67 00 |d.a.t.e. (.).,.g.|
0ef0 65 00 74 00 64 00 61 00-74 00 65 00 28 00 29 00 |e.t.d.a. t.e.(.).|
0f00 2c 00 67 00 65 00 74 00-64 00 61 00 74 00 65 00 |,.g.e.t. d.a.t.e.|
0f10 28 00 29 00 2c 00 67 00-65 00 74 00 64 00 61 00 |(.).,.g. e.t.d.a.|
0f20 74 00 65 00 28 00 29 00-2c 00 67 00 65 00 74 00 |t.e.(.). ,.g.e.t.|
0f30 64 00 61 00 74 00 65 00-28 00 29 00 2c 00 67 00 |d.a.t.e. (.).,.g.|
0f40 65 00 74 00 64 00 61 00-74 00 65 00 28 00 29 00 |e.t.d.a. t.e.(.).|
0f50 2c 00 67 00 65 00 74 00-64 00 61 00 74 00 65 00 |,.g.e.t. d.a.t.e.|
0f60 28 00 29 00 2c 00 67 00-65 00 74 00 64 00 61 00 |(.).,.g. e.t.d.a.|
0f70 74 00 65 00 28 00 29 00-2c 00 67 00 65 00 74 00 |t.e.(.). ,.g.e.t.|
0f80 64 00 61 00 74 00 65 00-28 00 29 00 2c 00 67 00 |d.a.t.e. (.).,.g.|
0f90 71 00 d8 00 - |q...|
13:14:24.829823 16153 (dblib.c:4532):dbsqlok(0x5e4ad0)
13:14:24.831378 16153 (net.c:592):Received header
0000 04 01 00 60 00 36 01 00- |...`.6..|
13:14:24.831395 16153 (net.c:671):Received packet
0000 aa 4c 00 cf 00 00 00 03-10 1a 00 49 00 6e 00 76 |.L...... ...I.n.v|
0010 00 61 00 6c 00 69 00 64-00 20 00 63 00 6f 00 6c |.a.l.i.d . .c.o.l|
0020 00 75 00 6d 00 6e 00 20-00 6e 00 61 00 6d 00 65 |.u.m.n. .n.a.m.e|
0030 00 20 00 27 00 67 00 71-00 d8 00 27 00 2e 00 06 |. .'.g.q ...'....|
0040 45 00 4c 00 52 00 4f 00-4e 00 44 00 00 01 00 fd |E.L.R.O. N.D.....|
0050 02 00 fd 00 00 00 00 00- |........|
13:14:24.831432 16153 (dblib.c:4565):dbsqlok() not done, calling tds_process_tokens()
13:14:24.831441 16153 (token.c:495):tds_process_tokens(0x66a0e0, 0x7fffeeee3940, 0x7fffeeee3944, 0x6914)
13:14:24.831450 16153 (util.c:162):Changed query state from PENDING to READING
13:14:24.831459 16153 (token.c:510):processing result tokens. marker is aa(ERROR)
13:14:24.831470 16153 (token.c:108):tds_process_default_tokens() marker is aa(ERROR)
13:14:24.831479 16153 (token.c:2451):tds_process_msg() reading message from server
13:14:24.831493 16153 (token.c:2516):tds_process_msg() calling client msg handler
13:14:24.831502 16153 (dbutil.c:86):_dblib_handle_info_message(0x650390, 0x66a0e0, 0x7fffeeee3790)
13:14:24.831516 16153 (dbutil.c:87):msgno 207: "Invalid column name 'gqØ'."
13:14:24.831529 16153 (token.c:2529):tds_process_msg() returning TDS_SUCCEED
13:14:24.831537 16153 (token.c:510):processing result tokens. marker is fd(DONE)
13:14:24.831544 16153 (token.c:2201):tds_process_end: more_results = 0
was_cancelled = 0
error = 1
done_count_valid = 0
13:14:24.831552 16153 (token.c:2217):tds_process_end() state set to TDS_IDLE
13:14:24.831559 16153 (util.c:162):Changed query state from READING to IDLE
13:14:24.831566 16153 (token.c:2232): rows_affected = 0
13:14:24.831573 16153 (util.c:110):logic error: cannot change query state from IDLE to PENDING
13:14:24.831580 16153 (dblib.c:4590):dbsqlok() end status was error
13:14:24.831587 16153 (dblib.c:3093):dbcancel(0x5e4ad0)
13:14:24.831594 16153 (query.c:1934):tds_send_cancel: not in_cancel and idle
13:14:24.831612 16153 (dblib.c:3093):dbcancel(0x5e4ad0)
13:14:24.831620 16153 (query.c:1934):tds_send_cancel: not in_cancel and idle
lxra05:/usr/local/etc #
Thanks for the information. It really looks like a problem with FreeTDS (or I am doing something wrong...). I need to check it further then.
As for pymssql 0.8.0 -- are you absolutely sure that it is linked with the same FreeTDS version as 1.0.1?
Yes it looks like that the problem is in FreeTDS but it is strange why it's working with version 0.8.0. Below you have the same information but now I changed the version to 0.8.0 and everything works...
arch@lxra05:/ESSArch/bin/src> /ESSArch/pd/python/bin/python
Python 2.6 (r26:66714, Oct 17 2008, 09:33:36)
[GCC 4.1.2 20070115 (prerelease) (SUSE Linux)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import pymssql
>>> conn = pymssql.connect(host='192.168.100.132:1433',user='Arkis_ESSArch',password='EaB83dgK74eP',database='Arkis2db_siv')
>>> cur = conn.cursor()
>>> cur._source.debug_queries = 1
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
AttributeError: pymssqlCursor instance has no attribute '_source'
>>> cur.execute('SELECT '+'getdate(),'*200 + 'getdate()')
>>>
If you look at row "13:48:18.412588 16541 (write.c:136):" in FreeTDS.log with pymssql 0.8.0 and look at the "13:14:24.828514 16153 (write.c:136):" row when running version 1.0.1 you see the different with the garbage characters.
The FreeTDS.log with pymssql version 0.8.0:
lxra05:/usr/local/etc # more /tmp/freetds.log
13:47:57.164262 16541 (log.c:190):Starting log file for FreeTDS 0.82
on 2009-03-02 13:47:57 with debug flags 0xffff.
13:47:57.164407 16541 (iconv.c:197):names for ISO-8859-1: ISO-8859-1
13:47:57.164418 16541 (iconv.c:197):names for UTF-8: UTF-8
13:47:57.164426 16541 (iconv.c:197):names for UCS-2LE: UCS-2LE
13:47:57.164433 16541 (iconv.c:197):names for UCS-2BE: UCS-2BE
13:47:57.164440 16541 (iconv.c:363):iconv to convert client-side data to the "ISO-8859-1" character set
13:47:57.164458 16541 (iconv.c:516):tds_iconv_info_init: converting "ISO-8859-1"->"UCS-2LE"
13:47:57.164481 16541 (iconv.c:516):tds_iconv_info_init: converting "ISO-8859-1"->"UCS-2LE"
13:47:57.164495 16541 (net.c:210):Connecting to 192.168.100.132 port 1433 (TDS version 8.0)
13:47:57.164535 16541 (net.c:264):tds_open_socket: connect(2) returned "Operation now in progress"
13:47:57.169242 16541 (net.c:303):tds_open_socket() succeeded
13:47:57.169255 16541 (util.c:162):Changed query state from DEAD to IDLE
13:47:57.169265 16541 (login.c:735):quietly sending TDS 7+ login packet
13:47:57.169307 16541 (token.c:312):tds_process_login_tokens()
13:47:57.170338 16541 (net.c:592):Received header
0000 04 01 01 89 00 36 01 00- |.....6..|
13:47:57.170357 16541 (net.c:671):Received packet
0000 e3 27 00 01 0c 41 00 72-00 6b 00 69 00 73 00 32 |.'...A.r .k.i.s.2|
0010 00 64 00 62 00 5f 00 53-00 69 00 76 00 06 6d 00 |.d.b._.S .i.v..m.|
0020 61 00 73 00 74 00 65 00-72 00 ab 6e 00 45 16 00 |a.s.t.e. r..n.E..|
0030 00 02 00 2b 00 43 00 68-00 61 00 6e 00 67 00 65 |...+.C.h .a.n.g.e|
0040 00 64 00 20 00 64 00 61-00 74 00 61 00 62 00 61 |.d. .d.a .t.a.b.a|
0050 00 73 00 65 00 20 00 63-00 6f 00 6e 00 74 00 65 |.s.e. .c .o.n.t.e|
0060 00 78 00 74 00 20 00 74-00 6f 00 20 00 27 00 41 |.x.t. .t .o. .'.A|
0070 00 72 00 6b 00 69 00 73-00 32 00 64 00 62 00 5f |.r.k.i.s .2.d.b._|
0080 00 53 00 69 00 76 00 27-00 2e 00 06 45 00 4c 00 |.S.i.v.' ....E.L.|
0090 52 00 4f 00 4e 00 44 00-00 00 00 e3 08 00 07 05 |R.O.N.D. ........|
00a0 0b 04 f0 00 00 00 e3 17-00 02 0a 75 00 73 00 5f |........ ...u.s._|
00b0 00 65 00 6e 00 67 00 6c-00 69 00 73 00 68 00 00 |.e.n.g.l .i.s.h..|
00c0 ab 66 00 47 16 00 00 01-00 27 00 43 00 68 00 61 |.f.G.... .'.C.h.a|
00d0 00 6e 00 67 00 65 00 64-00 20 00 6c 00 61 00 6e |.n.g.e.d . .l.a.n|
00e0 00 67 00 75 00 61 00 67-00 65 00 20 00 73 00 65 |.g.u.a.g .e. .s.e|
00f0 00 74 00 74 00 69 00 6e-00 67 00 20 00 74 00 6f |.t.t.i.n .g. .t.o|
0100 00 20 00 75 00 73 00 5f-00 65 00 6e 00 67 00 6c |. .u.s._ .e.n.g.l|
0110 00 69 00 73 00 68 00 2e-00 06 45 00 4c 00 52 00 |.i.s.h.. ..E.L.R.|
0120 4f 00 4e 00 44 00 00 00-00 ad 36 00 01 71 00 00 |O.N.D... ..6..q..|
0130 01 16 4d 00 69 00 63 00-72 00 6f 00 73 00 6f 00 |..M.i.c. r.o.s.o.|
0140 66 00 74 00 20 00 53 00-51 00 4c 00 20 00 53 00 |f.t. .S. Q.L. .S.|
0150 65 00 72 00 76 00 65 00-72 00 00 00 00 00 08 00 |e.r.v.e. r.......|
0160 08 07 e3 13 00 04 04 34-00 30 00 39 00 36 00 04 |.......4 .0.9.6..|
0170 34 00 30 00 39 00 36 00-fd 00 00 00 00 00 00 00 |4.0.9.6. ........|
0180 00 - |.|
13:47:57.170487 16541 (token.c:316):looking for login token, got e3(ENVCHANGE)
13:47:57.170497 16541 (token.c:108):tds_process_default_tokens() marker is e3(ENVCHANGE)
13:47:57.170512 16541 (dblib.c:325):db_env_chg(0x654d60, 1, master, Arkis2db_Siv)
13:47:57.170523 16541 (token.c:316):looking for login token, got ab(INFO)
13:47:57.170530 16541 (token.c:108):tds_process_default_tokens() marker is ab(INFO)
13:47:57.170539 16541 (token.c:2451):tds_process_msg() reading message from server
13:47:57.170551 16541 (token.c:2516):tds_process_msg() calling client msg handler
13:47:57.170559 16541 (dbutil.c:86):_dblib_handle_info_message(0x64f3a0, 0x654d60, 0x7fff290f05d0)
13:47:57.170567 16541 (dbutil.c:87):msgno 5701: "Changed database context to 'Arkis2db_Siv'."
13:47:57.170577 16541 (token.c:2529):tds_process_msg() returning TDS_SUCCEED
13:47:57.170583 16541 (token.c:316):looking for login token, got e3(ENVCHANGE)
13:47:57.170590 16541 (token.c:108):tds_process_default_tokens() marker is e3(ENVCHANGE)
13:47:57.170607 16541 (token.c:2281):tds_process_env_chg(): 5 bytes of collation data received
13:47:57.170614 16541 (token.c:2282):tds->collation was
0000 00 00 00 00 00 - |.....|
13:47:57.170625 16541 (iconv.c:985):setting server single-byte charset to "CP1252"
13:47:57.170693 16541 (iconv.c:516):tds_iconv_info_init: converting "ISO-8859-1"->"CP1252"
13:47:57.170706 16541 (token.c:2292):tds->collation now
0000 0b 04 f0 00 00 - |.....|
13:47:57.170717 16541 (token.c:316):looking for login token, got e3(ENVCHANGE)
13:47:57.170724 16541 (token.c:108):tds_process_default_tokens() marker is e3(ENVCHANGE)
13:47:57.170732 16541 (dblib.c:325):db_env_chg(0x654d60, 2, , us_english)
13:47:57.170740 16541 (token.c:316):looking for login token, got ab(INFO)
13:47:57.170747 16541 (token.c:108):tds_process_default_tokens() marker is ab(INFO)
13:47:57.170754 16541 (token.c:2451):tds_process_msg() reading message from server
13:47:57.170763 16541 (token.c:2516):tds_process_msg() calling client msg handler
13:47:57.170770 16541 (dbutil.c:86):_dblib_handle_info_message(0x64f3a0, 0x654d60, 0x7fff290f05d0)
13:47:57.170777 16541 (dbutil.c:87):msgno 5703: "Changed language setting to us_english."
13:47:57.170786 16541 (token.c:2529):tds_process_msg() returning TDS_SUCCEED
13:47:57.170793 16541 (token.c:316):looking for login token, got ad(LOGINACK)
13:47:57.170801 16541 (token.c:316):looking for login token, got e3(ENVCHANGE)
13:47:57.170809 16541 (token.c:108):tds_process_default_tokens() marker is e3(ENVCHANGE)
13:47:57.170817 16541 (dblib.c:325):db_env_chg(0x654d60, 4, 4096, 4096)
13:47:57.170825 16541 (token.c:316):looking for login token, got fd(DONE)
13:47:57.170832 16541 (token.c:108):tds_process_default_tokens() marker is fd(DONE)
13:47:57.170839 16541 (token.c:2201):tds_process_end: more_results = 0
was_cancelled = 0
error = 0
done_count_valid = 0
13:47:57.170847 16541 (token.c:2217):tds_process_end() state set to TDS_IDLE
13:47:57.170854 16541 (token.c:2232): rows_affected = 0
13:47:57.170860 16541 (token.c:393):leaving tds_process_login_tokens() returning 1
13:47:57.170875 16541 (mem.c:563):tds_free_all_results()
13:47:57.170882 16541 (util.c:162):Changed query state from IDLE to QUERYING
13:47:57.170889 16541 (write.c:136):tds_put_string converting 16 bytes of "set textsize -1 "
13:47:57.170898 16541 (write.c:164):tds_put_string wrote 32 bytes
13:47:57.170905 16541 (util.c:162):Changed query state from QUERYING to PENDING
13:47:57.170912 16541 (net.c:779):Sending packet
0000 01 01 00 28 00 00 00 00-73 00 65 00 74 00 20 00 |...(.... s.e.t. .|
0010 74 00 65 00 78 00 74 00-73 00 69 00 7a 00 65 00 |t.e.x.t. s.i.z.e.|
0020 20 00 2d 00 31 00 20 00- | .-.1. .|
13:47:57.170937 16541 (token.c:495):tds_process_tokens(0x654d60, 0x7fff290f06b4, 0x7fff290f06b0, 0x100)
13:47:57.170946 16541 (util.c:162):Changed query state from PENDING to READING
13:47:57.171153 16541 (net.c:592):Received header
0000 04 01 00 11 00 36 01 00- |.....6..|
13:47:57.171170 16541 (net.c:671):Received packet
0000 fd 00 00 be 00 00 00 00-00 |........ .|
13:47:57.171182 16541 (token.c:510):processing result tokens. marker is fd(DONE)
13:47:57.171191 16541 (token.c:2201):tds_process_end: more_results = 0
was_cancelled = 0
error = 0
done_count_valid = 0
13:47:57.171199 16541 (token.c:2217):tds_process_end() state set to TDS_IDLE
13:47:57.171207 16541 (util.c:162):Changed query state from READING to IDLE
13:47:57.171216 16541 (token.c:2232): rows_affected = 0
13:47:57.171224 16541 (util.c:110):logic error: cannot change query state from IDLE to PENDING
13:47:57.171232 16541 (token.c:495):tds_process_tokens(0x654d60, 0x7fff290f06b4, 0x7fff290f06b0, 0x100)
13:47:57.171241 16541 (token.c:498):tds_process_tokens() state is COMPLETED
13:47:57.171250 16541 (dblib.c:237):dblib_add_connection(0x2b3782b6d4a0, 0x654d60)
13:47:57.171260 16541 (dblib.c:718):dbloginfree(0x62dc10)
13:47:57.171269 16541 (dblib.c:1243):dbcmd(0x66c3f0, SET ARITHABORT ON;SET CONCAT_NULL_YIELDS_NULL ON;SET ANSI_NULLS ON;SET ANSI_NULL_DF
LT_ON ON;SET ANSI_PADDING ON;SET ANSI_WARNINGS ON;SET ANSI_NULL_DFLT_ON ON;SET CURSOR_CLOSE_ON_COMMIT ON;SET QUOTED_IDENTIFIER ON)
13:47:57.171291 16541 (dblib.c:1250):dbcmd() bufsz = 0
13:47:57.171301 16541 (dblib.c:1298):dbsqlexec(0x66c3f0)
13:47:57.171309 16541 (dblib.c:6722):dbsqlsend(0x66c3f0)
13:47:57.171316 16541 (mem.c:563):tds_free_all_results()
13:47:57.171323 16541 (util.c:162):Changed query state from IDLE to QUERYING
13:47:57.171330 16541 (write.c:136):tds_put_string converting 212 bytes of "SET ARITHABORT ON;SET CONCAT_NULL_YIELDS_NULL ON;SET ANSI_NU
LLS ON;SET ANSI_NULL_DFLT_ON ON;SET ANSI_PADDING ON;SET ANSI_WARNINGS ON;SET ANSI_NULL_DFLT_ON ON;SET CURSOR_CLOSE_ON_COMMIT ON;SET QUOT
ED_IDENTIFIER ON"
13:47:57.171339 16541 (write.c:136):tds_put_string converting 84 bytes of "S ON;SET ANSI_NULL_DFLT_ON ON;SET CURSOR_CLOSE_ON_COMMIT ON;S
ET QUOTED_IDENTIFIER ON"
13:47:57.171348 16541 (write.c:164):tds_put_string wrote 424 bytes
13:47:57.171355 16541 (util.c:162):Changed query state from QUERYING to PENDING
13:47:57.171362 16541 (net.c:779):Sending packet
0000 01 01 01 b0 00 00 01 00-53 00 45 00 54 00 20 00 |........ S.E.T. .|
0010 41 00 52 00 49 00 54 00-48 00 41 00 42 00 4f 00 |A.R.I.T. H.A.B.O.|
0020 52 00 54 00 20 00 4f 00-4e 00 3b 00 53 00 45 00 |R.T. .O. N.;.S.E.|
0030 54 00 20 00 43 00 4f 00-4e 00 43 00 41 00 54 00 |T. .C.O. N.C.A.T.|
0040 5f 00 4e 00 55 00 4c 00-4c 00 5f 00 59 00 49 00 |_.N.U.L. L._.Y.I.|
0050 45 00 4c 00 44 00 53 00-5f 00 4e 00 55 00 4c 00 |E.L.D.S. _.N.U.L.|
0060 4c 00 20 00 4f 00 4e 00-3b 00 53 00 45 00 54 00 |L. .O.N. ;.S.E.T.|
0070 20 00 41 00 4e 00 53 00-49 00 5f 00 4e 00 55 00 | .A.N.S. I._.N.U.|
0080 4c 00 4c 00 53 00 20 00-4f 00 4e 00 3b 00 53 00 |L.L.S. . O.N.;.S.|
0090 45 00 54 00 20 00 41 00-4e 00 53 00 49 00 5f 00 |E.T. .A. N.S.I._.|
00a0 4e 00 55 00 4c 00 4c 00-5f 00 44 00 46 00 4c 00 |N.U.L.L. _.D.F.L.|
00b0 54 00 5f 00 4f 00 4e 00-20 00 4f 00 4e 00 3b 00 |T._.O.N. .O.N.;.|
00c0 53 00 45 00 54 00 20 00-41 00 4e 00 53 00 49 00 |S.E.T. . A.N.S.I.|
00d0 5f 00 50 00 41 00 44 00-44 00 49 00 4e 00 47 00 |_.P.A.D. D.I.N.G.|
00e0 20 00 4f 00 4e 00 3b 00-53 00 45 00 54 00 20 00 | .O.N.;. S.E.T. .|
00f0 41 00 4e 00 53 00 49 00-5f 00 57 00 41 00 52 00 |A.N.S.I. _.W.A.R.|
0100 4e 00 49 00 4e 00 47 00-53 00 20 00 4f 00 4e 00 |N.I.N.G. S. .O.N.|
0110 3b 00 53 00 45 00 54 00-20 00 41 00 4e 00 53 00 |;.S.E.T. .A.N.S.|
0120 49 00 5f 00 4e 00 55 00-4c 00 4c 00 5f 00 44 00 |I._.N.U. L.L._.D.|
0130 46 00 4c 00 54 00 5f 00-4f 00 4e 00 20 00 4f 00 |F.L.T._. O.N. .O.|
0140 4e 00 3b 00 53 00 45 00-54 00 20 00 43 00 55 00 |N.;.S.E. T. .C.U.|
0150 52 00 53 00 4f 00 52 00-5f 00 43 00 4c 00 4f 00 |R.S.O.R. _.C.L.O.|
0160 53 00 45 00 5f 00 4f 00-4e 00 5f 00 43 00 4f 00 |S.E._.O. N._.C.O.|
0170 4d 00 4d 00 49 00 54 00-20 00 4f 00 4e 00 3b 00 |M.M.I.T. .O.N.;.|
0180 53 00 45 00 54 00 20 00-51 00 55 00 4f 00 54 00 |S.E.T. . Q.U.O.T.|
0190 45 00 44 00 5f 00 49 00-44 00 45 00 4e 00 54 00 |E.D._.I. D.E.N.T.|
01a0 49 00 46 00 49 00 45 00-52 00 20 00 4f 00 4e 00 |I.F.I.E. R. .O.N.|
13:47:57.171482 16541 (dblib.c:4532):dbsqlok(0x66c3f0)
13:47:57.172218 16541 (net.c:592):Received header
0000 04 01 00 50 00 36 01 00- |...P.6..|
13:47:57.172235 16541 (net.c:671):Received packet
0000 fd 01 00 b9 00 00 00 00-00 fd 01 00 b9 00 00 00 |........ ........|
0010 00 00 fd 01 00 b9 00 00-00 00 00 fd 01 00 b9 00 |........ ........|
0020 00 00 00 00 fd 01 00 b9-00 00 00 00 00 fd 01 00 |........ ........|
0030 b9 00 00 00 00 00 fd 01-00 b9 00 00 00 00 00 fd |........ ........|
0040 00 00 b9 00 00 00 00 00- |........|
13:47:57.172265 16541 (dblib.c:4565):dbsqlok() not done, calling tds_process_tokens()
13:47:57.172274 16541 (token.c:495):tds_process_tokens(0x654d60, 0x7fff290f0b50, 0x7fff290f0b54, 0x6914)
13:47:57.172283 16541 (util.c:162):Changed query state from PENDING to READING
13:47:57.172291 16541 (token.c:510):processing result tokens. marker is fd(DONE)
13:47:57.172309 16541 (token.c:2201):tds_process_end: more_results = 1
was_cancelled = 0
error = 0
done_count_valid = 0
13:47:57.172319 16541 (token.c:2232): rows_affected = 0
13:47:57.172327 16541 (util.c:162):Changed query state from READING to PENDING
13:47:57.172335 16541 (dblib.c:4601):dbsqlok() end status was success
13:47:57.172344 16541 (dblib.c:3093):dbcancel(0x66c3f0)
13:47:57.172357 16541 (query.c:1934):tds_send_cancel: not in_cancel and not idle
13:47:57.172364 16541 (query.c:1943):tds_send_cancel: sending cancel packet
13:47:57.172371 16541 (net.c:779):Sending packet
0000 06 01 00 08 00 00 01 00- |........|
13:47:57.172385 16541 (token.c:495):tds_process_tokens(0x654d60, 0x7fff290f0b44, (nil), 0x0)
13:47:57.172394 16541 (util.c:162):Changed query state from PENDING to READING
13:47:57.172401 16541 (token.c:510):processing result tokens. marker is fd(DONE)
13:47:57.172408 16541 (token.c:2201):tds_process_end: more_results = 1
was_cancelled = 0
error = 0
done_count_valid = 0
13:47:57.172415 16541 (token.c:2232): rows_affected = 0
13:47:57.172422 16541 (token.c:510):processing result tokens. marker is fd(DONE)
13:47:57.172429 16541 (token.c:2201):tds_process_end: more_results = 1
was_cancelled = 0
error = 0
done_count_valid = 0
13:47:57.172436 16541 (token.c:2232): rows_affected = 0
13:47:57.172443 16541 (token.c:510):processing result tokens. marker is fd(DONE)
13:47:57.172450 16541 (token.c:2201):tds_process_end: more_results = 1
was_cancelled = 0
error = 0
done_count_valid = 0
13:47:57.172457 16541 (token.c:2232): rows_affected = 0
13:47:57.172464 16541 (token.c:510):processing result tokens. marker is fd(DONE)
13:47:57.172473 16541 (token.c:2201):tds_process_end: more_results = 1
was_cancelled = 0
error = 0
done_count_valid = 0
13:47:57.172480 16541 (token.c:2232): rows_affected = 0
13:47:57.172487 16541 (token.c:510):processing result tokens. marker is fd(DONE)
13:47:57.172494 16541 (token.c:2201):tds_process_end: more_results = 1
was_cancelled = 0
error = 0
done_count_valid = 0
13:47:57.172506 16541 (token.c:2232): rows_affected = 0
13:47:57.172513 16541 (token.c:510):processing result tokens. marker is fd(DONE)
13:47:57.172520 16541 (token.c:2201):tds_process_end: more_results = 1
was_cancelled = 0
error = 0
done_count_valid = 0
13:47:57.172528 16541 (token.c:2232): rows_affected = 0
13:47:57.172534 16541 (token.c:510):processing result tokens. marker is fd(DONE)
13:47:57.172541 16541 (token.c:2201):tds_process_end: more_results = 0
was_cancelled = 0
error = 0
done_count_valid = 0
13:47:57.172548 16541 (token.c:2232): rows_affected = 0
13:47:57.172557 16541 (net.c:592):Received header
0000 04 01 00 11 00 36 01 00- |.....6..|
13:47:57.172570 16541 (net.c:671):Received packet
0000 fd 20 00 fd 00 00 00 00-00 |. ...... .|
13:47:57.172580 16541 (token.c:510):processing result tokens. marker is fd(DONE)
13:47:57.172588 16541 (token.c:2201):tds_process_end: more_results = 0
was_cancelled = 1
error = 0
done_count_valid = 0
13:47:57.172595 16541 (token.c:2217):tds_process_end() state set to TDS_IDLE
13:47:57.172602 16541 (util.c:162):Changed query state from READING to IDLE
13:47:57.172609 16541 (token.c:2232): rows_affected = 0
13:47:57.172620 16541 (dblib.c:1327):dbuse(0x66c3f0, Arkis2db_siv)
13:47:57.172628 16541 (dblib.c:1243):dbcmd(0x66c3f0, use Arkis2db_siv)
13:47:57.172635 16541 (dblib.c:1250):dbcmd() bufsz = 213
13:47:57.172644 16541 (dblib.c:5727):dbfreebuf(0x66c3f0)
13:47:57.172652 16541 (dblib.c:1298):dbsqlexec(0x66c3f0)
13:47:57.172659 16541 (dblib.c:6722):dbsqlsend(0x66c3f0)
13:47:57.172666 16541 (mem.c:563):tds_free_all_results()
13:47:57.172673 16541 (util.c:162):Changed query state from IDLE to QUERYING
13:47:57.172680 16541 (write.c:136):tds_put_string converting 16 bytes of "use Arkis2db_siv"
13:47:57.172688 16541 (write.c:164):tds_put_string wrote 32 bytes
13:47:57.172704 16541 (util.c:162):Changed query state from QUERYING to PENDING
13:47:57.172712 16541 (net.c:779):Sending packet
0000 01 01 00 28 00 00 01 00-75 00 73 00 65 00 20 00 |...(.... u.s.e. .|
0010 41 00 72 00 6b 00 69 00-73 00 32 00 64 00 62 00 |A.r.k.i. s.2.d.b.|
0020 5f 00 73 00 69 00 76 00- |_.s.i.v.|
13:47:57.172734 16541 (dblib.c:4532):dbsqlok(0x66c3f0)
13:47:57.173007 16541 (net.c:592):Received header
0000 04 01 00 c3 00 36 01 00- |.....6..|
13:47:57.173023 16541 (net.c:671):Received packet
0000 e3 33 00 01 0c 41 00 72-00 6b 00 69 00 73 00 32 |.3...A.r .k.i.s.2|
0010 00 64 00 62 00 5f 00 53-00 69 00 76 00 0c 41 00 |.d.b._.S .i.v..A.|
0020 72 00 6b 00 69 00 73 00-32 00 64 00 62 00 5f 00 |r.k.i.s. 2.d.b._.|
0030 53 00 69 00 76 00 ab 6e-00 45 16 00 00 01 00 2b |S.i.v..n .E.....+|
0040 00 43 00 68 00 61 00 6e-00 67 00 65 00 64 00 20 |.C.h.a.n .g.e.d. |
0050 00 64 00 61 00 74 00 61-00 62 00 61 00 73 00 65 |.d.a.t.a .b.a.s.e|
0060 00 20 00 63 00 6f 00 6e-00 74 00 65 00 78 00 74 |. .c.o.n .t.e.x.t|
0070 00 20 00 74 00 6f 00 20-00 27 00 41 00 72 00 6b |. .t.o. .'.A.r.k|
0080 00 69 00 73 00 32 00 64-00 62 00 5f 00 53 00 69 |.i.s.2.d .b._.S.i|
0090 00 76 00 27 00 2e 00 06-45 00 4c 00 52 00 4f 00 |.v.'.... E.L.R.O.|
00a0 4e 00 44 00 00 01 00 e3-08 00 07 05 0b 04 f0 00 |N.D..... ........|
00b0 00 00 fd 00 00 e2 00 00-00 00 00 |........ ...|
13:47:57.173094 16541 (dblib.c:4565):dbsqlok() not done, calling tds_process_tokens()
13:47:57.173103 16541 (token.c:495):tds_process_tokens(0x654d60, 0x7fff290f0b60, 0x7fff290f0b64, 0x6914)
13:47:57.173112 16541 (util.c:162):Changed query state from PENDING to READING
13:47:57.173120 16541 (token.c:510):processing result tokens. marker is e3(ENVCHANGE)
13:47:57.173128 16541 (token.c:108):tds_process_default_tokens() marker is e3(ENVCHANGE)
13:47:57.173144 16541 (dblib.c:325):db_env_chg(0x654d60, 1, Arkis2db_Siv, Arkis2db_Siv)
13:47:57.173152 16541 (token.c:510):processing result tokens. marker is ab(INFO)
13:47:57.173160 16541 (token.c:108):tds_process_default_tokens() marker is ab(INFO)
13:47:57.173167 16541 (token.c:2451):tds_process_msg() reading message from server
13:47:57.173176 16541 (token.c:2516):tds_process_msg() calling client msg handler
13:47:57.173183 16541 (dbutil.c:86):_dblib_handle_info_message(0x64f3a0, 0x654d60, 0x7fff290f09b0)
13:47:57.173190 16541 (dbutil.c:87):msgno 5701: "Changed database context to 'Arkis2db_Siv'."
13:47:57.173199 16541 (token.c:2529):tds_process_msg() returning TDS_SUCCEED
13:47:57.173206 16541 (token.c:510):processing result tokens. marker is e3(ENVCHANGE)
13:47:57.173213 16541 (token.c:108):tds_process_default_tokens() marker is e3(ENVCHANGE)
13:47:57.173220 16541 (token.c:2281):tds_process_env_chg(): 5 bytes of collation data received
13:47:57.173227 16541 (token.c:2282):tds->collation was
0000 0b 04 f0 00 00 - |.....|
13:47:57.173236 16541 (iconv.c:985):setting server single-byte charset to "CP1252"
13:47:57.173244 16541 (token.c:2292):tds->collation now
0000 0b 04 f0 00 00 - |.....|
13:47:57.173252 16541 (token.c:510):processing result tokens. marker is fd(DONE)
13:47:57.173260 16541 (token.c:2201):tds_process_end: more_results = 0
was_cancelled = 0
error = 0
done_count_valid = 0
13:47:57.173267 16541 (token.c:2217):tds_process_end() state set to TDS_IDLE
13:47:57.173273 16541 (util.c:162):Changed query state from READING to IDLE
13:47:57.173280 16541 (token.c:2232): rows_affected = 0
13:47:57.173287 16541 (util.c:110):logic error: cannot change query state from IDLE to PENDING
13:47:57.173294 16541 (dblib.c:4601):dbsqlok() end status was success
13:47:57.173303 16541 (dblib.c:1599):dbresults(0x66c3f0)
13:47:57.173310 16541 (dblib.c:1608):dbresults: dbresults_state is 5 (_DB_RES_SUCCEED)
13:47:57.173318 16541 (dblib.c:1587):dbresults returning 1 (SUCCEED)
13:47:57.173325 16541 (dblib.c:5699):dbcanquery(0x66c3f0)
13:47:57.173332 16541 (token.c:495):tds_process_tokens(0x654d60, 0x7fff290f0b6c, (nil), 0x108)
13:47:57.173347 16541 (token.c:498):tds_process_tokens() state is COMPLETED
13:47:57.173365 16541 (dblib.c:1243):dbcmd(0x66c3f0, begin tran)
13:47:57.173374 16541 (dblib.c:1250):dbcmd() bufsz = 17
13:47:57.173381 16541 (dblib.c:5727):dbfreebuf(0x66c3f0)
13:47:57.173388 16541 (dblib.c:1298):dbsqlexec(0x66c3f0)
13:47:57.173394 16541 (dblib.c:6722):dbsqlsend(0x66c3f0)
13:47:57.173401 16541 (mem.c:563):tds_free_all_results()
13:47:57.173408 16541 (util.c:162):Changed query state from IDLE to QUERYING
13:47:57.173415 16541 (write.c:136):tds_put_string converting 10 bytes of "begin tran"
13:47:57.173423 16541 (write.c:164):tds_put_string wrote 20 bytes
13:47:57.173431 16541 (util.c:162):Changed query state from QUERYING to PENDING
13:47:57.173438 16541 (net.c:779):Sending packet
0000 01 01 00 1c 00 00 01 00-62 00 65 00 67 00 69 00 |........ b.e.g.i.|
0010 6e 00 20 00 74 00 72 00-61 00 6e 00 |n. .t.r. a.n.|
13:47:57.173457 16541 (dblib.c:4532):dbsqlok(0x66c3f0)
13:47:57.173660 16541 (net.c:592):Received header
0000 04 01 00 11 00 36 01 00- |.....6..|
13:47:57.173677 16541 (net.c:671):Received packet
0000 fd 00 00 d4 00 00 00 00-00 |........ .|
13:47:57.173690 16541 (dblib.c:4565):dbsqlok() not done, calling tds_process_tokens()
13:47:57.173698 16541 (token.c:495):tds_process_tokens(0x654d60, 0x7fff290f04e0, 0x7fff290f04e4, 0x6914)
13:47:57.173707 16541 (util.c:162):Changed query state from PENDING to READING
13:47:57.173715 16541 (token.c:510):processing result tokens. marker is fd(DONE)
13:47:57.173723 16541 (token.c:2201):tds_process_end: more_results = 0
was_cancelled = 0
error = 0
done_count_valid = 0
13:47:57.173732 16541 (token.c:2217):tds_process_end() state set to TDS_IDLE
13:47:57.173740 16541 (util.c:162):Changed query state from READING to IDLE
13:47:57.173748 16541 (token.c:2232): rows_affected = 0
13:47:57.173757 16541 (util.c:110):logic error: cannot change query state from IDLE to PENDING
13:47:57.173765 16541 (dblib.c:4601):dbsqlok() end status was success
13:47:57.173776 16541 (dblib.c:1599):dbresults(0x66c3f0)
13:47:57.173785 16541 (dblib.c:1608):dbresults: dbresults_state is 5 (_DB_RES_SUCCEED)
13:47:57.173798 16541 (dblib.c:1587):dbresults returning 1 (SUCCEED)
13:47:57.173807 16541 (dblib.c:1745):dbnumcols(0x66c3f0)
13:47:57.173815 16541 (dblib.c:1948):dbnextrow(0x66c3f0)
13:47:57.173822 16541 (dblib.c:1961):dbnextrow() dbresults_state = 3 (_DB_RES_NEXT_RESULT)
13:47:57.173829 16541 (dblib.c:1966):leaving dbnextrow() returning -2 (NO_MORE_ROWS)
13:47:57.173836 16541 (dblib.c:2678):dbcount(0x66c3f0)
13:47:57.173844 16541 (dblib.c:1599):dbresults(0x66c3f0)
13:47:57.173851 16541 (dblib.c:1608):dbresults: dbresults_state is 3 (_DB_RES_NEXT_RESULT)
13:47:57.173858 16541 (token.c:495):tds_process_tokens(0x654d60, 0x7fff290f04a4, 0x7fff290f04a0, 0x6914)
13:47:57.173865 16541 (token.c:498):tds_process_tokens() state is COMPLETED
13:47:57.173872 16541 (dblib.c:1630):dbresults() tds_process_tokens returned 2 (TDS_NO_MORE_RESULTS),
result_type TDS_DONE_RESULT
13:47:57.173879 16541 (dblib.c:1587):dbresults returning 2 (NO_MORE_RESULTS)
13:48:18.412476 16541 (dblib.c:1243):dbcmd(0x66c3f0, SELECT getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdat
e(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),ge
tdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(
),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getd
ate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),
getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdat
e(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),ge
tdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(
),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getd
ate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),
getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdat
e(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),ge
tdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(
),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getd
ate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),
getdate(),getdate(),getdate())
13:48:18.412536 16541 (dblib.c:1250):dbcmd() bufsz = 11
13:48:18.412546 16541 (dblib.c:5727):dbfreebuf(0x66c3f0)
13:48:18.412556 16541 (dblib.c:1298):dbsqlexec(0x66c3f0)
13:48:18.412564 16541 (dblib.c:6722):dbsqlsend(0x66c3f0)
13:48:18.412572 16541 (mem.c:563):tds_free_all_results()
13:48:18.412580 16541 (util.c:162):Changed query state from IDLE to QUERYING
13:48:18.412588 16541 (write.c:136):tds_put_string converting 2016 bytes of "SELECT getdate(),getdate(),getdate(),getdate(),getdate(),ge
tdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(
),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getd
ate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),
getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdat
e(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),ge
tdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(
),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getd
ate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),
getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdat
e(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),ge
tdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(
),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getd
ate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),
getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdat
e(),getdate(),getdate(),getdate(),getdate(),getdate()"
13:48:18.412611 16541 (write.c:136):tds_put_string converting 1888 bytes of "etdate(),getdate(),getdate(),getdate(),getdate(),getdate(),
getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdat
e(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),ge
tdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(
),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getd
ate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),
getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdat
e(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),ge
tdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(
),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getd
ate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),
getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdat
e(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),ge
tdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(
),getdate(),getdate(),getdate(),getdate(),getdate(),getdate()"
13:48:18.412632 16541 (write.c:136):tds_put_string converting 1760 bytes of ",getdate(),getdate(),getdate(),getdate(),getdate(),getdate(
),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getd
ate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),
getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdat
e(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),ge
tdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(
),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getd
ate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),
getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdat
e(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),ge
tdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(
),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getd
ate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),
getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate()"
13:48:18.412644 16541 (write.c:136):tds_put_string converting 1632 bytes of "(),getdate(),getdate(),getdate(),getdate(),getdate(),getdat
e(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),ge
tdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(
),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getd
ate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),
getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdat
e(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),ge
tdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(
),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getd
ate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),
getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdat
e(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),ge
tdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate()"
13:48:18.412663 16541 (write.c:136):tds_put_string converting 1504 bytes of "te(),getdate(),getdate(),getdate(),getdate(),getdate(),getd
ate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),
getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdat
e(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),ge
tdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(
),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getd
ate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),
getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdat
e(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),ge
tdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(
),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getd
ate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate()"
13:48:18.412674 16541 (write.c:136):tds_put_string converting 1376 bytes of "date(),getdate(),getdate(),getdate(),getdate(),getdate(),ge
tdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(
),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getd
ate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),
getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdat
e(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),ge
tdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(
),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getd
ate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),
getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdat
e(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate()"
13:48:18.412685 16541 (write.c:136):tds_put_string converting 1248 bytes of "etdate(),getdate(),getdate(),getdate(),getdate(),getdate(),
getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdat
e(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),ge
tdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(
),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getd
ate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),
getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdat
e(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),ge
tdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(
),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate()"
13:48:18.412706 16541 (write.c:136):tds_put_string converting 1120 bytes of ",getdate(),getdate(),getdate(),getdate(),getdate(),getdate(
),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getd
ate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),
getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdat
e(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),ge
tdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(
),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getd
ate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),
getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate()"
13:48:18.412717 16541 (write.c:136):tds_put_string converting 992 bytes of "(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate
(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),get
date(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate()
,getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getda
te(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),g
etdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate
(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),get
date(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate()"
13:48:18.412727 16541 (write.c:136):tds_put_string converting 864 bytes of "te(),getdate(),getdate(),getdate(),getdate(),getdate(),getda
te(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),g
etdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate
(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),get
date(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate()
,getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getda
te(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate()"
13:48:18.412745 16541 (write.c:136):tds_put_string converting 736 bytes of "date(),getdate(),getdate(),getdate(),getdate(),getdate(),get
date(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate()
,getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getda
te(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),g
etdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate
(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate()"
13:48:18.412755 16541 (write.c:136):tds_put_string converting 608 bytes of "etdate(),getdate(),getdate(),getdate(),getdate(),getdate(),g
etdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate
(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),get
date(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate()
,getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getda
te()"
13:48:18.412764 16541 (write.c:136):tds_put_string converting 480 bytes of ",getdate(),getdate(),getdate(),getdate(),getdate(),getdate()
,getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getda
te(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),g
etdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate
(),getdate()"
13:48:18.412773 16541 (write.c:136):tds_put_string converting 352 bytes of "(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate
(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),get
date(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate()
,getdate(),getdate()"
13:48:18.412782 16541 (write.c:136):tds_put_string converting 224 bytes of "te(),getdate(),getdate(),getdate(),getdate(),getdate(),getda
te(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),getdate(),g
etdate(),getdate(),getdate()"
13:48:18.412790 16541 (write.c:136):tds_put_string converting 96 bytes of "date(),getdate(),getdate(),getdate(),getdate(),getdate(),getd
ate(),getdate(),getdate(),getdate()"
13:48:18.412799 16541 (write.c:164):tds_put_string wrote 4032 bytes
13:48:18.412806 16541 (util.c:162):Changed query state from QUERYING to PENDING
13:48:18.412814 16541 (net.c:779):Sending packet
0000 01 01 0f c8 00 00 01 00-53 00 45 00 4c 00 45 00 |........ S.E.L.E.|
0010 43 00 54 00 20 00 67 00-65 00 74 00 64 00 61 00 |C.T. .g. e.t.d.a.|
0020 74 00 65 00 28 00 29 00-2c 00 67 00 65 00 74 00 |t.e.(.). ,.g.e.t.|
0030 64 00 61 00 74 00 65 00-28 00 29 00 2c 00 67 00 |d.a.t.e. (.).,.g.|
0040 65 00 74 00 64 00 61 00-74 00 65 00 28 00 29 00 |e.t.d.a. t.e.(.).|
0050 2c 00 67 00 65 00 74 00-64 00 61 00 74 00 65 00 |,.g.e.t. d.a.t.e.|
0060 28 00 29 00 2c 00 67 00-65 00 74 00 64 00 61 00 |(.).,.g. e.t.d.a.|
0070 74 00 65 00 28 00 29 00-2c 00 67 00 65 00 74 00 |t.e.(.). ,.g.e.t.|
0080 64 00 61 00 74 00 65 00-28 00 29 00 2c 00 67 00 |d.a.t.e. (.).,.g.|
0090 65 00 74 00 64 00 61 00-74 00 65 00 28 00 29 00 |e.t.d.a. t.e.(.).|
00a0 2c 00 67 00 65 00 74 00-64 00 61 00 74 00 65 00 |,.g.e.t. d.a.t.e.|
00b0 28 00 29 00 2c 00 67 00-65 00 74 00 64 00 61 00 |(.).,.g. e.t.d.a.|
00c0 74 00 65 00 28 00 29 00-2c 00 67 00 65 00 74 00 |t.e.(.). ,.g.e.t.|
00d0 64 00 61 00 74 00 65 00-28 00 29 00 2c 00 67 00 |d.a.t.e. (.).,.g.|
00e0 65 00 74 00 64 00 61 00-74 00 65 00 28 00 29 00 |e.t.d.a. t.e.(.).|
00f0 2c 00 67 00 65 00 74 00-64 00 61 00 74 00 65 00 |,.g.e.t. d.a.t.e.|
0100 28 00 29 00 2c 00 67 00-65 00 74 00 64 00 61 00 |(.).,.g. e.t.d.a.|
0110 74 00 65 00 28 00 29 00-2c 00 67 00 65 00 74 00 |t.e.(.). ,.g.e.t.|
0120 64 00 61 00 74 00 65 00-28 00 29 00 2c 00 67 00 |d.a.t.e. (.).,.g.|
0130 65 00 74 00 64 00 61 00-74 00 65 00 28 00 29 00 |e.t.d.a. t.e.(.).|
0140 2c 00 67 00 65 00 74 00-64 00 61 00 74 00 65 00 |,.g.e.t. d.a.t.e.|
0150 28 00 29 00 2c 00 67 00-65 00 74 00 64 00 61 00 |(.).,.g. e.t.d.a.|
0160 74 00 65 00 28 00 29 00-2c 00 67 00 65 00 74 00 |t.e.(.). ,.g.e.t.|
0170 64 00 61 00 74 00 65 00-28 00 29 00 2c 00 67 00 |d.a.t.e. (.).,.g.|
0180 65 00 74 00 64 00 61 00-74 00 65 00 28 00 29 00 |e.t.d.a. t.e.(.).|
0190 2c 00 67 00 65 00 74 00-64 00 61 00 74 00 65 00 |,.g.e.t. d.a.t.e.|
01a0 28 00 29 00 2c 00 67 00-65 00 74 00 64 00 61 00 |(.).,.g. e.t.d.a.|
01b0 74 00 65 00 28 00 29 00-2c 00 67 00 65 00 74 00 |t.e.(.). ,.g.e.t.|
01c0 64 00 61 00 74 00 65 00-28 00 29 00 2c 00 67 00 |d.a.t.e. (.).,.g.|
01d0 65 00 74 00 64 00 61 00-74 00 65 00 28 00 29 00 |e.t.d.a. t.e.(.).|
01e0 2c 00 67 00 65 00 74 00-64 00 61 00 74 00 65 00 |,.g.e.t. d.a.t.e.|
01f0 28 00 29 00 2c 00 67 00-65 00 74 00 64 00 61 00 |(.).,.g. e.t.d.a.|
0200 74 00 65 00 28 00 29 00-2c 00 67 00 65 00 74 00 |t.e.(.). ,.g.e.t.|
0210 64 00 61 00 74 00 65 00-28 00 29 00 2c 00 67 00 |d.a.t.e. (.).,.g.|
0220 65 00 74 00 64 00 61 00-74 00 65 00 28 00 29 00 |e.t.d.a. t.e.(.).|
0230 2c 00 67 00 65 00 74 00-64 00 61 00 74 00 65 00 |,.g.e.t. d.a.t.e.|
0240 28 00 29 00 2c 00 67 00-65 00 74 00 64 00 61 00 |(.).,.g. e.t.d.a.|
0250 74 00 65 00 28 00 29 00-2c 00 67 00 65 00 74 00 |t.e.(.). ,.g.e.t.|
0260 64 00 61 00 74 00 65 00-28 00 29 00 2c 00 67 00 |d.a.t.e. (.).,.g.|
0270 65 00 74 00 64 00 61 00-74 00 65 00 28 00 29 00 |e.t.d.a. t.e.(.).|
0280 2c 00 67 00 65 00 74 00-64 00 61 00 74 00 65 00 |,.g.e.t. d.a.t.e.|
0290 28 00 29 00 2c 00 67 00-65 00 74 00 64 00 61 00 |(.).,.g. e.t.d.a.|
02a0 74 00 65 00 28 00 29 00-2c 00 67 00 65 00 74 00 |t.e.(.). ,.g.e.t.|
02b0 64 00 61 00 74 00 65 00-28 00 29 00 2c 00 67 00 |d.a.t.e. (.).,.g.|
02c0 65 00 74 00 64 00 61 00-74 00 65 00 28 00 29 00 |e.t.d.a. t.e.(.).|
02d0 2c 00 67 00 65 00 74 00-64 00 61 00 74 00 65 00 |,.g.e.t. d.a.t.e.|
02e0 28 00 29 00 2c 00 67 00-65 00 74 00 64 00 61 00 |(.).,.g. e.t.d.a.|
02f0 74 00 65 00 28 00 29 00-2c 00 67 00 65 00 74 00 |t.e.(.). ,.g.e.t.|
0300 64 00 61 00 74 00 65 00-28 00 29 00 2c 00 67 00 |d.a.t.e. (.).,.g.|
0310 65 00 74 00 64 00 61 00-74 00 65 00 28 00 29 00 |e.t.d.a. t.e.(.).|
0320 2c 00 67 00 65 00 74 00-64 00 61 00 74 00 65 00 |,.g.e.t. d.a.t.e.|
0330 28 00 29 00 2c 00 67 00-65 00 74 00 64 00 61 00 |(.).,.g. e.t.d.a.|
0340 74 00 65 00 28 00 29 00-2c 00 67 00 65 00 74 00 |t.e.(.). ,.g.e.t.|
0350 64 00 61 00 74 00 65 00-28 00 29 00 2c 00 67 00 |d.a.t.e. (.).,.g.|
0360 65 00 74 00 64 00 61 00-74 00 65 00 28 00 29 00 |e.t.d.a. t.e.(.).|
0370 2c 00 67 00 65 00 74 00-64 00 61 00 74 00 65 00 |,.g.e.t. d.a.t.e.|
0380 28 00 29 00 2c 00 67 00-65 00 74 00 64 00 61 00 |(.).,.g. e.t.d.a.|
0390 74 00 65 00 28 00 29 00-2c 00 67 00 65 00 74 00 |t.e.(.). ,.g.e.t.|
03a0 64 00 61 00 74 00 65 00-28 00 29 00 2c 00 67 00 |d.a.t.e. (.).,.g.|
03b0 65 00 74 00 64 00 61 00-74 00 65 00 28 00 29 00 |e.t.d.a. t.e.(.).|
03c0 2c 00 67 00 65 00 74 00-64 00 61 00 74 00 65 00 |,.g.e.t. d.a.t.e.|
03d0 28 00 29 00 2c 00 67 00-65 00 74 00 64 00 61 00 |(.).,.g. e.t.d.a.|
03e0 74 00 65 00 28 00 29 00-2c 00 67 00 65 00 74 00 |t.e.(.). ,.g.e.t.|
03f0 64 00 61 00 74 00 65 00-28 00 29 00 2c 00 67 00 |d.a.t.e. (.).,.g.|
0400 65 00 74 00 64 00 61 00-74 00 65 00 28 00 29 00 |e.t.d.a. t.e.(.).|
0410 2c 00 67 00 65 00 74 00-64 00 61 00 74 00 65 00 |,.g.e.t. d.a.t.e.|
0420 28 00 29 00 2c 00 67 00-65 00 74 00 64 00 61 00 |(.).,.g. e.t.d.a.|
0430 74 00 65 00 28 00 29 00-2c 00 67 00 65 00 74 00 |t.e.(.). ,.g.e.t.|
0440 64 00 61 00 74 00 65 00-28 00 29 00 2c 00 67 00 |d.a.t.e. (.).,.g.|
0450 65 00 74 00 64 00 61 00-74 00 65 00 28 00 29 00 |e.t.d.a. t.e.(.).|
0460 2c 00 67 00 65 00 74 00-64 00 61 00 74 00 65 00 |,.g.e.t. d.a.t.e.|
0470 28 00 29 00 2c 00 67 00-65 00 74 00 64 00 61 00 |(.).,.g. e.t.d.a.|
0480 74 00 65 00 28 00 29 00-2c 00 67 00 65 00 74 00 |t.e.(.). ,.g.e.t.|
0490 64 00 61 00 74 00 65 00-28 00 29 00 2c 00 67 00 |d.a.t.e. (.).,.g.|
04a0 65 00 74 00 64 00 61 00-74 00 65 00 28 00 29 00 |e.t.d.a. t.e.(.).|
04b0 2c 00 67 00 65 00 74 00-64 00 61 00 74 00 65 00 |,.g.e.t. d.a.t.e.|
04c0 28 00 29 00 2c 00 67 00-65 00 74 00 64 00 61 00 |(.).,.g. e.t.d.a.|
04d0 74 00 65 00 28 00 29 00-2c 00 67 00 65 00 74 00 |t.e.(.). ,.g.e.t.|
04e0 64 00 61 00 74 00 65 00-28 00 29 00 2c 00 67 00 |d.a.t.e. (.).,.g.|
04f0 65 00 74 00 64 00 61 00-74 00 65 00 28 00 29 00 |e.t.d.a. t.e.(.).|
0500 2c 00 67 00 65 00 74 00-64 00 61 00 74 00 65 00 |,.g.e.t. d.a.t.e.|
0510 28 00 29 00 2c 00 67 00-65 00 74 00 64 00 61 00 |(.).,.g. e.t.d.a.|
0520 74 00 65 00 28 00 29 00-2c 00 67 00 65 00 74 00 |t.e.(.). ,.g.e.t.|
0530 64 00 61 00 74 00 65 00-28 00 29 00 2c 00 67 00 |d.a.t.e. (.).,.g.|
0540 65 00 74 00 64 00 61 00-74 00 65 00 28 00 29 00 |e.t.d.a. t.e.(.).|
0550 2c 00 67 00 65 00 74 00-64 00 61 00 74 00 65 00 |,.g.e.t. d.a.t.e.|
0560 28 00 29 00 2c 00 67 00-65 00 74 00 64 00 61 00 |(.).,.g. e.t.d.a.|
0570 74 00 65 00 28 00 29 00-2c 00 67 00 65 00 74 00 |t.e.(.). ,.g.e.t.|
0580 64 00 61 00 74 00 65 00-28 00 29 00 2c 00 67 00 |d.a.t.e. (.).,.g.|
0590 65 00 74 00 64 00 61 00-74 00 65 00 28 00 29 00 |e.t.d.a. t.e.(.).|
05a0 2c 00 67 00 65 00 74 00-64 00 61 00 74 00 65 00 |,.g.e.t. d.a.t.e.|
05b0 28 00 29 00 2c 00 67 00-65 00 74 00 64 00 61 00 |(.).,.g. e.t.d.a.|
05c0 74 00 65 00 28 00 29 00-2c 00 67 00 65 00 74 00 |t.e.(.). ,.g.e.t.|
05d0 64 00 61 00 74 00 65 00-28 00 29 00 2c 00 67 00 |d.a.t.e. (.).,.g.|
05e0 65 00 74 00 64 00 61 00-74 00 65 00 28 00 29 00 |e.t.d.a. t.e.(.).|
05f0 2c 00 67 00 65 00 74 00-64 00 61 00 74 00 65 00 |,.g.e.t. d.a.t.e.|
0600 28 00 29 00 2c 00 67 00-65 00 74 00 64 00 61 00 |(.).,.g. e.t.d.a.|
0610 74 00 65 00 28 00 29 00-2c 00 67 00 65 00 74 00 |t.e.(.). ,.g.e.t.|
0620 64 00 61 00 74 00 65 00-28 00 29 00 2c 00 67 00 |d.a.t.e. (.).,.g.|
0630 65 00 74 00 64 00 61 00-74 00 65 00 28 00 29 00 |e.t.d.a. t.e.(.).|
0640 2c 00 67 00 65 00 74 00-64 00 61 00 74 00 65 00 |,.g.e.t. d.a.t.e.|
0650 28 00 29 00 2c 00 67 00-65 00 74 00 64 00 61 00 |(.).,.g. e.t.d.a.|
0660 74 00 65 00 28 00 29 00-2c 00 67 00 65 00 74 00 |t.e.(.). ,.g.e.t.|
0670 64 00 61 00 74 00 65 00-28 00 29 00 2c 00 67 00 |d.a.t.e. (.).,.g.|
0680 65 00 74 00 64 00 61 00-74 00 65 00 28 00 29 00 |e.t.d.a. t.e.(.).|
0690 2c 00 67 00 65 00 74 00-64 00 61 00 74 00 65 00 |,.g.e.t. d.a.t.e.|
06a0 28 00 29 00 2c 00 67 00-65 00 74 00 64 00 61 00 |(.).,.g. e.t.d.a.|
06b0 74 00 65 00 28 00 29 00-2c 00 67 00 65 00 74 00 |t.e.(.). ,.g.e.t.|
06c0 64 00 61 00 74 00 65 00-28 00 29 00 2c 00 67 00 |d.a.t.e. (.).,.g.|
06d0 65 00 74 00 64 00 61 00-74 00 65 00 28 00 29 00 |e.t.d.a. t.e.(.).|
06e0 2c 00 67 00 65 00 74 00-64 00 61 00 74 00 65 00 |,.g.e.t. d.a.t.e.|
06f0 28 00 29 00 2c 00 67 00-65 00 74 00 64 00 61 00 |(.).,.g. e.t.d.a.|
0700 74 00 65 00 28 00 29 00-2c 00 67 00 65 00 74 00 |t.e.(.). ,.g.e.t.|
0710 64 00 61 00 74 00 65 00-28 00 29 00 2c 00 67 00 |d.a.t.e. (.).,.g.|
0720 65 00 74 00 64 00 61 00-74 00 65 00 28 00 29 00 |e.t.d.a. t.e.(.).|
0730 2c 00 67 00 65 00 74 00-64 00 61 00 74 00 65 00 |,.g.e.t. d.a.t.e.|
0740 28 00 29 00 2c 00 67 00-65 00 74 00 64 00 61 00 |(.).,.g. e.t.d.a.|
0750 74 00 65 00 28 00 29 00-2c 00 67 00 65 00 74 00 |t.e.(.). ,.g.e.t.|
0760 64 00 61 00 74 00 65 00-28 00 29 00 2c 00 67 00 |d.a.t.e. (.).,.g.|
0770 65 00 74 00 64 00 61 00-74 00 65 00 28 00 29 00 |e.t.d.a. t.e.(.).|
0780 2c 00 67 00 65 00 74 00-64 00 61 00 74 00 65 00 |,.g.e.t. d.a.t.e.|
0790 28 00 29 00 2c 00 67 00-65 00 74 00 64 00 61 00 |(.).,.g. e.t.d.a.|
07a0 74 00 65 00 28 00 29 00-2c 00 67 00 65 00 74 00 |t.e.(.). ,.g.e.t.|
07b0 64 00 61 00 74 00 65 00-28 00 29 00 2c 00 67 00 |d.a.t.e. (.).,.g.|
07c0 65 00 74 00 64 00 61 00-74 00 65 00 28 00 29 00 |e.t.d.a. t.e.(.).|
07d0 2c 00 67 00 65 00 74 00-64 00 61 00 74 00 65 00 |,.g.e.t. d.a.t.e.|
07e0 28 00 29 00 2c 00 67 00-65 00 74 00 64 00 61 00 |(.).,.g. e.t.d.a.|
07f0 74 00 65 00 28 00 29 00-2c 00 67 00 65 00 74 00 |t.e.(.). ,.g.e.t.|
0800 64 00 61 00 74 00 65 00-28 00 29 00 2c 00 67 00 |d.a.t.e. (.).,.g.|
0810 65 00 74 00 64 00 61 00-74 00 65 00 28 00 29 00 |e.t.d.a. t.e.(.).|
0820 2c 00 67 00 65 00 74 00-64 00 61 00 74 00 65 00 |,.g.e.t. d.a.t.e.|
0830 28 00 29 00 2c 00 67 00-65 00 74 00 64 00 61 00 |(.).,.g. e.t.d.a.|
0840 74 00 65 00 28 00 29 00-2c 00 67 00 65 00 74 00 |t.e.(.). ,.g.e.t.|
0850 64 00 61 00 74 00 65 00-28 00 29 00 2c 00 67 00 |d.a.t.e. (.).,.g.|
0860 65 00 74 00 64 00 61 00-74 00 65 00 28 00 29 00 |e.t.d.a. t.e.(.).|
0870 2c 00 67 00 65 00 74 00-64 00 61 00 74 00 65 00 |,.g.e.t. d.a.t.e.|
0880 28 00 29 00 2c 00 67 00-65 00 74 00 64 00 61 00 |(.).,.g. e.t.d.a.|
0890 74 00 65 00 28 00 29 00-2c 00 67 00 65 00 74 00 |t.e.(.). ,.g.e.t.|
08a0 64 00 61 00 74 00 65 00-28 00 29 00 2c 00 67 00 |d.a.t.e. (.).,.g.|
08b0 65 00 74 00 64 00 61 00-74 00 65 00 28 00 29 00 |e.t.d.a. t.e.(.).|
08c0 2c 00 67 00 65 00 74 00-64 00 61 00 74 00 65 00 |,.g.e.t. d.a.t.e.|
08d0 28 00 29 00 2c 00 67 00-65 00 74 00 64 00 61 00 |(.).,.g. e.t.d.a.|
08e0 74 00 65 00 28 00 29 00-2c 00 67 00 65 00 74 00 |t.e.(.). ,.g.e.t.|
08f0 64 00 61 00 74 00 65 00-28 00 29 00 2c 00 67 00 |d.a.t.e. (.).,.g.|
0900 65 00 74 00 64 00 61 00-74 00 65 00 28 00 29 00 |e.t.d.a. t.e.(.).|
0910 2c 00 67 00 65 00 74 00-64 00 61 00 74 00 65 00 |,.g.e.t. d.a.t.e.|
0920 28 00 29 00 2c 00 67 00-65 00 74 00 64 00 61 00 |(.).,.g. e.t.d.a.|
0930 74 00 65 00 28 00 29 00-2c 00 67 00 65 00 74 00 |t.e.(.). ,.g.e.t.|
0940 64 00 61 00 74 00 65 00-28 00 29 00 2c 00 67 00 |d.a.t.e. (.).,.g.|
0950 65 00 74 00 64 00 61 00-74 00 65 00 28 00 29 00 |e.t.d.a. t.e.(.).|
0960 2c 00 67 00 65 00 74 00-64 00 61 00 74 00 65 00 |,.g.e.t. d.a.t.e.|
0970 28 00 29 00 2c 00 67 00-65 00 74 00 64 00 61 00 |(.).,.g. e.t.d.a.|
0980 74 00 65 00 28 00 29 00-2c 00 67 00 65 00 74 00 |t.e.(.). ,.g.e.t.|
0990 64 00 61 00 74 00 65 00-28 00 29 00 2c 00 67 00 |d.a.t.e. (.).,.g.|
09a0 65 00 74 00 64 00 61 00-74 00 65 00 28 00 29 00 |e.t.d.a. t.e.(.).|
09b0 2c 00 67 00 65 00 74 00-64 00 61 00 74 00 65 00 |,.g.e.t. d.a.t.e.|
09c0 28 00 29 00 2c 00 67 00-65 00 74 00 64 00 61 00 |(.).,.g. e.t.d.a.|
09d0 74 00 65 00 28 00 29 00-2c 00 67 00 65 00 74 00 |t.e.(.). ,.g.e.t.|
09e0 64 00 61 00 74 00 65 00-28 00 29 00 2c 00 67 00 |d.a.t.e. (.).,.g.|
09f0 65 00 74 00 64 00 61 00-74 00 65 00 28 00 29 00 |e.t.d.a. t.e.(.).|
0a00 2c 00 67 00 65 00 74 00-64 00 61 00 74 00 65 00 |,.g.e.t. d.a.t.e.|
0a10 28 00 29 00 2c 00 67 00-65 00 74 00 64 00 61 00 |(.).,.g. e.t.d.a.|
0a20 74 00 65 00 28 00 29 00-2c 00 67 00 65 00 74 00 |t.e.(.). ,.g.e.t.|
0a30 64 00 61 00 74 00 65 00-28 00 29 00 2c 00 67 00 |d.a.t.e. (.).,.g.|
0a40 65 00 74 00 64 00 61 00-74 00 65 00 28 00 29 00 |e.t.d.a. t.e.(.).|
0a50 2c 00 67 00 65 00 74 00-64 00 61 00 74 00 65 00 |,.g.e.t. d.a.t.e.|
0a60 28 00 29 00 2c 00 67 00-65 00 74 00 64 00 61 00 |(.).,.g. e.t.d.a.|
0a70 74 00 65 00 28 00 29 00-2c 00 67 00 65 00 74 00 |t.e.(.). ,.g.e.t.|
0a80 64 00 61 00 74 00 65 00-28 00 29 00 2c 00 67 00 |d.a.t.e. (.).,.g.|
0a90 65 00 74 00 64 00 61 00-74 00 65 00 28 00 29 00 |e.t.d.a. t.e.(.).|
0aa0 2c 00 67 00 65 00 74 00-64 00 61 00 74 00 65 00 |,.g.e.t. d.a.t.e.|
0ab0 28 00 29 00 2c 00 67 00-65 00 74 00 64 00 61 00 |(.).,.g. e.t.d.a.|
0ac0 74 00 65 00 28 00 29 00-2c 00 67 00 65 00 74 00 |t.e.(.). ,.g.e.t.|
0ad0 64 00 61 00 74 00 65 00-28 00 29 00 2c 00 67 00 |d.a.t.e. (.).,.g.|
0ae0 65 00 74 00 64 00 61 00-74 00 65 00 28 00 29 00 |e.t.d.a. t.e.(.).|
0af0 2c 00 67 00 65 00 74 00-64 00 61 00 74 00 65 00 |,.g.e.t. d.a.t.e.|
0b00 28 00 29 00 2c 00 67 00-65 00 74 00 64 00 61 00 |(.).,.g. e.t.d.a.|
0b10 74 00 65 00 28 00 29 00-2c 00 67 00 65 00 74 00 |t.e.(.). ,.g.e.t.|
0b20 64 00 61 00 74 00 65 00-28 00 29 00 2c 00 67 00 |d.a.t.e. (.).,.g.|
0b30 65 00 74 00 64 00 61 00-74 00 65 00 28 00 29 00 |e.t.d.a. t.e.(.).|
0b40 2c 00 67 00 65 00 74 00-64 00 61 00 74 00 65 00 |,.g.e.t. d.a.t.e.|
0b50 28 00 29 00 2c 00 67 00-65 00 74 00 64 00 61 00 |(.).,.g. e.t.d.a.|
0b60 74 00 65 00 28 00 29 00-2c 00 67 00 65 00 74 00 |t.e.(.). ,.g.e.t.|
0b70 64 00 61 00 74 00 65 00-28 00 29 00 2c 00 67 00 |d.a.t.e. (.).,.g.|
0b80 65 00 74 00 64 00 61 00-74 00 65 00 28 00 29 00 |e.t.d.a. t.e.(.).|
0b90 2c 00 67 00 65 00 74 00-64 00 61 00 74 00 65 00 |,.g.e.t. d.a.t.e.|
0ba0 28 00 29 00 2c 00 67 00-65 00 74 00 64 00 61 00 |(.).,.g. e.t.d.a.|
0bb0 74 00 65 00 28 00 29 00-2c 00 67 00 65 00 74 00 |t.e.(.). ,.g.e.t.|
0bc0 64 00 61 00 74 00 65 00-28 00 29 00 2c 00 67 00 |d.a.t.e. (.).,.g.|
0bd0 65 00 74 00 64 00 61 00-74 00 65 00 28 00 29 00 |e.t.d.a. t.e.(.).|
0be0 2c 00 67 00 65 00 74 00-64 00 61 00 74 00 65 00 |,.g.e.t. d.a.t.e.|
0bf0 28 00 29 00 2c 00 67 00-65 00 74 00 64 00 61 00 |(.).,.g. e.t.d.a.|
0c00 74 00 65 00 28 00 29 00-2c 00 67 00 65 00 74 00 |t.e.(.). ,.g.e.t.|
0c10 64 00 61 00 74 00 65 00-28 00 29 00 2c 00 67 00 |d.a.t.e. (.).,.g.|
0c20 65 00 74 00 64 00 61 00-74 00 65 00 28 00 29 00 |e.t.d.a. t.e.(.).|
0c30 2c 00 67 00 65 00 74 00-64 00 61 00 74 00 65 00 |,.g.e.t. d.a.t.e.|
0c40 28 00 29 00 2c 00 67 00-65 00 74 00 64 00 61 00 |(.).,.g. e.t.d.a.|
0c50 74 00 65 00 28 00 29 00-2c 00 67 00 65 00 74 00 |t.e.(.). ,.g.e.t.|
0c60 64 00 61 00 74 00 65 00-28 00 29 00 2c 00 67 00 |d.a.t.e. (.).,.g.|
0c70 65 00 74 00 64 00 61 00-74 00 65 00 28 00 29 00 |e.t.d.a. t.e.(.).|
0c80 2c 00 67 00 65 00 74 00-64 00 61 00 74 00 65 00 |,.g.e.t. d.a.t.e.|
0c90 28 00 29 00 2c 00 67 00-65 00 74 00 64 00 61 00 |(.).,.g. e.t.d.a.|
0ca0 74 00 65 00 28 00 29 00-2c 00 67 00 65 00 74 00 |t.e.(.). ,.g.e.t.|
0cb0 64 00 61 00 74 00 65 00-28 00 29 00 2c 00 67 00 |d.a.t.e. (.).,.g.|
0cc0 65 00 74 00 64 00 61 00-74 00 65 00 28 00 29 00 |e.t.d.a. t.e.(.).|
0cd0 2c 00 67 00 65 00 74 00-64 00 61 00 74 00 65 00 |,.g.e.t. d.a.t.e.|
0ce0 28 00 29 00 2c 00 67 00-65 00 74 00 64 00 61 00 |(.).,.g. e.t.d.a.|
0cf0 74 00 65 00 28 00 29 00-2c 00 67 00 65 00 74 00 |t.e.(.). ,.g.e.t.|
0d00 64 00 61 00 74 00 65 00-28 00 29 00 2c 00 67 00 |d.a.t.e. (.).,.g.|
0d10 65 00 74 00 64 00 61 00-74 00 65 00 28 00 29 00 |e.t.d.a. t.e.(.).|
0d20 2c 00 67 00 65 00 74 00-64 00 61 00 74 00 65 00 |,.g.e.t. d.a.t.e.|
0d30 28 00 29 00 2c 00 67 00-65 00 74 00 64 00 61 00 |(.).,.g. e.t.d.a.|
0d40 74 00 65 00 28 00 29 00-2c 00 67 00 65 00 74 00 |t.e.(.). ,.g.e.t.|
0d50 64 00 61 00 74 00 65 00-28 00 29 00 2c 00 67 00 |d.a.t.e. (.).,.g.|
0d60 65 00 74 00 64 00 61 00-74 00 65 00 28 00 29 00 |e.t.d.a. t.e.(.).|
0d70 2c 00 67 00 65 00 74 00-64 00 61 00 74 00 65 00 |,.g.e.t. d.a.t.e.|
0d80 28 00 29 00 2c 00 67 00-65 00 74 00 64 00 61 00 |(.).,.g. e.t.d.a.|
0d90 74 00 65 00 28 00 29 00-2c 00 67 00 65 00 74 00 |t.e.(.). ,.g.e.t.|
0da0 64 00 61 00 74 00 65 00-28 00 29 00 2c 00 67 00 |d.a.t.e. (.).,.g.|
0db0 65 00 74 00 64 00 61 00-74 00 65 00 28 00 29 00 |e.t.d.a. t.e.(.).|
0dc0 2c 00 67 00 65 00 74 00-64 00 61 00 74 00 65 00 |,.g.e.t. d.a.t.e.|
0dd0 28 00 29 00 2c 00 67 00-65 00 74 00 64 00 61 00 |(.).,.g. e.t.d.a.|
0de0 74 00 65 00 28 00 29 00-2c 00 67 00 65 00 74 00 |t.e.(.). ,.g.e.t.|
0df0 64 00 61 00 74 00 65 00-28 00 29 00 2c 00 67 00 |d.a.t.e. (.).,.g.|
0e00 65 00 74 00 64 00 61 00-74 00 65 00 28 00 29 00 |e.t.d.a. t.e.(.).|
0e10 2c 00 67 00 65 00 74 00-64 00 61 00 74 00 65 00 |,.g.e.t. d.a.t.e.|
0e20 28 00 29 00 2c 00 67 00-65 00 74 00 64 00 61 00 |(.).,.g. e.t.d.a.|
0e30 74 00 65 00 28 00 29 00-2c 00 67 00 65 00 74 00 |t.e.(.). ,.g.e.t.|
0e40 64 00 61 00 74 00 65 00-28 00 29 00 2c 00 67 00 |d.a.t.e. (.).,.g.|
0e50 65 00 74 00 64 00 61 00-74 00 65 00 28 00 29 00 |e.t.d.a. t.e.(.).|
0e60 2c 00 67 00 65 00 74 00-64 00 61 00 74 00 65 00 |,.g.e.t. d.a.t.e.|
0e70 28 00 29 00 2c 00 67 00-65 00 74 00 64 00 61 00 |(.).,.g. e.t.d.a.|
0e80 74 00 65 00 28 00 29 00-2c 00 67 00 65 00 74 00 |t.e.(.). ,.g.e.t.|
0e90 64 00 61 00 74 00 65 00-28 00 29 00 2c 00 67 00 |d.a.t.e. (.).,.g.|
0ea0 65 00 74 00 64 00 61 00-74 00 65 00 28 00 29 00 |e.t.d.a. t.e.(.).|
0eb0 2c 00 67 00 65 00 74 00-64 00 61 00 74 00 65 00 |,.g.e.t. d.a.t.e.|
0ec0 28 00 29 00 2c 00 67 00-65 00 74 00 64 00 61 00 |(.).,.g. e.t.d.a.|
0ed0 74 00 65 00 28 00 29 00-2c 00 67 00 65 00 74 00 |t.e.(.). ,.g.e.t.|
0ee0 64 00 61 00 74 00 65 00-28 00 29 00 2c 00 67 00 |d.a.t.e. (.).,.g.|
0ef0 65 00 74 00 64 00 61 00-74 00 65 00 28 00 29 00 |e.t.d.a. t.e.(.).|
0f00 2c 00 67 00 65 00 74 00-64 00 61 00 74 00 65 00 |,.g.e.t. d.a.t.e.|
0f10 28 00 29 00 2c 00 67 00-65 00 74 00 64 00 61 00 |(.).,.g. e.t.d.a.|
0f20 74 00 65 00 28 00 29 00-2c 00 67 00 65 00 74 00 |t.e.(.). ,.g.e.t.|
0f30 64 00 61 00 74 00 65 00-28 00 29 00 2c 00 67 00 |d.a.t.e. (.).,.g.|
0f40 65 00 74 00 64 00 61 00-74 00 65 00 28 00 29 00 |e.t.d.a. t.e.(.).|
0f50 2c 00 67 00 65 00 74 00-64 00 61 00 74 00 65 00 |,.g.e.t. d.a.t.e.|
0f60 28 00 29 00 2c 00 67 00-65 00 74 00 64 00 61 00 |(.).,.g. e.t.d.a.|
0f70 74 00 65 00 28 00 29 00-2c 00 67 00 65 00 74 00 |t.e.(.). ,.g.e.t.|
0f80 64 00 61 00 74 00 65 00-28 00 29 00 2c 00 67 00 |d.a.t.e. (.).,.g.|
0f90 65 00 74 00 64 00 61 00-74 00 65 00 28 00 29 00 |e.t.d.a. t.e.(.).|
0fa0 2c 00 67 00 65 00 74 00-64 00 61 00 74 00 65 00 |,.g.e.t. d.a.t.e.|
0fb0 28 00 29 00 2c 00 67 00-65 00 74 00 64 00 61 00 |(.).,.g. e.t.d.a.|
0fc0 74 00 65 00 28 00 29 00- |t.e.(.).|
13:48:18.413869 16541 (dblib.c:4532):dbsqlok(0x66c3f0)
13:48:18.421594 16541 (net.c:592):Received header
0000 04 01 0b 13 00 36 01 00- |.....6..|
13:48:18.421709 16541 (net.c:671):Received packet
0000 81 c9 00 00 00 00 00 3d-00 00 00 00 00 3d 00 00 |.......= .....=..|
0010 00 00 00 3d 00 00 00 00-00 3d 00 00 00 00 00 3d |...=.... .=.....=|
0020 00 00 00 00 00 3d 00 00-00 00 00 3d 00 00 00 00 |.....=.. ...=....|
0030 00 3d 00 00 00 00 00 3d-00 00 00 00 00 3d 00 00 |.=.....= .....=..|
0040 00 00 00 3d 00 00 00 00-00 3d 00 00 00 00 00 3d |...=.... .=.....=|
0050 00 00 00 00 00 3d 00 00-00 00 00 3d 00 00 00 00 |.....=.. ...=....|
0060 00 3d 00 00 00 00 00 3d-00 00 00 00 00 3d 00 00 |.=.....= .....=..|
0070 00 00 00 3d 00 00 00 00-00 3d 00 00 00 00 00 3d |...=.... .=.....=|
0080 00 00 00 00 00 3d 00 00-00 00 00 3d 00 00 00 00 |.....=.. ...=....|
0090 00 3d 00 00 00 00 00 3d-00 00 00 00 00 3d 00 00 |.=.....= .....=..|
00a0 00 00 00 3d 00 00 00 00-00 3d 00 00 00 00 00 3d |...=.... .=.....=|
00b0 00 00 00 00 00 3d 00 00-00 00 00 3d 00 00 00 00 |.....=.. ...=....|
00c0 00 3d 00 00 00 00 00 3d-00 00 00 00 00 3d 00 00 |.=.....= .....=..|
00d0 00 00 00 3d 00 00 00 00-00 3d 00 00 00 00 00 3d |...=.... .=.....=|
00e0 00 00 00 00 00 3d 00 00-00 00 00 3d 00 00 00 00 |.....=.. ...=....|
00f0 00 3d 00 00 00 00 00 3d-00 00 00 00 00 3d 00 00 |.=.....= .....=..|
0100 00 00 00 3d 00 00 00 00-00 3d 00 00 00 00 00 3d |...=.... .=.....=|
0110 00 00 00 00 00 3d 00 00-00 00 00 3d 00 00 00 00 |.....=.. ...=....|
0120 00 3d 00 00 00 00 00 3d-00 00 00 00 00 3d 00 00 |.=.....= .....=..|
0130 00 00 00 3d 00 00 00 00-00 3d 00 00 00 00 00 3d |...=.... .=.....=|
0140 00 00 00 00 00 3d 00 00-00 00 00 3d 00 00 00 00 |.....=.. ...=....|
0150 00 3d 00 00 00 00 00 3d-00 00 00 00 00 3d 00 00 |.=.....= .....=..|
0160 00 00 00 3d 00 00 00 00-00 3d 00 00 00 00 00 3d |...=.... .=.....=|
0170 00 00 00 00 00 3d 00 00-00 00 00 3d 00 00 00 00 |.....=.. ...=....|
0180 00 3d 00 00 00 00 00 3d-00 00 00 00 00 3d 00 00 |.=.....= .....=..|
0190 00 00 00 3d 00 00 00 00-00 3d 00 00 00 00 00 3d |...=.... .=.....=|
01a0 00 00 00 00 00 3d 00 00-00 00 00 3d 00 00 00 00 |.....=.. ...=....|
01b0 00 3d 00 00 00 00 00 3d-00 00 00 00 00 3d 00 00 |.=.....= .....=..|
01c0 00 00 00 3d 00 00 00 00-00 3d 00 00 00 00 00 3d |...=.... .=.....=|
01d0 00 00 00 00 00 3d 00 00-00 00 00 3d 00 00 00 00 |.....=.. ...=....|
01e0 00 3d 00 00 00 00 00 3d-00 00 00 00 00 3d 00 00 |.=.....= .....=..|
01f0 00 00 00 3d 00 00 00 00-00 3d 00 00 00 00 00 3d |...=.... .=.....=|
0200 00 00 00 00 00 3d 00 00-00 00 00 3d 00 00 00 00 |.....=.. ...=....|
0210 00 3d 00 00 00 00 00 3d-00 00 00 00 00 3d 00 00 |.=.....= .....=..|
0220 00 00 00 3d 00 00 00 00-00 3d 00 00 00 00 00 3d |...=.... .=.....=|
0230 00 00 00 00 00 3d 00 00-00 00 00 3d 00 00 00 00 |.....=.. ...=....|
0240 00 3d 00 00 00 00 00 3d-00 00 00 00 00 3d 00 00 |.=.....= .....=..|
0250 00 00 00 3d 00 00 00 00-00 3d 00 00 00 00 00 3d |...=.... .=.....=|
0260 00 00 00 00 00 3d 00 00-00 00 00 3d 00 00 00 00 |.....=.. ...=....|
0270 00 3d 00 00 00 00 00 3d-00 00 00 00 00 3d 00 00 |.=.....= .....=..|
0280 00 00 00 3d 00 00 00 00-00 3d 00 00 00 00 00 3d |...=.... .=.....=|
0290 00 00 00 00 00 3d 00 00-00 00 00 3d 00 00 00 00 |.....=.. ...=....|
02a0 00 3d 00 00 00 00 00 3d-00 00 00 00 00 3d 00 00 |.=.....= .....=..|
02b0 00 00 00 3d 00 00 00 00-00 3d 00 00 00 00 00 3d |...=.... .=.....=|
02c0 00 00 00 00 00 3d 00 00-00 00 00 3d 00 00 00 00 |.....=.. ...=....|
02d0 00 3d 00 00 00 00 00 3d-00 00 00 00 00 3d 00 00 |.=.....= .....=..|
02e0 00 00 00 3d 00 00 00 00-00 3d 00 00 00 00 00 3d |...=.... .=.....=|
02f0 00 00 00 00 00 3d 00 00-00 00 00 3d 00 00 00 00 |.....=.. ...=....|
0300 00 3d 00 00 00 00 00 3d-00 00 00 00 00 3d 00 00 |.=.....= .....=..|
0310 00 00 00 3d 00 00 00 00-00 3d 00 00 00 00 00 3d |...=.... .=.....=|
0320 00 00 00 00 00 3d 00 00-00 00 00 3d 00 00 00 00 |.....=.. ...=....|
0330 00 3d 00 00 00 00 00 3d-00 00 00 00 00 3d 00 00 |.=.....= .....=..|
0340 00 00 00 3d 00 00 00 00-00 3d 00 00 00 00 00 3d |...=.... .=.....=|
0350 00 00 00 00 00 3d 00 00-00 00 00 3d 00 00 00 00 |.....=.. ...=....|
0360 00 3d 00 00 00 00 00 3d-00 00 00 00 00 3d 00 00 |.=.....= .....=..|
0370 00 00 00 3d 00 00 00 00-00 3d 00 00 00 00 00 3d |...=.... .=.....=|
0380 00 00 00 00 00 3d 00 00-00 00 00 3d 00 00 00 00 |.....=.. ...=....|
0390 00 3d 00 00 00 00 00 3d-00 00 00 00 00 3d 00 00 |.=.....= .....=..|
03a0 00 00 00 3d 00 00 00 00-00 3d 00 00 00 00 00 3d |...=.... .=.....=|
03b0 00 00 00 00 00 3d 00 00-00 00 00 3d 00 00 00 00 |.....=.. ...=....|
03c0 00 3d 00 00 00 00 00 3d-00 00 00 00 00 3d 00 00 |.=.....= .....=..|
03d0 00 00 00 3d 00 00 00 00-00 3d 00 00 00 00 00 3d |...=.... .=.....=|
03e0 00 00 00 00 00 3d 00 00-00 00 00 3d 00 00 00 00 |.....=.. ...=....|
03f0 00 3d 00 00 00 00 00 3d-00 00 00 00 00 3d 00 00 |.=.....= .....=..|
0400 00 00 00 3d 00 00 00 00-00 3d 00 00 00 00 00 3d |...=.... .=.....=|
0410 00 00 00 00 00 3d 00 00-00 00 00 3d 00 00 00 00 |.....=.. ...=....|
0420 00 3d 00 00 00 00 00 3d-00 00 00 00 00 3d 00 00 |.=.....= .....=..|
0430 00 00 00 3d 00 00 00 00-00 3d 00 00 00 00 00 3d |...=.... .=.....=|
0440 00 00 00 00 00 3d 00 00-00 00 00 3d 00 00 00 00 |.....=.. ...=....|
0450 00 3d 00 00 00 00 00 3d-00 00 00 00 00 3d 00 00 |.=.....= .....=..|
0460 00 00 00 3d 00 00 00 00-00 3d 00 00 00 00 00 3d |...=.... .=.....=|
0470 00 00 00 00 00 3d 00 00-00 00 00 3d 00 00 00 00 |.....=.. ...=....|
0480 00 3d 00 00 00 00 00 3d-00 00 00 00 00 3d 00 00 |.=.....= .....=..|
0490 00 00 00 3d 00 00 00 00-00 3d 00 00 00 00 00 3d |...=.... .=.....=|
04a0 00 00 00 00 00 3d 00 00-00 00 00 3d 00 00 00 00 |.....=.. ...=....|
04b0 00 3d 00 00 00 00 00 3d-00 d1 c0 9b 00 00 1b 3e |.=.....= .......>|
04c0 e2 00 c0 9b 00 00 1b 3e-e2 00 c0 9b 00 00 1b 3e |.......> .......>|
04d0 e2 00 c0 9b 00 00 1b 3e-e2 00 c0 9b 00 00 1b 3e |.......> .......>|
04e0 e2 00 c0 9b 00 00 1b 3e-e2 00 c0 9b 00 00 1b 3e |.......> .......>|
04f0 e2 00 c0 9b 00 00 1b 3e-e2 00 c0 9b 00 00 1b 3e |.......> .......>|
0500 e2 00 c0 9b 00 00 1b 3e-e2 00 c0 9b 00 00 1b 3e |.......> .......>|
0510 e2 00 c0 9b 00 00 1b 3e-e2 00 c0 9b 00 00 1b 3e |.......> .......>|
0520 e2 00 c0 9b 00 00 1b 3e-e2 00 c0 9b 00 00 1b 3e |.......> .......>|
0530 e2 00 c0 9b 00 00 1b 3e-e2 00 c0 9b 00 00 1b 3e |.......> .......>|
0540 e2 00 c0 9b 00 00 1b 3e-e2 00 c0 9b 00 00 1b 3e |.......> .......>|
0550 e2 00 c0 9b 00 00 1b 3e-e2 00 c0 9b 00 00 1b 3e |.......> .......>|
0560 e2 00 c0 9b 00 00 1b 3e-e2 00 c0 9b 00 00 1b 3e |.......> .......>|
0570 e2 00 c0 9b 00 00 1b 3e-e2 00 c0 9b 00 00 1b 3e |.......> .......>|
0580 e2 00 c0 9b 00 00 1b 3e-e2 00 c0 9b 00 00 1b 3e |.......> .......>|
0590 e2 00 c0 9b 00 00 1b 3e-e2 00 c0 9b 00 00 1b 3e |.......> .......>|
05a0 e2 00 c0 9b 00 00 1b 3e-e2 00 c0 9b 00 00 1b 3e |.......> .......>|
05b0 e2 00 c0 9b 00 00 1b 3e-e2 00 c0 9b 00 00 1b 3e |.......> .......>|
05c0 e2 00 c0 9b 00 00 1b 3e-e2 00 c0 9b 00 00 1b 3e |.......> .......>|
05d0 e2 00 c0 9b 00 00 1b 3e-e2 00 c0 9b 00 00 1b 3e |.......> .......>|
05e0 e2 00 c0 9b 00 00 1b 3e-e2 00 c0 9b 00 00 1b 3e |.......> .......>|
05f0 e2 00 c0 9b 00 00 1b 3e-e2 00 c0 9b 00 00 1b 3e |.......> .......>|
0600 e2 00 c0 9b 00 00 1b 3e-e2 00 c0 9b 00 00 1b 3e |.......> .......>|
0610 e2 00 c0 9b 00 00 1b 3e-e2 00 c0 9b 00 00 1b 3e |.......> .......>|
0620 e2 00 c0 9b 00 00 1b 3e-e2 00 c0 9b 00 00 1b 3e |.......> .......>|
0630 e2 00 c0 9b 00 00 1b 3e-e2 00 c0 9b 00 00 1b 3e |.......> .......>|
0640 e2 00 c0 9b 00 00 1b 3e-e2 00 c0 9b 00 00 1b 3e |.......> .......>|
0650 e2 00 c0 9b 00 00 1b 3e-e2 00 c0 9b 00 00 1b 3e |.......> .......>|
0660 e2 00 c0 9b 00 00 1b 3e-e2 00 c0 9b 00 00 1b 3e |.......> .......>|
0670 e2 00 c0 9b 00 00 1b 3e-e2 00 c0 9b 00 00 1b 3e |.......> .......>|
0680 e2 00 c0 9b 00 00 1b 3e-e2 00 c0 9b 00 00 1b 3e |.......> .......>|
0690 e2 00 c0 9b 00 00 1b 3e-e2 00 c0 9b 00 00 1b 3e |.......> .......>|
06a0 e2 00 c0 9b 00 00 1b 3e-e2 00 c0 9b 00 00 1b 3e |.......> .......>|
06b0 e2 00 c0 9b 00 00 1b 3e-e2 00 c0 9b 00 00 1b 3e |.......> .......>|
06c0 e2 00 c0 9b 00 00 1b 3e-e2 00 c0 9b 00 00 1b 3e |.......> .......>|
06d0 e2 00 c0 9b 00 00 1b 3e-e2 00 c0 9b 00 00 1b 3e |.......> .......>|
06e0 e2 00 c0 9b 00 00 1b 3e-e2 00 c0 9b 00 00 1b 3e |.......> .......>|
06f0 e2 00 c0 9b 00 00 1b 3e-e2 00 c0 9b 00 00 1b 3e |.......> .......>|
0700 e2 00 c0 9b 00 00 1b 3e-e2 00 c0 9b 00 00 1b 3e |.......> .......>|
0710 e2 00 c0 9b 00 00 1b 3e-e2 00 c0 9b 00 00 1b 3e |.......> .......>|
0720 e2 00 c0 9b 00 00 1b 3e-e2 00 c0 9b 00 00 1b 3e |.......> .......>|
0730 e2 00 c0 9b 00 00 1b 3e-e2 00 c0 9b 00 00 1b 3e |.......> .......>|
0740 e2 00 c0 9b 00 00 1b 3e-e2 00 c0 9b 00 00 1b 3e |.......> .......>|
0750 e2 00 c0 9b 00 00 1b 3e-e2 00 c0 9b 00 00 1b 3e |.......> .......>|
0760 e2 00 c0 9b 00 00 1b 3e-e2 00 c0 9b 00 00 1b 3e |.......> .......>|
0770 e2 00 c0 9b 00 00 1b 3e-e2 00 c0 9b 00 00 1b 3e |.......> .......>|
0780 e2 00 c0 9b 00 00 1b 3e-e2 00 c0 9b 00 00 1b 3e |.......> .......>|
0790 e2 00 c0 9b 00 00 1b 3e-e2 00 c0 9b 00 00 1b 3e |.......> .......>|
07a0 e2 00 c0 9b 00 00 1b 3e-e2 00 c0 9b 00 00 1b 3e |.......> .......>|
07b0 e2 00 c0 9b 00 00 1b 3e-e2 00 c0 9b 00 00 1b 3e |.......> .......>|
07c0 e2 00 c0 9b 00 00 1b 3e-e2 00 c0 9b 00 00 1b 3e |.......> .......>|
07d0 e2 00 c0 9b 00 00 1b 3e-e2 00 c0 9b 00 00 1b 3e |.......> .......>|
07e0 e2 00 c0 9b 00 00 1b 3e-e2 00 c0 9b 00 00 1b 3e |.......> .......>|
07f0 e2 00 c0 9b 00 00 1b 3e-e2 00 c0 9b 00 00 1b 3e |.......> .......>|
0800 e2 00 c0 9b 00 00 1b 3e-e2 00 c0 9b 00 00 1b 3e |.......> .......>|
0810 e2 00 c0 9b 00 00 1b 3e-e2 00 c0 9b 00 00 1b 3e |.......> .......>|
0820 e2 00 c0 9b 00 00 1b 3e-e2 00 c0 9b 00 00 1b 3e |.......> .......>|
0830 e2 00 c0 9b 00 00 1b 3e-e2 00 c0 9b 00 00 1b 3e |.......> .......>|
0840 e2 00 c0 9b 00 00 1b 3e-e2 00 c0 9b 00 00 1b 3e |.......> .......>|
0850 e2 00 c0 9b 00 00 1b 3e-e2 00 c0 9b 00 00 1b 3e |.......> .......>|
0860 e2 00 c0 9b 00 00 1b 3e-e2 00 c0 9b 00 00 1b 3e |.......> .......>|
0870 e2 00 c0 9b 00 00 1b 3e-e2 00 c0 9b 00 00 1b 3e |.......> .......>|
0880 e2 00 c0 9b 00 00 1b 3e-e2 00 c0 9b 00 00 1b 3e |.......> .......>|
0890 e2 00 c0 9b 00 00 1b 3e-e2 00 c0 9b 00 00 1b 3e |.......> .......>|
08a0 e2 00 c0 9b 00 00 1b 3e-e2 00 c0 9b 00 00 1b 3e |.......> .......>|
08b0 e2 00 c0 9b 00 00 1b 3e-e2 00 c0 9b 00 00 1b 3e |.......> .......>|
08c0 e2 00 c0 9b 00 00 1b 3e-e2 00 c0 9b 00 00 1b 3e |.......> .......>|
08d0 e2 00 c0 9b 00 00 1b 3e-e2 00 c0 9b 00 00 1b 3e |.......> .......>|
08e0 e2 00 c0 9b 00 00 1b 3e-e2 00 c0 9b 00 00 1b 3e |.......> .......>|
08f0 e2 00 c0 9b 00 00 1b 3e-e2 00 c0 9b 00 00 1b 3e |.......> .......>|
0900 e2 00 c0 9b 00 00 1b 3e-e2 00 c0 9b 00 00 1b 3e |.......> .......>|
0910 e2 00 c0 9b 00 00 1b 3e-e2 00 c0 9b 00 00 1b 3e |.......> .......>|
0920 e2 00 c0 9b 00 00 1b 3e-e2 00 c0 9b 00 00 1b 3e |.......> .......>|
0930 e2 00 c0 9b 00 00 1b 3e-e2 00 c0 9b 00 00 1b 3e |.......> .......>|
0940 e2 00 c0 9b 00 00 1b 3e-e2 00 c0 9b 00 00 1b 3e |.......> .......>|
0950 e2 00 c0 9b 00 00 1b 3e-e2 00 c0 9b 00 00 1b 3e |.......> .......>|
0960 e2 00 c0 9b 00 00 1b 3e-e2 00 c0 9b 00 00 1b 3e |.......> .......>|
0970 e2 00 c0 9b 00 00 1b 3e-e2 00 c0 9b 00 00 1b 3e |.......> .......>|
0980 e2 00 c0 9b 00 00 1b 3e-e2 00 c0 9b 00 00 1b 3e |.......> .......>|
0990 e2 00 c0 9b 00 00 1b 3e-e2 00 c0 9b 00 00 1b 3e |.......> .......>|
09a0 e2 00 c0 9b 00 00 1b 3e-e2 00 c0 9b 00 00 1b 3e |.......> .......>|
09b0 e2 00 c0 9b 00 00 1b 3e-e2 00 c0 9b 00 00 1b 3e |.......> .......>|
09c0 e2 00 c0 9b 00 00 1b 3e-e2 00 c0 9b 00 00 1b 3e |.......> .......>|
09d0 e2 00 c0 9b 00 00 1b 3e-e2 00 c0 9b 00 00 1b 3e |.......> .......>|
09e0 e2 00 c0 9b 00 00 1b 3e-e2 00 c0 9b 00 00 1b 3e |.......> .......>|
09f0 e2 00 c0 9b 00 00 1b 3e-e2 00 c0 9b 00 00 1b 3e |.......> .......>|
0a00 e2 00 c0 9b 00 00 1b 3e-e2 00 c0 9b 00 00 1b 3e |.......> .......>|
0a10 e2 00 c0 9b 00 00 1b 3e-e2 00 c0 9b 00 00 1b 3e |.......> .......>|
0a20 e2 00 c0 9b 00 00 1b 3e-e2 00 c0 9b 00 00 1b 3e |.......> .......>|
0a30 e2 00 c0 9b 00 00 1b 3e-e2 00 c0 9b 00 00 1b 3e |.......> .......>|
0a40 e2 00 c0 9b 00 00 1b 3e-e2 00 c0 9b 00 00 1b 3e |.......> .......>|
0a50 e2 00 c0 9b 00 00 1b 3e-e2 00 c0 9b 00 00 1b 3e |.......> .......>|
0a60 e2 00 c0 9b 00 00 1b 3e-e2 00 c0 9b 00 00 1b 3e |.......> .......>|
0a70 e2 00 c0 9b 00 00 1b 3e-e2 00 c0 9b 00 00 1b 3e |.......> .......>|
0a80 e2 00 c0 9b 00 00 1b 3e-e2 00 c0 9b 00 00 1b 3e |.......> .......>|
0a90 e2 00 c0 9b 00 00 1b 3e-e2 00 c0 9b 00 00 1b 3e |.......> .......>|
0aa0 e2 00 c0 9b 00 00 1b 3e-e2 00 c0 9b 00 00 1b 3e |.......> .......>|
0ab0 e2 00 c0 9b 00 00 1b 3e-e2 00 c0 9b 00 00 1b 3e |.......> .......>|
0ac0 e2 00 c0 9b 00 00 1b 3e-e2 00 c0 9b 00 00 1b 3e |.......> .......>|
0ad0 e2 00 c0 9b 00 00 1b 3e-e2 00 c0 9b 00 00 1b 3e |.......> .......>|
0ae0 e2 00 c0 9b 00 00 1b 3e-e2 00 c0 9b 00 00 1b 3e |.......> .......>|
0af0 e2 00 c0 9b 00 00 1b 3e-e2 00 c0 9b 00 00 1b 3e |.......> .......>|
0b00 e2 00 fd 10 00 c1 00 01-00 00 00 |........ ...|
13:48:18.422447 16541 (dblib.c:4556):dbsqlok() exits on result token 0x81
13:48:18.422458 16541 (dblib.c:1599):dbresults(0x66c3f0)
13:48:18.422467 16541 (dblib.c:1608):dbresults: dbresults_state is 0 (_DB_RES_INIT)
13:48:18.422474 16541 (token.c:495):tds_process_tokens(0x654d60, 0x7fff290f0964, 0x7fff290f0960, 0x6914)
13:48:18.422482 16541 (util.c:162):Changed query state from PENDING to READING
13:48:18.422490 16541 (token.c:510):processing result tokens. marker is 81(TDS7_RESULT)
13:48:18.422497 16541 (token.c:1520):processing TDS7 result metadata.
13:48:18.422505 16541 (mem.c:563):tds_free_all_results()
13:48:18.422664 16541 (token.c:1544):set current_results (201 columns) to tds->res_info
13:48:18.422672 16541 (token.c:1555):setting up column 0
13:48:18.422681 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.422689 16541 (token.c:1555):setting up column 1
13:48:18.422697 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.422705 16541 (token.c:1555):setting up column 2
13:48:18.422712 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.422720 16541 (token.c:1555):setting up column 3
13:48:18.422727 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.422735 16541 (token.c:1555):setting up column 4
13:48:18.422751 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.422759 16541 (token.c:1555):setting up column 5
13:48:18.422766 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.422774 16541 (token.c:1555):setting up column 6
13:48:18.422781 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.422789 16541 (token.c:1555):setting up column 7
13:48:18.422795 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.422803 16541 (token.c:1555):setting up column 8
13:48:18.422810 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.422818 16541 (token.c:1555):setting up column 9
13:48:18.422825 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.422833 16541 (token.c:1555):setting up column 10
13:48:18.422839 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.422847 16541 (token.c:1555):setting up column 11
13:48:18.422854 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.422862 16541 (token.c:1555):setting up column 12
13:48:18.422869 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.422876 16541 (token.c:1555):setting up column 13
13:48:18.422883 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.422891 16541 (token.c:1555):setting up column 14
13:48:18.422898 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.422905 16541 (token.c:1555):setting up column 15
13:48:18.422912 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.422920 16541 (token.c:1555):setting up column 16
13:48:18.422927 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.422934 16541 (token.c:1555):setting up column 17
13:48:18.422941 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.422949 16541 (token.c:1555):setting up column 18
13:48:18.422956 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.422963 16541 (token.c:1555):setting up column 19
13:48:18.422970 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.422978 16541 (token.c:1555):setting up column 20
13:48:18.422985 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.423006 16541 (token.c:1555):setting up column 21
13:48:18.423013 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.423021 16541 (token.c:1555):setting up column 22
13:48:18.423028 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.423036 16541 (token.c:1555):setting up column 23
13:48:18.423043 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.423051 16541 (token.c:1555):setting up column 24
13:48:18.423057 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.423065 16541 (token.c:1555):setting up column 25
13:48:18.423072 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.423080 16541 (token.c:1555):setting up column 26
13:48:18.423087 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.423094 16541 (token.c:1555):setting up column 27
13:48:18.423101 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.423109 16541 (token.c:1555):setting up column 28
13:48:18.423116 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.423123 16541 (token.c:1555):setting up column 29
13:48:18.423130 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.423138 16541 (token.c:1555):setting up column 30
13:48:18.423145 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.423153 16541 (token.c:1555):setting up column 31
13:48:18.423160 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.423167 16541 (token.c:1555):setting up column 32
13:48:18.423174 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.423182 16541 (token.c:1555):setting up column 33
13:48:18.423189 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.423197 16541 (token.c:1555):setting up column 34
13:48:18.423203 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.423211 16541 (token.c:1555):setting up column 35
13:48:18.423218 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.423226 16541 (token.c:1555):setting up column 36
13:48:18.423233 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.423240 16541 (token.c:1555):setting up column 37
13:48:18.423247 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.423262 16541 (token.c:1555):setting up column 38
13:48:18.423270 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.423277 16541 (token.c:1555):setting up column 39
13:48:18.423284 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.423292 16541 (token.c:1555):setting up column 40
13:48:18.423299 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.423307 16541 (token.c:1555):setting up column 41
13:48:18.423314 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.423321 16541 (token.c:1555):setting up column 42
13:48:18.423328 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.423336 16541 (token.c:1555):setting up column 43
13:48:18.423343 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.423351 16541 (token.c:1555):setting up column 44
13:48:18.423358 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.423365 16541 (token.c:1555):setting up column 45
13:48:18.423372 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.423380 16541 (token.c:1555):setting up column 46
13:48:18.423387 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.423395 16541 (token.c:1555):setting up column 47
13:48:18.423402 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.423409 16541 (token.c:1555):setting up column 48
13:48:18.423416 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.423424 16541 (token.c:1555):setting up column 49
13:48:18.423431 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.423439 16541 (token.c:1555):setting up column 50
13:48:18.423445 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.423453 16541 (token.c:1555):setting up column 51
13:48:18.423460 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.423468 16541 (token.c:1555):setting up column 52
13:48:18.423474 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.423482 16541 (token.c:1555):setting up column 53
13:48:18.423489 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.423497 16541 (token.c:1555):setting up column 54
13:48:18.423513 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.423521 16541 (token.c:1555):setting up column 55
13:48:18.423528 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.423536 16541 (token.c:1555):setting up column 56
13:48:18.423543 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.423550 16541 (token.c:1555):setting up column 57
13:48:18.423560 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.423568 16541 (token.c:1555):setting up column 58
13:48:18.423575 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.423582 16541 (token.c:1555):setting up column 59
13:48:18.423589 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.423597 16541 (token.c:1555):setting up column 60
13:48:18.423604 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.423611 16541 (token.c:1555):setting up column 61
13:48:18.423618 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.423626 16541 (token.c:1555):setting up column 62
13:48:18.423633 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.423641 16541 (token.c:1555):setting up column 63
13:48:18.423647 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.423655 16541 (token.c:1555):setting up column 64
13:48:18.423662 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.423670 16541 (token.c:1555):setting up column 65
13:48:18.423677 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.423684 16541 (token.c:1555):setting up column 66
13:48:18.423691 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.423699 16541 (token.c:1555):setting up column 67
13:48:18.423706 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.423714 16541 (token.c:1555):setting up column 68
13:48:18.423720 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.423728 16541 (token.c:1555):setting up column 69
13:48:18.423735 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.423743 16541 (token.c:1555):setting up column 70
13:48:18.423750 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.423767 16541 (token.c:1555):setting up column 71
13:48:18.423774 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.423782 16541 (token.c:1555):setting up column 72
13:48:18.423789 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.423797 16541 (token.c:1555):setting up column 73
13:48:18.423804 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.423811 16541 (token.c:1555):setting up column 74
13:48:18.423818 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.423826 16541 (token.c:1555):setting up column 75
13:48:18.423833 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.423841 16541 (token.c:1555):setting up column 76
13:48:18.423848 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.423855 16541 (token.c:1555):setting up column 77
13:48:18.423862 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.423870 16541 (token.c:1555):setting up column 78
13:48:18.423877 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.423885 16541 (token.c:1555):setting up column 79
13:48:18.423892 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.423899 16541 (token.c:1555):setting up column 80
13:48:18.423906 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.423914 16541 (token.c:1555):setting up column 81
13:48:18.423921 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.423929 16541 (token.c:1555):setting up column 82
13:48:18.423936 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.423943 16541 (token.c:1555):setting up column 83
13:48:18.423950 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.423958 16541 (token.c:1555):setting up column 84
13:48:18.423965 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.423972 16541 (token.c:1555):setting up column 85
13:48:18.423979 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.423987 16541 (token.c:1555):setting up column 86
13:48:18.423994 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.424002 16541 (token.c:1555):setting up column 87
13:48:18.424009 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.424025 16541 (token.c:1555):setting up column 88
13:48:18.424033 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.424041 16541 (token.c:1555):setting up column 89
13:48:18.424048 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.424056 16541 (token.c:1555):setting up column 90
13:48:18.424062 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.424070 16541 (token.c:1555):setting up column 91
13:48:18.424077 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.424085 16541 (token.c:1555):setting up column 92
13:48:18.424092 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.424099 16541 (token.c:1555):setting up column 93
13:48:18.424106 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.424114 16541 (token.c:1555):setting up column 94
13:48:18.424121 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.424128 16541 (token.c:1555):setting up column 95
13:48:18.424135 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.424143 16541 (token.c:1555):setting up column 96
13:48:18.424150 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.424158 16541 (token.c:1555):setting up column 97
13:48:18.424165 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.424172 16541 (token.c:1555):setting up column 98
13:48:18.424179 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.424187 16541 (token.c:1555):setting up column 99
13:48:18.424194 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.424202 16541 (token.c:1555):setting up column 100
13:48:18.424209 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.424216 16541 (token.c:1555):setting up column 101
13:48:18.424223 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.424231 16541 (token.c:1555):setting up column 102
13:48:18.424238 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.424245 16541 (token.c:1555):setting up column 103
13:48:18.424252 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.424260 16541 (token.c:1555):setting up column 104
13:48:18.424275 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.424283 16541 (token.c:1555):setting up column 105
13:48:18.424290 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.424298 16541 (token.c:1555):setting up column 106
13:48:18.424305 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.424313 16541 (token.c:1555):setting up column 107
13:48:18.424319 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.424327 16541 (token.c:1555):setting up column 108
13:48:18.424334 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.424342 16541 (token.c:1555):setting up column 109
13:48:18.424349 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.424357 16541 (token.c:1555):setting up column 110
13:48:18.424363 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.424371 16541 (token.c:1555):setting up column 111
13:48:18.424378 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.424386 16541 (token.c:1555):setting up column 112
13:48:18.424393 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.424400 16541 (token.c:1555):setting up column 113
13:48:18.424407 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.424415 16541 (token.c:1555):setting up column 114
13:48:18.424422 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.424429 16541 (token.c:1555):setting up column 115
13:48:18.424436 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.424444 16541 (token.c:1555):setting up column 116
13:48:18.424451 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.424459 16541 (token.c:1555):setting up column 117
13:48:18.424465 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.424473 16541 (token.c:1555):setting up column 118
13:48:18.424480 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.424488 16541 (token.c:1555):setting up column 119
13:48:18.424495 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.424502 16541 (token.c:1555):setting up column 120
13:48:18.424509 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.424525 16541 (token.c:1555):setting up column 121
13:48:18.424533 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.424541 16541 (token.c:1555):setting up column 122
13:48:18.424548 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.424555 16541 (token.c:1555):setting up column 123
13:48:18.424562 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.424570 16541 (token.c:1555):setting up column 124
13:48:18.424577 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.424584 16541 (token.c:1555):setting up column 125
13:48:18.424591 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.424599 16541 (token.c:1555):setting up column 126
13:48:18.424606 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.424613 16541 (token.c:1555):setting up column 127
13:48:18.424620 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.424628 16541 (token.c:1555):setting up column 128
13:48:18.424635 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.424642 16541 (token.c:1555):setting up column 129
13:48:18.424649 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.424657 16541 (token.c:1555):setting up column 130
13:48:18.424664 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.424671 16541 (token.c:1555):setting up column 131
13:48:18.424678 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.424686 16541 (token.c:1555):setting up column 132
13:48:18.424693 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.424700 16541 (token.c:1555):setting up column 133
13:48:18.424707 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.424715 16541 (token.c:1555):setting up column 134
13:48:18.424722 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.424729 16541 (token.c:1555):setting up column 135
13:48:18.424736 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.424744 16541 (token.c:1555):setting up column 136
13:48:18.424751 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.424758 16541 (token.c:1555):setting up column 137
13:48:18.424774 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.424782 16541 (token.c:1555):setting up column 138
13:48:18.424789 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.424797 16541 (token.c:1555):setting up column 139
13:48:18.424804 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.424811 16541 (token.c:1555):setting up column 140
13:48:18.424818 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.424826 16541 (token.c:1555):setting up column 141
13:48:18.424833 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.424841 16541 (token.c:1555):setting up column 142
13:48:18.424848 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.424855 16541 (token.c:1555):setting up column 143
13:48:18.424862 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.424870 16541 (token.c:1555):setting up column 144
13:48:18.424877 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.424884 16541 (token.c:1555):setting up column 145
13:48:18.424891 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.424899 16541 (token.c:1555):setting up column 146
13:48:18.424906 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.424914 16541 (token.c:1555):setting up column 147
13:48:18.424920 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.424928 16541 (token.c:1555):setting up column 148
13:48:18.424935 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.424943 16541 (token.c:1555):setting up column 149
13:48:18.424950 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.424957 16541 (token.c:1555):setting up column 150
13:48:18.424964 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.424972 16541 (token.c:1555):setting up column 151
13:48:18.424979 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.424986 16541 (token.c:1555):setting up column 152
13:48:18.424993 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.425001 16541 (token.c:1555):setting up column 153
13:48:18.425008 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.425024 16541 (token.c:1555):setting up column 154
13:48:18.425032 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.425039 16541 (token.c:1555):setting up column 155
13:48:18.425046 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.425054 16541 (token.c:1555):setting up column 156
13:48:18.425061 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.425069 16541 (token.c:1555):setting up column 157
13:48:18.425076 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.425083 16541 (token.c:1555):setting up column 158
13:48:18.425090 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.425098 16541 (token.c:1555):setting up column 159
13:48:18.425105 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.425113 16541 (token.c:1555):setting up column 160
13:48:18.425120 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.425127 16541 (token.c:1555):setting up column 161
13:48:18.425134 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.425142 16541 (token.c:1555):setting up column 162
13:48:18.425149 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.425156 16541 (token.c:1555):setting up column 163
13:48:18.425163 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.425171 16541 (token.c:1555):setting up column 164
13:48:18.425178 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.425186 16541 (token.c:1555):setting up column 165
13:48:18.425193 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.425200 16541 (token.c:1555):setting up column 166
13:48:18.425207 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.425215 16541 (token.c:1555):setting up column 167
13:48:18.425222 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.425229 16541 (token.c:1555):setting up column 168
13:48:18.425236 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.425244 16541 (token.c:1555):setting up column 169
13:48:18.425251 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.425259 16541 (token.c:1555):setting up column 170
13:48:18.425265 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.425282 16541 (token.c:1555):setting up column 171
13:48:18.425290 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.425297 16541 (token.c:1555):setting up column 172
13:48:18.425304 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.425312 16541 (token.c:1555):setting up column 173
13:48:18.425319 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.425327 16541 (token.c:1555):setting up column 174
13:48:18.425334 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.425341 16541 (token.c:1555):setting up column 175
13:48:18.425348 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.425356 16541 (token.c:1555):setting up column 176
13:48:18.425363 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.425370 16541 (token.c:1555):setting up column 177
13:48:18.425377 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.425385 16541 (token.c:1555):setting up column 178
13:48:18.425392 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.425399 16541 (token.c:1555):setting up column 179
13:48:18.425406 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.425414 16541 (token.c:1555):setting up column 180
13:48:18.425421 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.425428 16541 (token.c:1555):setting up column 181
13:48:18.425435 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.425443 16541 (token.c:1555):setting up column 182
13:48:18.425450 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.425458 16541 (token.c:1555):setting up column 183
13:48:18.425465 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.425472 16541 (token.c:1555):setting up column 184
13:48:18.425479 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.425487 16541 (token.c:1555):setting up column 185
13:48:18.425494 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.425501 16541 (token.c:1555):setting up column 186
13:48:18.425508 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.425528 16541 (token.c:1555):setting up column 187
13:48:18.425536 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.425544 16541 (token.c:1555):setting up column 188
13:48:18.425551 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.425558 16541 (token.c:1555):setting up column 189
13:48:18.425565 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.425573 16541 (token.c:1555):setting up column 190
13:48:18.425580 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.425587 16541 (token.c:1555):setting up column 191
13:48:18.425594 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.425602 16541 (token.c:1555):setting up column 192
13:48:18.425609 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.425617 16541 (token.c:1555):setting up column 193
13:48:18.425624 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.425631 16541 (token.c:1555):setting up column 194
13:48:18.425638 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.425646 16541 (token.c:1555):setting up column 195
13:48:18.425653 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.425660 16541 (token.c:1555):setting up column 196
13:48:18.425667 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.425675 16541 (token.c:1555):setting up column 197
13:48:18.425682 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.425689 16541 (token.c:1555):setting up column 198
13:48:18.425696 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.425704 16541 (token.c:1555):setting up column 199
13:48:18.425711 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.425718 16541 (token.c:1555):setting up column 200
13:48:18.425725 16541 (token.c:1490):tds7_get_data_info:
colname = (0 bytes)
type = 61 (datetime)
server's type = 61 (datetime)
column_varint_size = 0
column_size = 8 (8 on server)
13:48:18.425736 16541 (util.c:162):Changed query state from READING to PENDING
13:48:18.425744 16541 (dblib.c:1630):dbresults() tds_process_tokens returned 1 (TDS_SUCCEED),
result_type TDS_ROWFMT_RESULT
13:48:18.425752 16541 (token.c:495):tds_process_tokens(0x654d60, 0x7fff290f0964, 0x7fff290f0960, 0x6914)
13:48:18.425760 16541 (util.c:162):Changed query state from PENDING to READING
13:48:18.425767 16541 (token.c:510):processing result tokens. marker is d1(ROW)
13:48:18.425774 16541 (token.c:621):tds_process_tokens::SET_RETURN stopping on current token
13:48:18.425781 16541 (util.c:162):Changed query state from READING to PENDING
13:48:18.425797 16541 (dblib.c:1630):dbresults() tds_process_tokens returned 1 (TDS_SUCCEED),
result_type TDS_ROW_RESULT
13:48:18.425805 16541 (dblib.c:1587):dbresults returning 1 (SUCCEED)
13:48:18.425814 16541 (dblib.c:1745):dbnumcols(0x66c3f0)
13:48:18.425822 16541 (dblib.c:1771):dbcolname(0x66c3f0, 1)
13:48:18.425830 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 1)
13:48:18.425842 16541 (dblib.c:1771):dbcolname(0x66c3f0, 2)
13:48:18.425850 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 2)
13:48:18.425857 16541 (dblib.c:1771):dbcolname(0x66c3f0, 3)
13:48:18.425864 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 3)
13:48:18.425871 16541 (dblib.c:1771):dbcolname(0x66c3f0, 4)
13:48:18.425878 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 4)
13:48:18.425886 16541 (dblib.c:1771):dbcolname(0x66c3f0, 5)
13:48:18.425893 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 5)
13:48:18.425900 16541 (dblib.c:1771):dbcolname(0x66c3f0, 6)
13:48:18.425907 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 6)
13:48:18.425914 16541 (dblib.c:1771):dbcolname(0x66c3f0, 7)
13:48:18.425922 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 7)
13:48:18.425929 16541 (dblib.c:1771):dbcolname(0x66c3f0, 8)
13:48:18.425936 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 8)
13:48:18.425943 16541 (dblib.c:1771):dbcolname(0x66c3f0, 9)
13:48:18.425950 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 9)
13:48:18.425958 16541 (dblib.c:1771):dbcolname(0x66c3f0, 10)
13:48:18.425965 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 10)
13:48:18.425972 16541 (dblib.c:1771):dbcolname(0x66c3f0, 11)
13:48:18.425979 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 11)
13:48:18.425987 16541 (dblib.c:1771):dbcolname(0x66c3f0, 12)
13:48:18.425994 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 12)
13:48:18.426001 16541 (dblib.c:1771):dbcolname(0x66c3f0, 13)
13:48:18.426008 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 13)
13:48:18.426016 16541 (dblib.c:1771):dbcolname(0x66c3f0, 14)
13:48:18.426023 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 14)
13:48:18.426030 16541 (dblib.c:1771):dbcolname(0x66c3f0, 15)
13:48:18.426037 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 15)
13:48:18.426045 16541 (dblib.c:1771):dbcolname(0x66c3f0, 16)
13:48:18.426052 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 16)
13:48:18.426059 16541 (dblib.c:1771):dbcolname(0x66c3f0, 17)
13:48:18.426066 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 17)
13:48:18.426073 16541 (dblib.c:1771):dbcolname(0x66c3f0, 18)
13:48:18.426081 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 18)
13:48:18.426088 16541 (dblib.c:1771):dbcolname(0x66c3f0, 19)
13:48:18.426095 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 19)
13:48:18.426102 16541 (dblib.c:1771):dbcolname(0x66c3f0, 20)
13:48:18.426109 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 20)
13:48:18.426117 16541 (dblib.c:1771):dbcolname(0x66c3f0, 21)
13:48:18.426124 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 21)
13:48:18.426131 16541 (dblib.c:1771):dbcolname(0x66c3f0, 22)
13:48:18.426138 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 22)
13:48:18.426146 16541 (dblib.c:1771):dbcolname(0x66c3f0, 23)
13:48:18.426153 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 23)
13:48:18.426160 16541 (dblib.c:1771):dbcolname(0x66c3f0, 24)
13:48:18.426167 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 24)
13:48:18.426175 16541 (dblib.c:1771):dbcolname(0x66c3f0, 25)
13:48:18.426182 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 25)
13:48:18.426189 16541 (dblib.c:1771):dbcolname(0x66c3f0, 26)
13:48:18.426196 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 26)
13:48:18.426204 16541 (dblib.c:1771):dbcolname(0x66c3f0, 27)
13:48:18.426211 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 27)
13:48:18.426218 16541 (dblib.c:1771):dbcolname(0x66c3f0, 28)
13:48:18.426225 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 28)
13:48:18.426232 16541 (dblib.c:1771):dbcolname(0x66c3f0, 29)
13:48:18.426239 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 29)
13:48:18.426247 16541 (dblib.c:1771):dbcolname(0x66c3f0, 30)
13:48:18.426254 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 30)
13:48:18.426261 16541 (dblib.c:1771):dbcolname(0x66c3f0, 31)
13:48:18.426268 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 31)
13:48:18.426275 16541 (dblib.c:1771):dbcolname(0x66c3f0, 32)
13:48:18.426282 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 32)
13:48:18.426298 16541 (dblib.c:1771):dbcolname(0x66c3f0, 33)
13:48:18.426306 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 33)
13:48:18.426313 16541 (dblib.c:1771):dbcolname(0x66c3f0, 34)
13:48:18.426320 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 34)
13:48:18.426328 16541 (dblib.c:1771):dbcolname(0x66c3f0, 35)
13:48:18.426335 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 35)
13:48:18.426342 16541 (dblib.c:1771):dbcolname(0x66c3f0, 36)
13:48:18.426349 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 36)
13:48:18.426357 16541 (dblib.c:1771):dbcolname(0x66c3f0, 37)
13:48:18.426364 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 37)
13:48:18.426371 16541 (dblib.c:1771):dbcolname(0x66c3f0, 38)
13:48:18.426378 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 38)
13:48:18.426386 16541 (dblib.c:1771):dbcolname(0x66c3f0, 39)
13:48:18.426393 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 39)
13:48:18.426400 16541 (dblib.c:1771):dbcolname(0x66c3f0, 40)
13:48:18.426407 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 40)
13:48:18.426415 16541 (dblib.c:1771):dbcolname(0x66c3f0, 41)
13:48:18.426422 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 41)
13:48:18.426429 16541 (dblib.c:1771):dbcolname(0x66c3f0, 42)
13:48:18.426436 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 42)
13:48:18.426444 16541 (dblib.c:1771):dbcolname(0x66c3f0, 43)
13:48:18.426451 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 43)
13:48:18.426458 16541 (dblib.c:1771):dbcolname(0x66c3f0, 44)
13:48:18.426465 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 44)
13:48:18.426473 16541 (dblib.c:1771):dbcolname(0x66c3f0, 45)
13:48:18.426480 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 45)
13:48:18.426487 16541 (dblib.c:1771):dbcolname(0x66c3f0, 46)
13:48:18.426494 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 46)
13:48:18.426501 16541 (dblib.c:1771):dbcolname(0x66c3f0, 47)
13:48:18.426509 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 47)
13:48:18.426516 16541 (dblib.c:1771):dbcolname(0x66c3f0, 48)
13:48:18.426523 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 48)
13:48:18.426530 16541 (dblib.c:1771):dbcolname(0x66c3f0, 49)
13:48:18.426537 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 49)
13:48:18.426545 16541 (dblib.c:1771):dbcolname(0x66c3f0, 50)
13:48:18.426552 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 50)
13:48:18.426559 16541 (dblib.c:1771):dbcolname(0x66c3f0, 51)
13:48:18.426566 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 51)
13:48:18.426573 16541 (dblib.c:1771):dbcolname(0x66c3f0, 52)
13:48:18.426581 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 52)
13:48:18.426588 16541 (dblib.c:1771):dbcolname(0x66c3f0, 53)
13:48:18.426595 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 53)
13:48:18.426602 16541 (dblib.c:1771):dbcolname(0x66c3f0, 54)
13:48:18.426609 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 54)
13:48:18.426617 16541 (dblib.c:1771):dbcolname(0x66c3f0, 55)
13:48:18.426624 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 55)
13:48:18.426631 16541 (dblib.c:1771):dbcolname(0x66c3f0, 56)
13:48:18.426638 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 56)
13:48:18.426646 16541 (dblib.c:1771):dbcolname(0x66c3f0, 57)
13:48:18.426653 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 57)
13:48:18.426660 16541 (dblib.c:1771):dbcolname(0x66c3f0, 58)
13:48:18.426667 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 58)
13:48:18.426674 16541 (dblib.c:1771):dbcolname(0x66c3f0, 59)
13:48:18.426681 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 59)
13:48:18.426689 16541 (dblib.c:1771):dbcolname(0x66c3f0, 60)
13:48:18.426696 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 60)
13:48:18.426703 16541 (dblib.c:1771):dbcolname(0x66c3f0, 61)
13:48:18.426710 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 61)
13:48:18.426717 16541 (dblib.c:1771):dbcolname(0x66c3f0, 62)
13:48:18.426725 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 62)
13:48:18.426732 16541 (dblib.c:1771):dbcolname(0x66c3f0, 63)
13:48:18.426739 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 63)
13:48:18.426746 16541 (dblib.c:1771):dbcolname(0x66c3f0, 64)
13:48:18.426753 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 64)
13:48:18.426761 16541 (dblib.c:1771):dbcolname(0x66c3f0, 65)
13:48:18.426768 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 65)
13:48:18.426775 16541 (dblib.c:1771):dbcolname(0x66c3f0, 66)
13:48:18.426791 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 66)
13:48:18.426799 16541 (dblib.c:1771):dbcolname(0x66c3f0, 67)
13:48:18.426806 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 67)
13:48:18.426813 16541 (dblib.c:1771):dbcolname(0x66c3f0, 68)
13:48:18.426821 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 68)
13:48:18.426828 16541 (dblib.c:1771):dbcolname(0x66c3f0, 69)
13:48:18.426835 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 69)
13:48:18.426842 16541 (dblib.c:1771):dbcolname(0x66c3f0, 70)
13:48:18.426849 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 70)
13:48:18.426856 16541 (dblib.c:1771):dbcolname(0x66c3f0, 71)
13:48:18.426864 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 71)
13:48:18.426871 16541 (dblib.c:1771):dbcolname(0x66c3f0, 72)
13:48:18.426878 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 72)
13:48:18.426885 16541 (dblib.c:1771):dbcolname(0x66c3f0, 73)
13:48:18.426892 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 73)
13:48:18.426899 16541 (dblib.c:1771):dbcolname(0x66c3f0, 74)
13:48:18.426906 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 74)
13:48:18.426914 16541 (dblib.c:1771):dbcolname(0x66c3f0, 75)
13:48:18.426921 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 75)
13:48:18.426928 16541 (dblib.c:1771):dbcolname(0x66c3f0, 76)
13:48:18.426935 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 76)
13:48:18.426942 16541 (dblib.c:1771):dbcolname(0x66c3f0, 77)
13:48:18.426950 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 77)
13:48:18.426957 16541 (dblib.c:1771):dbcolname(0x66c3f0, 78)
13:48:18.426964 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 78)
13:48:18.426971 16541 (dblib.c:1771):dbcolname(0x66c3f0, 79)
13:48:18.426978 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 79)
13:48:18.426985 16541 (dblib.c:1771):dbcolname(0x66c3f0, 80)
13:48:18.426993 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 80)
13:48:18.427007 16541 (dblib.c:1771):dbcolname(0x66c3f0, 81)
13:48:18.427015 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 81)
13:48:18.427022 16541 (dblib.c:1771):dbcolname(0x66c3f0, 82)
13:48:18.427030 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 82)
13:48:18.427037 16541 (dblib.c:1771):dbcolname(0x66c3f0, 83)
13:48:18.427044 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 83)
13:48:18.427051 16541 (dblib.c:1771):dbcolname(0x66c3f0, 84)
13:48:18.427058 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 84)
13:48:18.427066 16541 (dblib.c:1771):dbcolname(0x66c3f0, 85)
13:48:18.427073 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 85)
13:48:18.427080 16541 (dblib.c:1771):dbcolname(0x66c3f0, 86)
13:48:18.427087 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 86)
13:48:18.427095 16541 (dblib.c:1771):dbcolname(0x66c3f0, 87)
13:48:18.427102 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 87)
13:48:18.427109 16541 (dblib.c:1771):dbcolname(0x66c3f0, 88)
13:48:18.427116 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 88)
13:48:18.427124 16541 (dblib.c:1771):dbcolname(0x66c3f0, 89)
13:48:18.427131 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 89)
13:48:18.427138 16541 (dblib.c:1771):dbcolname(0x66c3f0, 90)
13:48:18.427145 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 90)
13:48:18.427152 16541 (dblib.c:1771):dbcolname(0x66c3f0, 91)
13:48:18.427160 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 91)
13:48:18.427167 16541 (dblib.c:1771):dbcolname(0x66c3f0, 92)
13:48:18.427174 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 92)
13:48:18.427181 16541 (dblib.c:1771):dbcolname(0x66c3f0, 93)
13:48:18.427189 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 93)
13:48:18.427196 16541 (dblib.c:1771):dbcolname(0x66c3f0, 94)
13:48:18.427203 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 94)
13:48:18.427210 16541 (dblib.c:1771):dbcolname(0x66c3f0, 95)
13:48:18.427218 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 95)
13:48:18.427225 16541 (dblib.c:1771):dbcolname(0x66c3f0, 96)
13:48:18.427232 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 96)
13:48:18.427239 16541 (dblib.c:1771):dbcolname(0x66c3f0, 97)
13:48:18.427246 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 97)
13:48:18.427254 16541 (dblib.c:1771):dbcolname(0x66c3f0, 98)
13:48:18.427261 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 98)
13:48:18.427268 16541 (dblib.c:1771):dbcolname(0x66c3f0, 99)
13:48:18.427276 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 99)
13:48:18.427293 16541 (dblib.c:1771):dbcolname(0x66c3f0, 100)
13:48:18.427300 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 100)
13:48:18.427308 16541 (dblib.c:1771):dbcolname(0x66c3f0, 101)
13:48:18.427315 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 101)
13:48:18.427323 16541 (dblib.c:1771):dbcolname(0x66c3f0, 102)
13:48:18.427330 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 102)
13:48:18.427337 16541 (dblib.c:1771):dbcolname(0x66c3f0, 103)
13:48:18.427344 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 103)
13:48:18.427352 16541 (dblib.c:1771):dbcolname(0x66c3f0, 104)
13:48:18.427359 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 104)
13:48:18.427366 16541 (dblib.c:1771):dbcolname(0x66c3f0, 105)
13:48:18.427374 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 105)
13:48:18.427381 16541 (dblib.c:1771):dbcolname(0x66c3f0, 106)
13:48:18.427388 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 106)
13:48:18.427396 16541 (dblib.c:1771):dbcolname(0x66c3f0, 107)
13:48:18.427403 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 107)
13:48:18.427410 16541 (dblib.c:1771):dbcolname(0x66c3f0, 108)
13:48:18.427417 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 108)
13:48:18.427425 16541 (dblib.c:1771):dbcolname(0x66c3f0, 109)
13:48:18.427432 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 109)
13:48:18.427439 16541 (dblib.c:1771):dbcolname(0x66c3f0, 110)
13:48:18.427447 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 110)
13:48:18.427454 16541 (dblib.c:1771):dbcolname(0x66c3f0, 111)
13:48:18.427461 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 111)
13:48:18.427469 16541 (dblib.c:1771):dbcolname(0x66c3f0, 112)
13:48:18.427476 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 112)
13:48:18.427483 16541 (dblib.c:1771):dbcolname(0x66c3f0, 113)
13:48:18.427491 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 113)
13:48:18.427498 16541 (dblib.c:1771):dbcolname(0x66c3f0, 114)
13:48:18.427505 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 114)
13:48:18.427512 16541 (dblib.c:1771):dbcolname(0x66c3f0, 115)
13:48:18.427520 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 115)
13:48:18.427527 16541 (dblib.c:1771):dbcolname(0x66c3f0, 116)
13:48:18.427534 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 116)
13:48:18.427542 16541 (dblib.c:1771):dbcolname(0x66c3f0, 117)
13:48:18.427549 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 117)
13:48:18.427560 16541 (dblib.c:1771):dbcolname(0x66c3f0, 118)
13:48:18.427567 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 118)
13:48:18.427574 16541 (dblib.c:1771):dbcolname(0x66c3f0, 119)
13:48:18.427581 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 119)
13:48:18.427589 16541 (dblib.c:1771):dbcolname(0x66c3f0, 120)
13:48:18.427596 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 120)
13:48:18.427603 16541 (dblib.c:1771):dbcolname(0x66c3f0, 121)
13:48:18.427611 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 121)
13:48:18.427618 16541 (dblib.c:1771):dbcolname(0x66c3f0, 122)
13:48:18.427625 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 122)
13:48:18.427632 16541 (dblib.c:1771):dbcolname(0x66c3f0, 123)
13:48:18.427640 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 123)
13:48:18.427647 16541 (dblib.c:1771):dbcolname(0x66c3f0, 124)
13:48:18.427654 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 124)
13:48:18.427662 16541 (dblib.c:1771):dbcolname(0x66c3f0, 125)
13:48:18.427669 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 125)
13:48:18.427676 16541 (dblib.c:1771):dbcolname(0x66c3f0, 126)
13:48:18.427683 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 126)
13:48:18.427691 16541 (dblib.c:1771):dbcolname(0x66c3f0, 127)
13:48:18.427698 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 127)
13:48:18.427705 16541 (dblib.c:1771):dbcolname(0x66c3f0, 128)
13:48:18.427712 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 128)
13:48:18.427720 16541 (dblib.c:1771):dbcolname(0x66c3f0, 129)
13:48:18.427727 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 129)
13:48:18.427734 16541 (dblib.c:1771):dbcolname(0x66c3f0, 130)
13:48:18.427741 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 130)
13:48:18.427749 16541 (dblib.c:1771):dbcolname(0x66c3f0, 131)
13:48:18.427756 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 131)
13:48:18.427763 16541 (dblib.c:1771):dbcolname(0x66c3f0, 132)
13:48:18.427771 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 132)
13:48:18.427787 16541 (dblib.c:1771):dbcolname(0x66c3f0, 133)
13:48:18.427794 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 133)
13:48:18.427802 16541 (dblib.c:1771):dbcolname(0x66c3f0, 134)
13:48:18.427809 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 134)
13:48:18.427817 16541 (dblib.c:1771):dbcolname(0x66c3f0, 135)
13:48:18.427824 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 135)
13:48:18.427831 16541 (dblib.c:1771):dbcolname(0x66c3f0, 136)
13:48:18.427838 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 136)
13:48:18.427846 16541 (dblib.c:1771):dbcolname(0x66c3f0, 137)
13:48:18.427853 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 137)
13:48:18.427860 16541 (dblib.c:1771):dbcolname(0x66c3f0, 138)
13:48:18.427868 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 138)
13:48:18.427875 16541 (dblib.c:1771):dbcolname(0x66c3f0, 139)
13:48:18.427882 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 139)
13:48:18.427890 16541 (dblib.c:1771):dbcolname(0x66c3f0, 140)
13:48:18.427897 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 140)
13:48:18.427904 16541 (dblib.c:1771):dbcolname(0x66c3f0, 141)
13:48:18.427911 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 141)
13:48:18.427919 16541 (dblib.c:1771):dbcolname(0x66c3f0, 142)
13:48:18.427926 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 142)
13:48:18.427933 16541 (dblib.c:1771):dbcolname(0x66c3f0, 143)
13:48:18.427940 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 143)
13:48:18.427948 16541 (dblib.c:1771):dbcolname(0x66c3f0, 144)
13:48:18.427955 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 144)
13:48:18.427962 16541 (dblib.c:1771):dbcolname(0x66c3f0, 145)
13:48:18.427970 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 145)
13:48:18.427977 16541 (dblib.c:1771):dbcolname(0x66c3f0, 146)
13:48:18.427984 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 146)
13:48:18.427992 16541 (dblib.c:1771):dbcolname(0x66c3f0, 147)
13:48:18.427999 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 147)
13:48:18.428006 16541 (dblib.c:1771):dbcolname(0x66c3f0, 148)
13:48:18.428013 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 148)
13:48:18.428021 16541 (dblib.c:1771):dbcolname(0x66c3f0, 149)
13:48:18.428028 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 149)
13:48:18.428035 16541 (dblib.c:1771):dbcolname(0x66c3f0, 150)
13:48:18.428043 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 150)
13:48:18.428050 16541 (dblib.c:1771):dbcolname(0x66c3f0, 151)
13:48:18.428057 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 151)
13:48:18.428065 16541 (dblib.c:1771):dbcolname(0x66c3f0, 152)
13:48:18.428072 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 152)
13:48:18.428079 16541 (dblib.c:1771):dbcolname(0x66c3f0, 153)
13:48:18.428086 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 153)
13:48:18.428094 16541 (dblib.c:1771):dbcolname(0x66c3f0, 154)
13:48:18.428101 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 154)
13:48:18.428111 16541 (dblib.c:1771):dbcolname(0x66c3f0, 155)
13:48:18.428119 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 155)
13:48:18.428126 16541 (dblib.c:1771):dbcolname(0x66c3f0, 156)
13:48:18.428134 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 156)
13:48:18.428141 16541 (dblib.c:1771):dbcolname(0x66c3f0, 157)
13:48:18.428148 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 157)
13:48:18.428156 16541 (dblib.c:1771):dbcolname(0x66c3f0, 158)
13:48:18.428163 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 158)
13:48:18.428170 16541 (dblib.c:1771):dbcolname(0x66c3f0, 159)
13:48:18.428178 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 159)
13:48:18.428185 16541 (dblib.c:1771):dbcolname(0x66c3f0, 160)
13:48:18.428192 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 160)
13:48:18.428199 16541 (dblib.c:1771):dbcolname(0x66c3f0, 161)
13:48:18.428207 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 161)
13:48:18.428214 16541 (dblib.c:1771):dbcolname(0x66c3f0, 162)
13:48:18.428221 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 162)
13:48:18.428229 16541 (dblib.c:1771):dbcolname(0x66c3f0, 163)
13:48:18.428236 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 163)
13:48:18.428243 16541 (dblib.c:1771):dbcolname(0x66c3f0, 164)
13:48:18.428250 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 164)
13:48:18.428258 16541 (dblib.c:1771):dbcolname(0x66c3f0, 165)
13:48:18.428265 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 165)
13:48:18.428281 16541 (dblib.c:1771):dbcolname(0x66c3f0, 166)
13:48:18.428289 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 166)
13:48:18.428296 16541 (dblib.c:1771):dbcolname(0x66c3f0, 167)
13:48:18.428304 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 167)
13:48:18.428311 16541 (dblib.c:1771):dbcolname(0x66c3f0, 168)
13:48:18.428318 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 168)
13:48:18.428326 16541 (dblib.c:1771):dbcolname(0x66c3f0, 169)
13:48:18.428333 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 169)
13:48:18.428340 16541 (dblib.c:1771):dbcolname(0x66c3f0, 170)
13:48:18.428348 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 170)
13:48:18.428355 16541 (dblib.c:1771):dbcolname(0x66c3f0, 171)
13:48:18.428362 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 171)
13:48:18.428370 16541 (dblib.c:1771):dbcolname(0x66c3f0, 172)
13:48:18.428377 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 172)
13:48:18.428384 16541 (dblib.c:1771):dbcolname(0x66c3f0, 173)
13:48:18.428392 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 173)
13:48:18.428399 16541 (dblib.c:1771):dbcolname(0x66c3f0, 174)
13:48:18.428406 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 174)
13:48:18.428414 16541 (dblib.c:1771):dbcolname(0x66c3f0, 175)
13:48:18.428421 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 175)
13:48:18.428428 16541 (dblib.c:1771):dbcolname(0x66c3f0, 176)
13:48:18.428435 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 176)
13:48:18.428443 16541 (dblib.c:1771):dbcolname(0x66c3f0, 177)
13:48:18.428450 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 177)
13:48:18.428458 16541 (dblib.c:1771):dbcolname(0x66c3f0, 178)
13:48:18.428465 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 178)
13:48:18.428472 16541 (dblib.c:1771):dbcolname(0x66c3f0, 179)
13:48:18.428479 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 179)
13:48:18.428487 16541 (dblib.c:1771):dbcolname(0x66c3f0, 180)
13:48:18.428494 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 180)
13:48:18.428501 16541 (dblib.c:1771):dbcolname(0x66c3f0, 181)
13:48:18.428508 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 181)
13:48:18.428516 16541 (dblib.c:1771):dbcolname(0x66c3f0, 182)
13:48:18.428523 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 182)
13:48:18.428531 16541 (dblib.c:1771):dbcolname(0x66c3f0, 183)
13:48:18.428538 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 183)
13:48:18.428545 16541 (dblib.c:1771):dbcolname(0x66c3f0, 184)
13:48:18.428552 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 184)
13:48:18.428560 16541 (dblib.c:1771):dbcolname(0x66c3f0, 185)
13:48:18.428567 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 185)
13:48:18.428574 16541 (dblib.c:1771):dbcolname(0x66c3f0, 186)
13:48:18.428582 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 186)
13:48:18.428589 16541 (dblib.c:1771):dbcolname(0x66c3f0, 187)
13:48:18.428596 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 187)
13:48:18.428604 16541 (dblib.c:1771):dbcolname(0x66c3f0, 188)
13:48:18.428611 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 188)
13:48:18.428618 16541 (dblib.c:1771):dbcolname(0x66c3f0, 189)
13:48:18.428625 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 189)
13:48:18.428633 16541 (dblib.c:1771):dbcolname(0x66c3f0, 190)
13:48:18.428640 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 190)
13:48:18.428647 16541 (dblib.c:1771):dbcolname(0x66c3f0, 191)
13:48:18.428655 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 191)
13:48:18.428662 16541 (dblib.c:1771):dbcolname(0x66c3f0, 192)
13:48:18.428669 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 192)
13:48:18.428677 16541 (dblib.c:1771):dbcolname(0x66c3f0, 193)
13:48:18.428684 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 193)
13:48:18.428691 16541 (dblib.c:1771):dbcolname(0x66c3f0, 194)
13:48:18.428698 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 194)
13:48:18.428706 16541 (dblib.c:1771):dbcolname(0x66c3f0, 195)
13:48:18.428713 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 195)
13:48:18.428720 16541 (dblib.c:1771):dbcolname(0x66c3f0, 196)
13:48:18.428727 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 196)
13:48:18.428735 16541 (dblib.c:1771):dbcolname(0x66c3f0, 197)
13:48:18.428742 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 197)
13:48:18.428749 16541 (dblib.c:1771):dbcolname(0x66c3f0, 198)
13:48:18.428757 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 198)
13:48:18.428773 16541 (dblib.c:1771):dbcolname(0x66c3f0, 199)
13:48:18.428781 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 199)
13:48:18.428789 16541 (dblib.c:1771):dbcolname(0x66c3f0, 200)
13:48:18.428796 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 200)
13:48:18.428803 16541 (dblib.c:1771):dbcolname(0x66c3f0, 201)
13:48:18.428811 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 201)
13:48:18.428818 16541 (dblib.c:1948):dbnextrow(0x66c3f0)
13:48:18.428825 16541 (dblib.c:1961):dbnextrow() dbresults_state = 2 (_DB_RES_RESULTSET_ROWS)
13:48:18.428833 16541 (token.c:495):tds_process_tokens(0x654d60, 0x7fff290f096c, (nil), 0x1508)
13:48:18.428840 16541 (util.c:162):Changed query state from PENDING to READING
13:48:18.428847 16541 (token.c:510):processing result tokens. marker is d1(ROW)
13:48:18.428855 16541 (token.c:2166):tds_process_row(): reading column 0
13:48:18.428862 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.428869 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.428876 16541 (token.c:2166):tds_process_row(): reading column 1
13:48:18.428883 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.428890 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.428896 16541 (token.c:2166):tds_process_row(): reading column 2
13:48:18.428903 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.428910 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.428917 16541 (token.c:2166):tds_process_row(): reading column 3
13:48:18.428923 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.428930 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.428937 16541 (token.c:2166):tds_process_row(): reading column 4
13:48:18.428943 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.428950 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.428957 16541 (token.c:2166):tds_process_row(): reading column 5
13:48:18.428963 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.428970 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.428977 16541 (token.c:2166):tds_process_row(): reading column 6
13:48:18.428983 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.428990 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.428997 16541 (token.c:2166):tds_process_row(): reading column 7
13:48:18.429003 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.429010 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.429017 16541 (token.c:2166):tds_process_row(): reading column 8
13:48:18.429024 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.429030 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.429037 16541 (token.c:2166):tds_process_row(): reading column 9
13:48:18.429044 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.429050 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.429057 16541 (token.c:2166):tds_process_row(): reading column 10
13:48:18.429064 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.429070 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.429077 16541 (token.c:2166):tds_process_row(): reading column 11
13:48:18.429084 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.429091 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.429097 16541 (token.c:2166):tds_process_row(): reading column 12
13:48:18.429104 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.429111 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.429118 16541 (token.c:2166):tds_process_row(): reading column 13
13:48:18.429124 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.429131 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.429138 16541 (token.c:2166):tds_process_row(): reading column 14
13:48:18.429144 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.429161 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.429168 16541 (token.c:2166):tds_process_row(): reading column 15
13:48:18.429175 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.429181 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.429188 16541 (token.c:2166):tds_process_row(): reading column 16
13:48:18.429195 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.429202 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.429209 16541 (token.c:2166):tds_process_row(): reading column 17
13:48:18.429215 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.429222 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.429229 16541 (token.c:2166):tds_process_row(): reading column 18
13:48:18.429235 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.429242 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.429249 16541 (token.c:2166):tds_process_row(): reading column 19
13:48:18.429256 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.429262 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.429269 16541 (token.c:2166):tds_process_row(): reading column 20
13:48:18.429276 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.429283 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.429290 16541 (token.c:2166):tds_process_row(): reading column 21
13:48:18.429296 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.429303 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.429310 16541 (token.c:2166):tds_process_row(): reading column 22
13:48:18.429316 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.429323 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.429330 16541 (token.c:2166):tds_process_row(): reading column 23
13:48:18.429337 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.429343 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.429350 16541 (token.c:2166):tds_process_row(): reading column 24
13:48:18.429357 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.429364 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.429370 16541 (token.c:2166):tds_process_row(): reading column 25
13:48:18.429377 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.429384 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.429391 16541 (token.c:2166):tds_process_row(): reading column 26
13:48:18.429397 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.429404 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.429411 16541 (token.c:2166):tds_process_row(): reading column 27
13:48:18.429417 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.429424 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.429431 16541 (token.c:2166):tds_process_row(): reading column 28
13:48:18.429438 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.429444 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.429451 16541 (token.c:2166):tds_process_row(): reading column 29
13:48:18.429458 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.429465 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.429471 16541 (token.c:2166):tds_process_row(): reading column 30
13:48:18.429478 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.429485 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.429492 16541 (token.c:2166):tds_process_row(): reading column 31
13:48:18.429498 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.429505 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.429512 16541 (token.c:2166):tds_process_row(): reading column 32
13:48:18.429518 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.429525 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.429539 16541 (token.c:2166):tds_process_row(): reading column 33
13:48:18.429547 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.429554 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.429560 16541 (token.c:2166):tds_process_row(): reading column 34
13:48:18.429567 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.429574 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.429580 16541 (token.c:2166):tds_process_row(): reading column 35
13:48:18.429587 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.429594 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.429601 16541 (token.c:2166):tds_process_row(): reading column 36
13:48:18.429608 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.429614 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.429622 16541 (token.c:2166):tds_process_row(): reading column 37
13:48:18.429629 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.429636 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.429642 16541 (token.c:2166):tds_process_row(): reading column 38
13:48:18.429649 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.429656 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.429663 16541 (token.c:2166):tds_process_row(): reading column 39
13:48:18.429669 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.429676 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.429683 16541 (token.c:2166):tds_process_row(): reading column 40
13:48:18.429689 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.429696 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.429703 16541 (token.c:2166):tds_process_row(): reading column 41
13:48:18.429709 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.429716 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.429723 16541 (token.c:2166):tds_process_row(): reading column 42
13:48:18.429729 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.429736 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.429743 16541 (token.c:2166):tds_process_row(): reading column 43
13:48:18.429749 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.429756 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.429763 16541 (token.c:2166):tds_process_row(): reading column 44
13:48:18.429770 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.429776 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.429783 16541 (token.c:2166):tds_process_row(): reading column 45
13:48:18.429790 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.429796 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.429803 16541 (token.c:2166):tds_process_row(): reading column 46
13:48:18.429810 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.429817 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.429823 16541 (token.c:2166):tds_process_row(): reading column 47
13:48:18.429830 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.429837 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.429843 16541 (token.c:2166):tds_process_row(): reading column 48
13:48:18.429850 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.429857 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.429863 16541 (token.c:2166):tds_process_row(): reading column 49
13:48:18.429870 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.429877 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.429883 16541 (token.c:2166):tds_process_row(): reading column 50
13:48:18.429890 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.429897 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.429903 16541 (token.c:2166):tds_process_row(): reading column 51
13:48:18.429919 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.429926 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.429933 16541 (token.c:2166):tds_process_row(): reading column 52
13:48:18.429939 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.429946 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.429953 16541 (token.c:2166):tds_process_row(): reading column 53
13:48:18.429960 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.429966 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.429973 16541 (token.c:2166):tds_process_row(): reading column 54
13:48:18.429980 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.429986 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.429993 16541 (token.c:2166):tds_process_row(): reading column 55
13:48:18.430000 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.430007 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.430013 16541 (token.c:2166):tds_process_row(): reading column 56
13:48:18.430020 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.430027 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.430034 16541 (token.c:2166):tds_process_row(): reading column 57
13:48:18.430040 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.430047 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.430054 16541 (token.c:2166):tds_process_row(): reading column 58
13:48:18.430060 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.430067 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.430074 16541 (token.c:2166):tds_process_row(): reading column 59
13:48:18.430080 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.430087 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.430094 16541 (token.c:2166):tds_process_row(): reading column 60
13:48:18.430101 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.430107 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.430114 16541 (token.c:2166):tds_process_row(): reading column 61
13:48:18.430121 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.430127 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.430134 16541 (token.c:2166):tds_process_row(): reading column 62
13:48:18.430141 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.430147 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.430154 16541 (token.c:2166):tds_process_row(): reading column 63
13:48:18.430161 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.430167 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.430174 16541 (token.c:2166):tds_process_row(): reading column 64
13:48:18.430181 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.430188 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.430194 16541 (token.c:2166):tds_process_row(): reading column 65
13:48:18.430201 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.430208 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.430214 16541 (token.c:2166):tds_process_row(): reading column 66
13:48:18.430221 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.430228 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.430235 16541 (token.c:2166):tds_process_row(): reading column 67
13:48:18.430241 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.430248 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.430255 16541 (token.c:2166):tds_process_row(): reading column 68
13:48:18.430261 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.430268 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.430275 16541 (token.c:2166):tds_process_row(): reading column 69
13:48:18.430290 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.430297 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.430304 16541 (token.c:2166):tds_process_row(): reading column 70
13:48:18.430310 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.430317 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.430324 16541 (token.c:2166):tds_process_row(): reading column 71
13:48:18.430331 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.430337 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.430344 16541 (token.c:2166):tds_process_row(): reading column 72
13:48:18.430351 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.430358 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.430364 16541 (token.c:2166):tds_process_row(): reading column 73
13:48:18.430371 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.430378 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.430384 16541 (token.c:2166):tds_process_row(): reading column 74
13:48:18.430391 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.430398 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.430405 16541 (token.c:2166):tds_process_row(): reading column 75
13:48:18.430411 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.430418 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.430425 16541 (token.c:2166):tds_process_row(): reading column 76
13:48:18.430432 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.430438 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.430445 16541 (token.c:2166):tds_process_row(): reading column 77
13:48:18.430452 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.430459 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.430465 16541 (token.c:2166):tds_process_row(): reading column 78
13:48:18.430472 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.430479 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.430486 16541 (token.c:2166):tds_process_row(): reading column 79
13:48:18.430492 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.430499 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.430506 16541 (token.c:2166):tds_process_row(): reading column 80
13:48:18.430512 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.430519 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.430526 16541 (token.c:2166):tds_process_row(): reading column 81
13:48:18.430533 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.430539 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.430546 16541 (token.c:2166):tds_process_row(): reading column 82
13:48:18.430553 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.430560 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.430566 16541 (token.c:2166):tds_process_row(): reading column 83
13:48:18.430573 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.430580 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.430587 16541 (token.c:2166):tds_process_row(): reading column 84
13:48:18.430593 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.430600 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.430607 16541 (token.c:2166):tds_process_row(): reading column 85
13:48:18.430614 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.430620 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.430627 16541 (token.c:2166):tds_process_row(): reading column 86
13:48:18.430634 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.430641 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.430647 16541 (token.c:2166):tds_process_row(): reading column 87
13:48:18.430654 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.430669 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.430676 16541 (token.c:2166):tds_process_row(): reading column 88
13:48:18.430683 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.430690 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.430697 16541 (token.c:2166):tds_process_row(): reading column 89
13:48:18.430703 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.430710 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.430717 16541 (token.c:2166):tds_process_row(): reading column 90
13:48:18.430723 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.430730 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.430737 16541 (token.c:2166):tds_process_row(): reading column 91
13:48:18.430743 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.430750 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.430757 16541 (token.c:2166):tds_process_row(): reading column 92
13:48:18.430763 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.430770 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.430777 16541 (token.c:2166):tds_process_row(): reading column 93
13:48:18.430783 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.430790 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.430797 16541 (token.c:2166):tds_process_row(): reading column 94
13:48:18.430803 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.430810 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.430817 16541 (token.c:2166):tds_process_row(): reading column 95
13:48:18.430823 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.430830 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.430836 16541 (token.c:2166):tds_process_row(): reading column 96
13:48:18.430843 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.430850 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.430856 16541 (token.c:2166):tds_process_row(): reading column 97
13:48:18.430863 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.430870 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.430876 16541 (token.c:2166):tds_process_row(): reading column 98
13:48:18.430883 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.430890 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.430896 16541 (token.c:2166):tds_process_row(): reading column 99
13:48:18.430903 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.430909 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.430916 16541 (token.c:2166):tds_process_row(): reading column 100
13:48:18.430923 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.430929 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.430936 16541 (token.c:2166):tds_process_row(): reading column 101
13:48:18.430943 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.430949 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.430956 16541 (token.c:2166):tds_process_row(): reading column 102
13:48:18.430962 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.430969 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.430976 16541 (token.c:2166):tds_process_row(): reading column 103
13:48:18.430982 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.430989 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.430996 16541 (token.c:2166):tds_process_row(): reading column 104
13:48:18.431006 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.431013 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.431020 16541 (token.c:2166):tds_process_row(): reading column 105
13:48:18.431026 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.431041 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.431048 16541 (token.c:2166):tds_process_row(): reading column 106
13:48:18.431055 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.431062 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.431069 16541 (token.c:2166):tds_process_row(): reading column 107
13:48:18.431076 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.431082 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.431089 16541 (token.c:2166):tds_process_row(): reading column 108
13:48:18.431096 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.431102 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.431109 16541 (token.c:2166):tds_process_row(): reading column 109
13:48:18.431116 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.431122 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.431129 16541 (token.c:2166):tds_process_row(): reading column 110
13:48:18.431136 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.431142 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.431149 16541 (token.c:2166):tds_process_row(): reading column 111
13:48:18.431156 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.431163 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.431169 16541 (token.c:2166):tds_process_row(): reading column 112
13:48:18.431176 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.431183 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.431189 16541 (token.c:2166):tds_process_row(): reading column 113
13:48:18.431196 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.431203 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.431209 16541 (token.c:2166):tds_process_row(): reading column 114
13:48:18.431216 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.431223 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.431229 16541 (token.c:2166):tds_process_row(): reading column 115
13:48:18.431236 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.431243 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.431249 16541 (token.c:2166):tds_process_row(): reading column 116
13:48:18.431256 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.431263 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.431269 16541 (token.c:2166):tds_process_row(): reading column 117
13:48:18.431276 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.431283 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.431289 16541 (token.c:2166):tds_process_row(): reading column 118
13:48:18.431296 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.431303 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.431309 16541 (token.c:2166):tds_process_row(): reading column 119
13:48:18.431316 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.431323 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.431329 16541 (token.c:2166):tds_process_row(): reading column 120
13:48:18.431336 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.431343 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.431349 16541 (token.c:2166):tds_process_row(): reading column 121
13:48:18.431356 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.431363 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.431370 16541 (token.c:2166):tds_process_row(): reading column 122
13:48:18.431376 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.431383 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.431390 16541 (token.c:2166):tds_process_row(): reading column 123
13:48:18.431396 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.431403 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.431418 16541 (token.c:2166):tds_process_row(): reading column 124
13:48:18.431425 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.431432 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.431439 16541 (token.c:2166):tds_process_row(): reading column 125
13:48:18.431445 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.431452 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.431459 16541 (token.c:2166):tds_process_row(): reading column 126
13:48:18.431466 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.431472 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.431479 16541 (token.c:2166):tds_process_row(): reading column 127
13:48:18.431485 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.431492 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.431499 16541 (token.c:2166):tds_process_row(): reading column 128
13:48:18.431506 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.431512 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.431519 16541 (token.c:2166):tds_process_row(): reading column 129
13:48:18.431525 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.431532 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.431539 16541 (token.c:2166):tds_process_row(): reading column 130
13:48:18.431545 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.431552 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.431561 16541 (token.c:2166):tds_process_row(): reading column 131
13:48:18.431568 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.431575 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.431581 16541 (token.c:2166):tds_process_row(): reading column 132
13:48:18.431588 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.431595 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.431601 16541 (token.c:2166):tds_process_row(): reading column 133
13:48:18.431608 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.431615 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.431621 16541 (token.c:2166):tds_process_row(): reading column 134
13:48:18.431628 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.431635 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.431641 16541 (token.c:2166):tds_process_row(): reading column 135
13:48:18.431648 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.431655 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.431661 16541 (token.c:2166):tds_process_row(): reading column 136
13:48:18.431668 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.431675 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.431681 16541 (token.c:2166):tds_process_row(): reading column 137
13:48:18.431688 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.431695 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.431701 16541 (token.c:2166):tds_process_row(): reading column 138
13:48:18.431708 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.431715 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.431721 16541 (token.c:2166):tds_process_row(): reading column 139
13:48:18.431728 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.431735 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.431741 16541 (token.c:2166):tds_process_row(): reading column 140
13:48:18.431748 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.431755 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.431761 16541 (token.c:2166):tds_process_row(): reading column 141
13:48:18.431768 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.431774 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.431790 16541 (token.c:2166):tds_process_row(): reading column 142
13:48:18.431797 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.431804 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.431810 16541 (token.c:2166):tds_process_row(): reading column 143
13:48:18.431817 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.431824 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.431830 16541 (token.c:2166):tds_process_row(): reading column 144
13:48:18.431837 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.431844 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.431850 16541 (token.c:2166):tds_process_row(): reading column 145
13:48:18.431857 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.431864 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.431870 16541 (token.c:2166):tds_process_row(): reading column 146
13:48:18.431877 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.431884 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.431891 16541 (token.c:2166):tds_process_row(): reading column 147
13:48:18.431897 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.431904 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.431911 16541 (token.c:2166):tds_process_row(): reading column 148
13:48:18.431917 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.431924 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.431931 16541 (token.c:2166):tds_process_row(): reading column 149
13:48:18.431937 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.431944 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.431951 16541 (token.c:2166):tds_process_row(): reading column 150
13:48:18.431957 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.431964 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.431971 16541 (token.c:2166):tds_process_row(): reading column 151
13:48:18.431977 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.431984 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.431991 16541 (token.c:2166):tds_process_row(): reading column 152
13:48:18.431997 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.432004 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.432011 16541 (token.c:2166):tds_process_row(): reading column 153
13:48:18.432017 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.432024 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.432031 16541 (token.c:2166):tds_process_row(): reading column 154
13:48:18.432038 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.432044 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.432051 16541 (token.c:2166):tds_process_row(): reading column 155
13:48:18.432058 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.432064 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.432071 16541 (token.c:2166):tds_process_row(): reading column 156
13:48:18.432078 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.432084 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.432091 16541 (token.c:2166):tds_process_row(): reading column 157
13:48:18.432098 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.432104 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.432111 16541 (token.c:2166):tds_process_row(): reading column 158
13:48:18.432118 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.432124 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.432131 16541 (token.c:2166):tds_process_row(): reading column 159
13:48:18.432138 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.432145 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.432151 16541 (token.c:2166):tds_process_row(): reading column 160
13:48:18.432166 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.432173 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.432180 16541 (token.c:2166):tds_process_row(): reading column 161
13:48:18.432187 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.432193 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.432200 16541 (token.c:2166):tds_process_row(): reading column 162
13:48:18.432207 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.432213 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.432220 16541 (token.c:2166):tds_process_row(): reading column 163
13:48:18.432227 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.432234 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.432240 16541 (token.c:2166):tds_process_row(): reading column 164
13:48:18.432247 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.432254 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.432260 16541 (token.c:2166):tds_process_row(): reading column 165
13:48:18.432267 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.432274 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.432280 16541 (token.c:2166):tds_process_row(): reading column 166
13:48:18.432287 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.432294 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.432300 16541 (token.c:2166):tds_process_row(): reading column 167
13:48:18.432307 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.432313 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.432320 16541 (token.c:2166):tds_process_row(): reading column 168
13:48:18.432327 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.432333 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.432340 16541 (token.c:2166):tds_process_row(): reading column 169
13:48:18.432347 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.432354 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.432360 16541 (token.c:2166):tds_process_row(): reading column 170
13:48:18.432367 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.432374 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.432380 16541 (token.c:2166):tds_process_row(): reading column 171
13:48:18.432387 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.432393 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.432400 16541 (token.c:2166):tds_process_row(): reading column 172
13:48:18.432407 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.432413 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.432420 16541 (token.c:2166):tds_process_row(): reading column 173
13:48:18.432427 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.432433 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.432440 16541 (token.c:2166):tds_process_row(): reading column 174
13:48:18.432447 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.432453 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.432460 16541 (token.c:2166):tds_process_row(): reading column 175
13:48:18.432467 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.432473 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.432480 16541 (token.c:2166):tds_process_row(): reading column 176
13:48:18.432487 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.432493 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.432500 16541 (token.c:2166):tds_process_row(): reading column 177
13:48:18.432507 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.432513 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.432520 16541 (token.c:2166):tds_process_row(): reading column 178
13:48:18.432535 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.432542 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.432549 16541 (token.c:2166):tds_process_row(): reading column 179
13:48:18.432556 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.432562 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.432569 16541 (token.c:2166):tds_process_row(): reading column 180
13:48:18.432576 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.432583 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.432589 16541 (token.c:2166):tds_process_row(): reading column 181
13:48:18.432596 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.432603 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.432609 16541 (token.c:2166):tds_process_row(): reading column 182
13:48:18.432616 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.432623 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.432629 16541 (token.c:2166):tds_process_row(): reading column 183
13:48:18.432636 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.432643 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.432649 16541 (token.c:2166):tds_process_row(): reading column 184
13:48:18.432656 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.432663 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.432670 16541 (token.c:2166):tds_process_row(): reading column 185
13:48:18.432676 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.432683 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.432690 16541 (token.c:2166):tds_process_row(): reading column 186
13:48:18.432696 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.432703 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.432710 16541 (token.c:2166):tds_process_row(): reading column 187
13:48:18.432716 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.432723 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.432730 16541 (token.c:2166):tds_process_row(): reading column 188
13:48:18.432736 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.432743 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.432750 16541 (token.c:2166):tds_process_row(): reading column 189
13:48:18.432756 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.432763 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.432770 16541 (token.c:2166):tds_process_row(): reading column 190
13:48:18.432776 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.432783 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.432790 16541 (token.c:2166):tds_process_row(): reading column 191
13:48:18.432796 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.432803 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.432810 16541 (token.c:2166):tds_process_row(): reading column 192
13:48:18.432816 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.432823 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.432830 16541 (token.c:2166):tds_process_row(): reading column 193
13:48:18.432836 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.432843 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.432850 16541 (token.c:2166):tds_process_row(): reading column 194
13:48:18.432857 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.432863 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.432870 16541 (token.c:2166):tds_process_row(): reading column 195
13:48:18.432877 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.432883 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.432890 16541 (token.c:2166):tds_process_row(): reading column 196
13:48:18.432905 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.432912 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.432919 16541 (token.c:2166):tds_process_row(): reading column 197
13:48:18.432926 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.432933 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.432939 16541 (token.c:2166):tds_process_row(): reading column 198
13:48:18.432946 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.432953 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.432959 16541 (token.c:2166):tds_process_row(): reading column 199
13:48:18.432966 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.432973 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.432979 16541 (token.c:2166):tds_process_row(): reading column 200
13:48:18.432986 16541 (token.c:1915):tds_get_data: type 61, varint size 0
13:48:18.432993 16541 (token.c:1975):tds_get_data(): wire column size is 8
13:48:18.433000 16541 (util.c:162):Changed query state from READING to PENDING
13:48:18.433008 16541 (buffering.h:231):buffer_transfer_bound_data(0x66c400 4040 -1 0x66c3f0 0)
13:48:18.433022 16541 (dblib.c:2030):leaving dbnextrow() returning REG_ROW/MORE_ROWS
13:48:18.433030 16541 (dblib.c:1745):dbnumcols(0x66c3f0)
13:48:18.433040 16541 (dblib.c:3060):dbdata(0x66c3f0, 1)
13:48:18.433048 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 1)
13:48:18.433055 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec160)
13:48:18.433064 16541 (dblib.c:3060):dbdata(0x66c3f0, 2)
13:48:18.433071 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 2)
13:48:18.433078 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec168)
13:48:18.433086 16541 (dblib.c:3060):dbdata(0x66c3f0, 3)
13:48:18.433093 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 3)
13:48:18.433100 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec170)
13:48:18.433107 16541 (dblib.c:3060):dbdata(0x66c3f0, 4)
13:48:18.433114 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 4)
13:48:18.433121 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec178)
13:48:18.433128 16541 (dblib.c:3060):dbdata(0x66c3f0, 5)
13:48:18.433135 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 5)
13:48:18.433142 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec180)
13:48:18.433149 16541 (dblib.c:3060):dbdata(0x66c3f0, 6)
13:48:18.433156 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 6)
13:48:18.433163 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec188)
13:48:18.433170 16541 (dblib.c:3060):dbdata(0x66c3f0, 7)
13:48:18.433177 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 7)
13:48:18.433184 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec190)
13:48:18.433191 16541 (dblib.c:3060):dbdata(0x66c3f0, 8)
13:48:18.433198 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 8)
13:48:18.433205 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec198)
13:48:18.433212 16541 (dblib.c:3060):dbdata(0x66c3f0, 9)
13:48:18.433219 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 9)
13:48:18.433226 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec1a0)
13:48:18.433233 16541 (dblib.c:3060):dbdata(0x66c3f0, 10)
13:48:18.433240 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 10)
13:48:18.433247 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec1a8)
13:48:18.433254 16541 (dblib.c:3060):dbdata(0x66c3f0, 11)
13:48:18.433261 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 11)
13:48:18.433268 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec1b0)
13:48:18.433275 16541 (dblib.c:3060):dbdata(0x66c3f0, 12)
13:48:18.433282 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 12)
13:48:18.433289 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec1b8)
13:48:18.433296 16541 (dblib.c:3060):dbdata(0x66c3f0, 13)
13:48:18.433303 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 13)
13:48:18.433310 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec1c0)
13:48:18.433317 16541 (dblib.c:3060):dbdata(0x66c3f0, 14)
13:48:18.433324 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 14)
13:48:18.433339 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec1c8)
13:48:18.433347 16541 (dblib.c:3060):dbdata(0x66c3f0, 15)
13:48:18.433354 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 15)
13:48:18.433361 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec1d0)
13:48:18.433369 16541 (dblib.c:3060):dbdata(0x66c3f0, 16)
13:48:18.433376 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 16)
13:48:18.433382 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec1d8)
13:48:18.433390 16541 (dblib.c:3060):dbdata(0x66c3f0, 17)
13:48:18.433396 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 17)
13:48:18.433403 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec1e0)
13:48:18.433410 16541 (dblib.c:3060):dbdata(0x66c3f0, 18)
13:48:18.433417 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 18)
13:48:18.433424 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec1e8)
13:48:18.433431 16541 (dblib.c:3060):dbdata(0x66c3f0, 19)
13:48:18.433438 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 19)
13:48:18.433445 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec1f0)
13:48:18.433452 16541 (dblib.c:3060):dbdata(0x66c3f0, 20)
13:48:18.433459 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 20)
13:48:18.433466 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec1f8)
13:48:18.433473 16541 (dblib.c:3060):dbdata(0x66c3f0, 21)
13:48:18.433480 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 21)
13:48:18.433487 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec200)
13:48:18.433494 16541 (dblib.c:3060):dbdata(0x66c3f0, 22)
13:48:18.433501 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 22)
13:48:18.433508 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec208)
13:48:18.433515 16541 (dblib.c:3060):dbdata(0x66c3f0, 23)
13:48:18.433522 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 23)
13:48:18.433529 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec210)
13:48:18.433536 16541 (dblib.c:3060):dbdata(0x66c3f0, 24)
13:48:18.433543 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 24)
13:48:18.433549 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec218)
13:48:18.433557 16541 (dblib.c:3060):dbdata(0x66c3f0, 25)
13:48:18.433564 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 25)
13:48:18.433570 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec220)
13:48:18.433578 16541 (dblib.c:3060):dbdata(0x66c3f0, 26)
13:48:18.433584 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 26)
13:48:18.433591 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec228)
13:48:18.433598 16541 (dblib.c:3060):dbdata(0x66c3f0, 27)
13:48:18.433605 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 27)
13:48:18.433612 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec230)
13:48:18.433619 16541 (dblib.c:3060):dbdata(0x66c3f0, 28)
13:48:18.433626 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 28)
13:48:18.433633 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec238)
13:48:18.433640 16541 (dblib.c:3060):dbdata(0x66c3f0, 29)
13:48:18.433647 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 29)
13:48:18.433654 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec240)
13:48:18.433661 16541 (dblib.c:3060):dbdata(0x66c3f0, 30)
13:48:18.433668 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 30)
13:48:18.433675 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec248)
13:48:18.433682 16541 (dblib.c:3060):dbdata(0x66c3f0, 31)
13:48:18.433689 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 31)
13:48:18.433696 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec250)
13:48:18.433703 16541 (dblib.c:3060):dbdata(0x66c3f0, 32)
13:48:18.433710 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 32)
13:48:18.433717 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec258)
13:48:18.433724 16541 (dblib.c:3060):dbdata(0x66c3f0, 33)
13:48:18.433731 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 33)
13:48:18.433737 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec260)
13:48:18.433745 16541 (dblib.c:3060):dbdata(0x66c3f0, 34)
13:48:18.433751 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 34)
13:48:18.433767 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec268)
13:48:18.433775 16541 (dblib.c:3060):dbdata(0x66c3f0, 35)
13:48:18.433782 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 35)
13:48:18.433788 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec270)
13:48:18.433796 16541 (dblib.c:3060):dbdata(0x66c3f0, 36)
13:48:18.433802 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 36)
13:48:18.433809 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec278)
13:48:18.433817 16541 (dblib.c:3060):dbdata(0x66c3f0, 37)
13:48:18.433823 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 37)
13:48:18.433830 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec280)
13:48:18.433837 16541 (dblib.c:3060):dbdata(0x66c3f0, 38)
13:48:18.433844 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 38)
13:48:18.433851 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec288)
13:48:18.433858 16541 (dblib.c:3060):dbdata(0x66c3f0, 39)
13:48:18.433865 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 39)
13:48:18.433872 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec290)
13:48:18.433879 16541 (dblib.c:3060):dbdata(0x66c3f0, 40)
13:48:18.433886 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 40)
13:48:18.433893 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec298)
13:48:18.433900 16541 (dblib.c:3060):dbdata(0x66c3f0, 41)
13:48:18.433907 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 41)
13:48:18.433914 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec2a0)
13:48:18.433921 16541 (dblib.c:3060):dbdata(0x66c3f0, 42)
13:48:18.433928 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 42)
13:48:18.433935 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec2a8)
13:48:18.433942 16541 (dblib.c:3060):dbdata(0x66c3f0, 43)
13:48:18.433949 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 43)
13:48:18.433956 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec2b0)
13:48:18.433963 16541 (dblib.c:3060):dbdata(0x66c3f0, 44)
13:48:18.433970 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 44)
13:48:18.433977 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec2b8)
13:48:18.433984 16541 (dblib.c:3060):dbdata(0x66c3f0, 45)
13:48:18.433991 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 45)
13:48:18.433997 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec2c0)
13:48:18.434005 16541 (dblib.c:3060):dbdata(0x66c3f0, 46)
13:48:18.434011 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 46)
13:48:18.434018 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec2c8)
13:48:18.434025 16541 (dblib.c:3060):dbdata(0x66c3f0, 47)
13:48:18.434032 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 47)
13:48:18.434039 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec2d0)
13:48:18.434046 16541 (dblib.c:3060):dbdata(0x66c3f0, 48)
13:48:18.434053 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 48)
13:48:18.434060 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec2d8)
13:48:18.434067 16541 (dblib.c:3060):dbdata(0x66c3f0, 49)
13:48:18.434074 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 49)
13:48:18.434081 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec2e0)
13:48:18.434088 16541 (dblib.c:3060):dbdata(0x66c3f0, 50)
13:48:18.434095 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 50)
13:48:18.434102 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec2e8)
13:48:18.434109 16541 (dblib.c:3060):dbdata(0x66c3f0, 51)
13:48:18.434116 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 51)
13:48:18.434122 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec2f0)
13:48:18.434130 16541 (dblib.c:3060):dbdata(0x66c3f0, 52)
13:48:18.434136 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 52)
13:48:18.434143 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec2f8)
13:48:18.434150 16541 (dblib.c:3060):dbdata(0x66c3f0, 53)
13:48:18.434157 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 53)
13:48:18.434164 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec300)
13:48:18.434171 16541 (dblib.c:3060):dbdata(0x66c3f0, 54)
13:48:18.434178 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 54)
13:48:18.434193 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec308)
13:48:18.434201 16541 (dblib.c:3060):dbdata(0x66c3f0, 55)
13:48:18.434208 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 55)
13:48:18.434215 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec310)
13:48:18.434222 16541 (dblib.c:3060):dbdata(0x66c3f0, 56)
13:48:18.434229 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 56)
13:48:18.434236 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec318)
13:48:18.434243 16541 (dblib.c:3060):dbdata(0x66c3f0, 57)
13:48:18.434250 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 57)
13:48:18.434257 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec320)
13:48:18.434264 16541 (dblib.c:3060):dbdata(0x66c3f0, 58)
13:48:18.434271 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 58)
13:48:18.434277 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec328)
13:48:18.434285 16541 (dblib.c:3060):dbdata(0x66c3f0, 59)
13:48:18.434292 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 59)
13:48:18.434298 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec330)
13:48:18.434306 16541 (dblib.c:3060):dbdata(0x66c3f0, 60)
13:48:18.434312 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 60)
13:48:18.434319 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec338)
13:48:18.434326 16541 (dblib.c:3060):dbdata(0x66c3f0, 61)
13:48:18.434333 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 61)
13:48:18.434340 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec340)
13:48:18.434347 16541 (dblib.c:3060):dbdata(0x66c3f0, 62)
13:48:18.434354 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 62)
13:48:18.434361 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec348)
13:48:18.434368 16541 (dblib.c:3060):dbdata(0x66c3f0, 63)
13:48:18.434375 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 63)
13:48:18.434382 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec350)
13:48:18.434389 16541 (dblib.c:3060):dbdata(0x66c3f0, 64)
13:48:18.434396 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 64)
13:48:18.434403 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec358)
13:48:18.434410 16541 (dblib.c:3060):dbdata(0x66c3f0, 65)
13:48:18.434417 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 65)
13:48:18.434424 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec360)
13:48:18.434431 16541 (dblib.c:3060):dbdata(0x66c3f0, 66)
13:48:18.434437 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 66)
13:48:18.434444 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec368)
13:48:18.434451 16541 (dblib.c:3060):dbdata(0x66c3f0, 67)
13:48:18.434458 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 67)
13:48:18.434465 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec370)
13:48:18.434472 16541 (dblib.c:3060):dbdata(0x66c3f0, 68)
13:48:18.434479 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 68)
13:48:18.434486 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec378)
13:48:18.434493 16541 (dblib.c:3060):dbdata(0x66c3f0, 69)
13:48:18.434500 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 69)
13:48:18.434507 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec380)
13:48:18.434514 16541 (dblib.c:3060):dbdata(0x66c3f0, 70)
13:48:18.434521 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 70)
13:48:18.434527 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec388)
13:48:18.434535 16541 (dblib.c:3060):dbdata(0x66c3f0, 71)
13:48:18.434542 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 71)
13:48:18.434548 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec390)
13:48:18.434556 16541 (dblib.c:3060):dbdata(0x66c3f0, 72)
13:48:18.434562 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 72)
13:48:18.434569 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec398)
13:48:18.434576 16541 (dblib.c:3060):dbdata(0x66c3f0, 73)
13:48:18.434583 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 73)
13:48:18.434590 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec3a0)
13:48:18.434597 16541 (dblib.c:3060):dbdata(0x66c3f0, 74)
13:48:18.434604 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 74)
13:48:18.434611 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec3a8)
13:48:18.434625 16541 (dblib.c:3060):dbdata(0x66c3f0, 75)
13:48:18.434632 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 75)
13:48:18.434639 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec3b0)
13:48:18.434646 16541 (dblib.c:3060):dbdata(0x66c3f0, 76)
13:48:18.434653 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 76)
13:48:18.434660 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec3b8)
13:48:18.434667 16541 (dblib.c:3060):dbdata(0x66c3f0, 77)
13:48:18.434674 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 77)
13:48:18.434681 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec3c0)
13:48:18.434688 16541 (dblib.c:3060):dbdata(0x66c3f0, 78)
13:48:18.434695 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 78)
13:48:18.434702 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec3c8)
13:48:18.434709 16541 (dblib.c:3060):dbdata(0x66c3f0, 79)
13:48:18.434716 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 79)
13:48:18.434723 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec3d0)
13:48:18.434733 16541 (dblib.c:3060):dbdata(0x66c3f0, 80)
13:48:18.434740 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 80)
13:48:18.434747 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec3d8)
13:48:18.434754 16541 (dblib.c:3060):dbdata(0x66c3f0, 81)
13:48:18.434761 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 81)
13:48:18.434768 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec3e0)
13:48:18.434775 16541 (dblib.c:3060):dbdata(0x66c3f0, 82)
13:48:18.434782 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 82)
13:48:18.434789 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec3e8)
13:48:18.434796 16541 (dblib.c:3060):dbdata(0x66c3f0, 83)
13:48:18.434803 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 83)
13:48:18.434810 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec3f0)
13:48:18.434817 16541 (dblib.c:3060):dbdata(0x66c3f0, 84)
13:48:18.434824 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 84)
13:48:18.434830 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec3f8)
13:48:18.434838 16541 (dblib.c:3060):dbdata(0x66c3f0, 85)
13:48:18.434844 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 85)
13:48:18.434851 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec400)
13:48:18.434858 16541 (dblib.c:3060):dbdata(0x66c3f0, 86)
13:48:18.434865 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 86)
13:48:18.434872 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec408)
13:48:18.434879 16541 (dblib.c:3060):dbdata(0x66c3f0, 87)
13:48:18.434886 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 87)
13:48:18.434893 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec410)
13:48:18.434900 16541 (dblib.c:3060):dbdata(0x66c3f0, 88)
13:48:18.434907 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 88)
13:48:18.434914 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec418)
13:48:18.434921 16541 (dblib.c:3060):dbdata(0x66c3f0, 89)
13:48:18.434927 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 89)
13:48:18.434934 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec420)
13:48:18.434941 16541 (dblib.c:3060):dbdata(0x66c3f0, 90)
13:48:18.434948 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 90)
13:48:18.434955 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec428)
13:48:18.434962 16541 (dblib.c:3060):dbdata(0x66c3f0, 91)
13:48:18.434969 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 91)
13:48:18.434976 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec430)
13:48:18.434983 16541 (dblib.c:3060):dbdata(0x66c3f0, 92)
13:48:18.434990 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 92)
13:48:18.435019 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec438)
13:48:18.435028 16541 (dblib.c:3060):dbdata(0x66c3f0, 93)
13:48:18.435035 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 93)
13:48:18.435042 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec440)
13:48:18.435049 16541 (dblib.c:3060):dbdata(0x66c3f0, 94)
13:48:18.435056 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 94)
13:48:18.435063 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec448)
13:48:18.435077 16541 (dblib.c:3060):dbdata(0x66c3f0, 95)
13:48:18.435085 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 95)
13:48:18.435092 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec450)
13:48:18.435099 16541 (dblib.c:3060):dbdata(0x66c3f0, 96)
13:48:18.435106 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 96)
13:48:18.435113 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec458)
13:48:18.435120 16541 (dblib.c:3060):dbdata(0x66c3f0, 97)
13:48:18.435127 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 97)
13:48:18.435133 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec460)
13:48:18.435141 16541 (dblib.c:3060):dbdata(0x66c3f0, 98)
13:48:18.435147 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 98)
13:48:18.435154 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec468)
13:48:18.435162 16541 (dblib.c:3060):dbdata(0x66c3f0, 99)
13:48:18.435168 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 99)
13:48:18.435175 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec470)
13:48:18.435182 16541 (dblib.c:3060):dbdata(0x66c3f0, 100)
13:48:18.435189 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 100)
13:48:18.435196 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec478)
13:48:18.435203 16541 (dblib.c:3060):dbdata(0x66c3f0, 101)
13:48:18.435210 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 101)
13:48:18.435217 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec480)
13:48:18.435224 16541 (dblib.c:3060):dbdata(0x66c3f0, 102)
13:48:18.435231 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 102)
13:48:18.435238 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec488)
13:48:18.435245 16541 (dblib.c:3060):dbdata(0x66c3f0, 103)
13:48:18.435252 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 103)
13:48:18.435259 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec490)
13:48:18.435266 16541 (dblib.c:3060):dbdata(0x66c3f0, 104)
13:48:18.435273 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 104)
13:48:18.435280 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec498)
13:48:18.435287 16541 (dblib.c:3060):dbdata(0x66c3f0, 105)
13:48:18.435294 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 105)
13:48:18.435301 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec4a0)
13:48:18.435308 16541 (dblib.c:3060):dbdata(0x66c3f0, 106)
13:48:18.435315 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 106)
13:48:18.435321 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec4a8)
13:48:18.435329 16541 (dblib.c:3060):dbdata(0x66c3f0, 107)
13:48:18.435336 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 107)
13:48:18.435342 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec4b0)
13:48:18.435350 16541 (dblib.c:3060):dbdata(0x66c3f0, 108)
13:48:18.435356 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 108)
13:48:18.435363 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec4b8)
13:48:18.435370 16541 (dblib.c:3060):dbdata(0x66c3f0, 109)
13:48:18.435377 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 109)
13:48:18.435384 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec4c0)
13:48:18.435391 16541 (dblib.c:3060):dbdata(0x66c3f0, 110)
13:48:18.435398 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 110)
13:48:18.435405 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec4c8)
13:48:18.435412 16541 (dblib.c:3060):dbdata(0x66c3f0, 111)
13:48:18.435419 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 111)
13:48:18.435425 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec4d0)
13:48:18.435433 16541 (dblib.c:3060):dbdata(0x66c3f0, 112)
13:48:18.435439 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 112)
13:48:18.435446 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec4d8)
13:48:18.435454 16541 (dblib.c:3060):dbdata(0x66c3f0, 113)
13:48:18.435460 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 113)
13:48:18.435467 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec4e0)
13:48:18.435474 16541 (dblib.c:3060):dbdata(0x66c3f0, 114)
13:48:18.435481 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 114)
13:48:18.435488 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec4e8)
13:48:18.435504 16541 (dblib.c:3060):dbdata(0x66c3f0, 115)
13:48:18.435512 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 115)
13:48:18.435519 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec4f0)
13:48:18.435526 16541 (dblib.c:3060):dbdata(0x66c3f0, 116)
13:48:18.435533 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 116)
13:48:18.435540 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec4f8)
13:48:18.435547 16541 (dblib.c:3060):dbdata(0x66c3f0, 117)
13:48:18.435554 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 117)
13:48:18.435563 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec500)
13:48:18.435571 16541 (dblib.c:3060):dbdata(0x66c3f0, 118)
13:48:18.435578 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 118)
13:48:18.435585 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec508)
13:48:18.435592 16541 (dblib.c:3060):dbdata(0x66c3f0, 119)
13:48:18.435599 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 119)
13:48:18.435605 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec510)
13:48:18.435613 16541 (dblib.c:3060):dbdata(0x66c3f0, 120)
13:48:18.435620 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 120)
13:48:18.435627 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec518)
13:48:18.435634 16541 (dblib.c:3060):dbdata(0x66c3f0, 121)
13:48:18.435641 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 121)
13:48:18.435647 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec520)
13:48:18.435654 16541 (dblib.c:3060):dbdata(0x66c3f0, 122)
13:48:18.435661 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 122)
13:48:18.435668 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec528)
13:48:18.435675 16541 (dblib.c:3060):dbdata(0x66c3f0, 123)
13:48:18.435682 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 123)
13:48:18.435689 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec530)
13:48:18.435696 16541 (dblib.c:3060):dbdata(0x66c3f0, 124)
13:48:18.435703 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 124)
13:48:18.435710 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec538)
13:48:18.435717 16541 (dblib.c:3060):dbdata(0x66c3f0, 125)
13:48:18.435724 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 125)
13:48:18.435731 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec540)
13:48:18.435738 16541 (dblib.c:3060):dbdata(0x66c3f0, 126)
13:48:18.435745 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 126)
13:48:18.435752 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec548)
13:48:18.435759 16541 (dblib.c:3060):dbdata(0x66c3f0, 127)
13:48:18.435766 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 127)
13:48:18.435773 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec550)
13:48:18.435780 16541 (dblib.c:3060):dbdata(0x66c3f0, 128)
13:48:18.435787 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 128)
13:48:18.435793 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec558)
13:48:18.435800 16541 (dblib.c:3060):dbdata(0x66c3f0, 129)
13:48:18.435807 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 129)
13:48:18.435814 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec560)
13:48:18.435821 16541 (dblib.c:3060):dbdata(0x66c3f0, 130)
13:48:18.435828 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 130)
13:48:18.435835 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec568)
13:48:18.435842 16541 (dblib.c:3060):dbdata(0x66c3f0, 131)
13:48:18.435849 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 131)
13:48:18.435856 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec570)
13:48:18.435863 16541 (dblib.c:3060):dbdata(0x66c3f0, 132)
13:48:18.435870 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 132)
13:48:18.435877 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec578)
13:48:18.435884 16541 (dblib.c:3060):dbdata(0x66c3f0, 133)
13:48:18.435891 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 133)
13:48:18.435898 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec580)
13:48:18.435905 16541 (dblib.c:3060):dbdata(0x66c3f0, 134)
13:48:18.435912 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 134)
13:48:18.435928 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec588)
13:48:18.435935 16541 (dblib.c:3060):dbdata(0x66c3f0, 135)
13:48:18.435942 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 135)
13:48:18.435949 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec590)
13:48:18.435956 16541 (dblib.c:3060):dbdata(0x66c3f0, 136)
13:48:18.435963 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 136)
13:48:18.435970 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec598)
13:48:18.435978 16541 (dblib.c:3060):dbdata(0x66c3f0, 137)
13:48:18.435984 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 137)
13:48:18.435991 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec5a0)
13:48:18.435999 16541 (dblib.c:3060):dbdata(0x66c3f0, 138)
13:48:18.436005 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 138)
13:48:18.436012 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec5a8)
13:48:18.436019 16541 (dblib.c:3060):dbdata(0x66c3f0, 139)
13:48:18.436026 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 139)
13:48:18.436033 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec5b0)
13:48:18.436040 16541 (dblib.c:3060):dbdata(0x66c3f0, 140)
13:48:18.436047 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 140)
13:48:18.436054 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec5b8)
13:48:18.436061 16541 (dblib.c:3060):dbdata(0x66c3f0, 141)
13:48:18.436068 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 141)
13:48:18.436075 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec5c0)
13:48:18.436082 16541 (dblib.c:3060):dbdata(0x66c3f0, 142)
13:48:18.436089 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 142)
13:48:18.436096 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec5c8)
13:48:18.436103 16541 (dblib.c:3060):dbdata(0x66c3f0, 143)
13:48:18.436110 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 143)
13:48:18.436117 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec5d0)
13:48:18.436124 16541 (dblib.c:3060):dbdata(0x66c3f0, 144)
13:48:18.436131 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 144)
13:48:18.436137 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec5d8)
13:48:18.436145 16541 (dblib.c:3060):dbdata(0x66c3f0, 145)
13:48:18.436151 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 145)
13:48:18.436158 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec5e0)
13:48:18.436166 16541 (dblib.c:3060):dbdata(0x66c3f0, 146)
13:48:18.436172 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 146)
13:48:18.436179 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec5e8)
13:48:18.436187 16541 (dblib.c:3060):dbdata(0x66c3f0, 147)
13:48:18.436194 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 147)
13:48:18.436200 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec5f0)
13:48:18.436208 16541 (dblib.c:3060):dbdata(0x66c3f0, 148)
13:48:18.436214 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 148)
13:48:18.436221 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec5f8)
13:48:18.436228 16541 (dblib.c:3060):dbdata(0x66c3f0, 149)
13:48:18.436235 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 149)
13:48:18.436242 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec600)
13:48:18.436250 16541 (dblib.c:3060):dbdata(0x66c3f0, 150)
13:48:18.436256 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 150)
13:48:18.436263 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec608)
13:48:18.436270 16541 (dblib.c:3060):dbdata(0x66c3f0, 151)
13:48:18.436277 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 151)
13:48:18.436284 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec610)
13:48:18.436292 16541 (dblib.c:3060):dbdata(0x66c3f0, 152)
13:48:18.436298 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 152)
13:48:18.436305 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec618)
13:48:18.436312 16541 (dblib.c:3060):dbdata(0x66c3f0, 153)
13:48:18.436319 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 153)
13:48:18.436326 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec620)
13:48:18.436333 16541 (dblib.c:3060):dbdata(0x66c3f0, 154)
13:48:18.436340 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 154)
13:48:18.436356 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec628)
13:48:18.436364 16541 (dblib.c:3060):dbdata(0x66c3f0, 155)
13:48:18.436371 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 155)
13:48:18.436378 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec630)
13:48:18.436385 16541 (dblib.c:3060):dbdata(0x66c3f0, 156)
13:48:18.436392 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 156)
13:48:18.436398 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec638)
13:48:18.436406 16541 (dblib.c:3060):dbdata(0x66c3f0, 157)
13:48:18.436413 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 157)
13:48:18.436419 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec640)
13:48:18.436427 16541 (dblib.c:3060):dbdata(0x66c3f0, 158)
13:48:18.436434 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 158)
13:48:18.436440 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec648)
13:48:18.436448 16541 (dblib.c:3060):dbdata(0x66c3f0, 159)
13:48:18.436455 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 159)
13:48:18.436461 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec650)
13:48:18.436469 16541 (dblib.c:3060):dbdata(0x66c3f0, 160)
13:48:18.436475 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 160)
13:48:18.436482 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec658)
13:48:18.436490 16541 (dblib.c:3060):dbdata(0x66c3f0, 161)
13:48:18.436497 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 161)
13:48:18.436503 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec660)
13:48:18.436511 16541 (dblib.c:3060):dbdata(0x66c3f0, 162)
13:48:18.436518 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 162)
13:48:18.436524 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec668)
13:48:18.436531 16541 (dblib.c:3060):dbdata(0x66c3f0, 163)
13:48:18.436538 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 163)
13:48:18.436545 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec670)
13:48:18.436553 16541 (dblib.c:3060):dbdata(0x66c3f0, 164)
13:48:18.436559 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 164)
13:48:18.436566 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec678)
13:48:18.436573 16541 (dblib.c:3060):dbdata(0x66c3f0, 165)
13:48:18.436580 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 165)
13:48:18.436587 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec680)
13:48:18.436594 16541 (dblib.c:3060):dbdata(0x66c3f0, 166)
13:48:18.436601 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 166)
13:48:18.436608 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec688)
13:48:18.436615 16541 (dblib.c:3060):dbdata(0x66c3f0, 167)
13:48:18.436622 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 167)
13:48:18.436629 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec690)
13:48:18.436636 16541 (dblib.c:3060):dbdata(0x66c3f0, 168)
13:48:18.436643 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 168)
13:48:18.436650 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec698)
13:48:18.436657 16541 (dblib.c:3060):dbdata(0x66c3f0, 169)
13:48:18.436664 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 169)
13:48:18.436671 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec6a0)
13:48:18.436678 16541 (dblib.c:3060):dbdata(0x66c3f0, 170)
13:48:18.436685 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 170)
13:48:18.436692 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec6a8)
13:48:18.436699 16541 (dblib.c:3060):dbdata(0x66c3f0, 171)
13:48:18.436706 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 171)
13:48:18.436713 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec6b0)
13:48:18.436720 16541 (dblib.c:3060):dbdata(0x66c3f0, 172)
13:48:18.436727 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 172)
13:48:18.436734 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec6b8)
13:48:18.436741 16541 (dblib.c:3060):dbdata(0x66c3f0, 173)
13:48:18.436748 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 173)
13:48:18.436755 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec6c0)
13:48:18.436762 16541 (dblib.c:3060):dbdata(0x66c3f0, 174)
13:48:18.436777 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 174)
13:48:18.436785 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec6c8)
13:48:18.436792 16541 (dblib.c:3060):dbdata(0x66c3f0, 175)
13:48:18.436799 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 175)
13:48:18.436806 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec6d0)
13:48:18.436813 16541 (dblib.c:3060):dbdata(0x66c3f0, 176)
13:48:18.436820 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 176)
13:48:18.436827 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec6d8)
13:48:18.436834 16541 (dblib.c:3060):dbdata(0x66c3f0, 177)
13:48:18.436841 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 177)
13:48:18.436848 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec6e0)
13:48:18.436855 16541 (dblib.c:3060):dbdata(0x66c3f0, 178)
13:48:18.436862 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 178)
13:48:18.436869 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec6e8)
13:48:18.436876 16541 (dblib.c:3060):dbdata(0x66c3f0, 179)
13:48:18.436883 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 179)
13:48:18.436890 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec6f0)
13:48:18.436897 16541 (dblib.c:3060):dbdata(0x66c3f0, 180)
13:48:18.436904 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 180)
13:48:18.436911 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec6f8)
13:48:18.436924 16541 (dblib.c:3060):dbdata(0x66c3f0, 181)
13:48:18.436932 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 181)
13:48:18.436939 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec700)
13:48:18.436946 16541 (dblib.c:3060):dbdata(0x66c3f0, 182)
13:48:18.436953 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 182)
13:48:18.436960 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec708)
13:48:18.436967 16541 (dblib.c:3060):dbdata(0x66c3f0, 183)
13:48:18.436974 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 183)
13:48:18.436980 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec710)
13:48:18.436987 16541 (dblib.c:3060):dbdata(0x66c3f0, 184)
13:48:18.436994 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 184)
13:48:18.437001 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec718)
13:48:18.437008 16541 (dblib.c:3060):dbdata(0x66c3f0, 185)
13:48:18.437015 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 185)
13:48:18.437022 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec720)
13:48:18.437029 16541 (dblib.c:3060):dbdata(0x66c3f0, 186)
13:48:18.437036 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 186)
13:48:18.437043 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec728)
13:48:18.437050 16541 (dblib.c:3060):dbdata(0x66c3f0, 187)
13:48:18.437056 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 187)
13:48:18.437063 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec730)
13:48:18.437070 16541 (dblib.c:3060):dbdata(0x66c3f0, 188)
13:48:18.437077 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 188)
13:48:18.437084 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec738)
13:48:18.437091 16541 (dblib.c:3060):dbdata(0x66c3f0, 189)
13:48:18.437098 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 189)
13:48:18.437105 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec740)
13:48:18.437112 16541 (dblib.c:3060):dbdata(0x66c3f0, 190)
13:48:18.437119 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 190)
13:48:18.437125 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec748)
13:48:18.437133 16541 (dblib.c:3060):dbdata(0x66c3f0, 191)
13:48:18.437139 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 191)
13:48:18.437146 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec750)
13:48:18.437153 16541 (dblib.c:3060):dbdata(0x66c3f0, 192)
13:48:18.437160 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 192)
13:48:18.437167 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec758)
13:48:18.437174 16541 (dblib.c:3060):dbdata(0x66c3f0, 193)
13:48:18.437181 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 193)
13:48:18.437188 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec760)
13:48:18.437195 16541 (dblib.c:3060):dbdata(0x66c3f0, 194)
13:48:18.437210 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 194)
13:48:18.437217 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec768)
13:48:18.437225 16541 (dblib.c:3060):dbdata(0x66c3f0, 195)
13:48:18.437232 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 195)
13:48:18.437238 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec770)
13:48:18.437246 16541 (dblib.c:3060):dbdata(0x66c3f0, 196)
13:48:18.437252 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 196)
13:48:18.437259 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec778)
13:48:18.437266 16541 (dblib.c:3060):dbdata(0x66c3f0, 197)
13:48:18.437273 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 197)
13:48:18.437280 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec780)
13:48:18.437287 16541 (dblib.c:3060):dbdata(0x66c3f0, 198)
13:48:18.437294 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 198)
13:48:18.437301 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec788)
13:48:18.437308 16541 (dblib.c:3060):dbdata(0x66c3f0, 199)
13:48:18.437315 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 199)
13:48:18.437321 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec790)
13:48:18.437329 16541 (dblib.c:3060):dbdata(0x66c3f0, 200)
13:48:18.437335 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 200)
13:48:18.437342 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec798)
13:48:18.437349 16541 (dblib.c:3060):dbdata(0x66c3f0, 201)
13:48:18.437356 16541 (dblib.c:2741):dbcoltype(0x66c3f0, 201)
13:48:18.437363 16541 (dblib.c:5511):dbdatecrack(0x66c3f0, 0x7fff290f0920, 0x6ec7a0)
13:48:18.437370 16541 (dblib.c:1948):dbnextrow(0x66c3f0)
13:48:18.437377 16541 (dblib.c:1961):dbnextrow() dbresults_state = 2 (_DB_RES_RESULTSET_ROWS)
13:48:18.437384 16541 (token.c:495):tds_process_tokens(0x654d60, 0x7fff290f096c, (nil), 0x1508)
13:48:18.437392 16541 (util.c:162):Changed query state from PENDING to READING
13:48:18.437399 16541 (token.c:510):processing result tokens. marker is fd(DONE)
13:48:18.437406 16541 (token.c:2201):tds_process_end: more_results = 0
was_cancelled = 0
error = 0
done_count_valid = 1
13:48:18.437414 16541 (token.c:2217):tds_process_end() state set to TDS_IDLE
13:48:18.437420 16541 (util.c:162):Changed query state from READING to IDLE
13:48:18.437427 16541 (token.c:2232): rows_affected = 1
13:48:18.437434 16541 (util.c:110):logic error: cannot change query state from IDLE to PENDING
13:48:18.437441 16541 (dblib.c:2030):leaving dbnextrow() returning NO_MORE_ROWS
13:48:18.437448 16541 (dblib.c:2678):dbcount(0x66c3f0)
13:48:18.437455 16541 (dblib.c:1599):dbresults(0x66c3f0)
13:48:18.437462 16541 (dblib.c:1608):dbresults: dbresults_state is 3 (_DB_RES_NEXT_RESULT)
13:48:18.437469 16541 (token.c:495):tds_process_tokens(0x654d60, 0x7fff290f0964, 0x7fff290f0960, 0x6914)
13:48:18.437476 16541 (token.c:498):tds_process_tokens() state is COMPLETED
13:48:18.437483 16541 (dblib.c:1630):dbresults() tds_process_tokens returned 2 (TDS_NO_MORE_RESULTS),
result_type TDS_DONE_RESULT
13:48:18.437490 16541 (dblib.c:1587):dbresults returning 2 (NO_MORE_RESULTS)
lxra05:/usr/local/etc #