Advertisement
Guest User

serverfault.com/questions/661465

a guest
Jan 22nd, 2015
298
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. #   $Id: freetds.conf,v 1.12 2007/12/25 06:02:36 jklowden Exp $
  2. #
  3. # This file is installed by FreeTDS if no file by the same
  4. # name is found in the installation directory.  
  5. #
  6. # For information about the layout of this file and its settings,
  7. # see the freetds.conf manpage "man freetds.conf".  
  8.  
  9. # Global settings are overridden by those in a database
  10. # server specific section
  11. [global]
  12.         # TDS protocol version
  13. ;   tds version = 4.2
  14.     tds version = 8.0
  15.         client charset = UTF-8
  16.  
  17.     # Whether to write a TDSDUMP file for diagnostic purposes
  18.     # (setting this to /tmp is insecure on a multi-user system)
  19. ;   dump file = /tmp/freetds.log
  20. ;   debug flags = 0xffff
  21.  
  22.     # Command and connection timeouts
  23. ;   timeout = 10
  24. ;   connect timeout = 10
  25.    
  26.     # If you get out-of-memory errors, it may mean that your client
  27.     # is trying to allocate a huge buffer for a TEXT field.  
  28.     # Try setting 'text size' to a more reasonable limit
  29.     text size = 64512
  30.  
  31. # A typical Sybase server
  32. [egServer50]
  33.     host = symachine.domain.com
  34.     port = 5000
  35.     tds version = 5.0
  36.  
  37. # A typical Microsoft server
  38. [egServer70]
  39.     host = ntmachine.domain.com
  40.     port = 1433
  41.     tds version = 7.0
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement