2017-02-03 64 views
1

不知道为什么......freetds的不是从任何配置文件确认版本

我在/etc/freetds/freetds.conf相同的conf文件,在/usr/share/freetds/freetds.conf和〜 /.freetds.conf

# $Id: freetds.conf,v 1.12 2007/12/25 06:02:36 jklowden Exp $ 
# 
# This file is installed by FreeTDS if no file by the same 
# name is found in the installation directory. 
# 
# For information about the layout of this file and its settings, 
# see the freetds.conf manpage "man freetds.conf". 

# Global settings are overridden by those in a database 
# server specific section 
[global] 
     # TDS protocol version 
    tds version = 7.4 

    # Whether to write a TDSDUMP file for diagnostic purposes 
    # (setting this to /tmp is insecure on a multi-user system) 
; dump file = /tmp/freetds.log 
; debug flags = 0xffff 

    # Command and connection timeouts 
; timeout = 10 
; connect timeout = 10 

    # If you get out-of-memory errors, it may mean that your client 
    # is trying to allocate a huge buffer for a TEXT field. 
    # Try setting 'text size' to a more reasonable limit 
    text size = 64512 

# A typical Sybase server 
[egServer50] 
    host = symachine.domain.com 
    port = 5000 
    tds version = 5.0 

# A typical Microsoft server 
[egServer70] 
    host = ntmachine.domain.com 
    port = 1433 
    tds version = 7.0 

[cdcods] 
    host = *my_host* 
    port = 1433 
    tds version = 7.4 

my_host转变是我的实际MSSQL主机。我连接到MSSQL 2012,因此我认为7.4是正确的。

我使用的命令是$tsql -S cdcods -U 'my_domain\my_user' -P 'my_pass'

这里的日志:

log.c:196:Starting log file for FreeTDS 0.91 
     on 2017-02-03 13:20:19 with debug flags 0x4fff. 
iconv.c:330:tds_iconv_open(0x15749f0, UTF-8) 
iconv.c:187:local name for ISO-8859-1 is ISO-8859-1 
iconv.c:187:local name for UTF-8 is UTF-8 
iconv.c:187:local name for UCS-2LE is UCS-2LE 
iconv.c:187:local name for UCS-2BE is UCS-2BE 
iconv.c:349:setting up conversions for client charset "UTF-8" 
iconv.c:351:preparing iconv for "UTF-8" <-> "UCS-2LE" conversion 
iconv.c:391:preparing iconv for "ISO-8859-1" <-> "ISO-8859-1" conversion 
iconv.c:394:tds_iconv_open: done 
net.c:207:Connecting to *my_host* port 1433 (TDS version 4.2) 
net.c:272:tds_open_socket: connect(2) returned "Operation now in progress" 
net.c:312:tds_open_socket() succeeded 
util.c:156:Changed query state from DEAD to IDLE 
login.c:572:NT login not support using TDS 4.x or 5.0 
util.c:156:Changed query state from IDLE to DEAD 
util.c:331:tdserror(0x15749c0, 0x15749f0, 20002, 0) 
util.c:361:tdserror: client library returned TDS_INT_CANCEL(2) 
util.c:384:tdserror: returning TDS_INT_CANCEL(2) 
mem.c:615:tds_free_all_results() 
+0

执行'tsql -C'应该指出它所在的'freetds.conf'文件的位置。做到这一点,然后摆脱所有其他'freetds.conf'文件,以避免混淆。如果'tsql'正在查看两个'freetds.conf'文件中的一个,请尝试删除其中的所有无关内容,例如Sybase和Microsoft服务器的示例。 –

回答

2

您正在运行freetds的v0.91不支持TDS 7.4版。 IIRC最高支持7.2。尝试使用7.2版本。

如果你想使用TDS版本7.3,你至少需要FreeTDS 0.95,如果你想要7.4,你需要FreeTDS 1.0。

我有一个公关来澄清这一点,但它没有被推送到文档。

祝你好运!

+1

我从来没有一个程序配置make和make install之前没有任何问题。做得很好的freetds团队,做得很好。 – Scott

+0

这对我来说没有任何影响7 –

+0

CentOS 7可以“安装”FreeTDS 0.95并通过EPEL支持最高达TDS 7.3版本。这里有一个连接到安装有FreeTDS的工作Vagrant CentOS 7盒子的链接:https://github.com/wharton/python-vagrant-centos7如果你遇到问题,可以试一下你试过的东西和你的配置的细节我们将很乐意提供帮助! – FlipperPA

相关问题