Results 1 to 22 of 22

Thread: SQL Server protocol

  1. #1

    Thread Starter
    I'm about to be a PowerPoster! mendhak's Avatar
    Join Date
    Feb 2002
    Location
    Ulaan Baator GooGoo: Frog
    Posts
    38,170

    SQL Server protocol

    Is it TCP/IP? or some propriety extension from M$ on the very same? Or other?

  2. #2

    Thread Starter
    I'm about to be a PowerPoster! mendhak's Avatar
    Join Date
    Feb 2002
    Location
    Ulaan Baator GooGoo: Frog
    Posts
    38,170
    It's such a simple question!! How could u not know this??

    What protocol! Is it TCP/IP?

  3. #3
    PowerPoster cafeenman's Avatar
    Join Date
    Mar 2002
    Location
    Florida
    Posts
    2,819
    Yes it might or might not be.

  4. #4

    Thread Starter
    I'm about to be a PowerPoster! mendhak's Avatar
    Join Date
    Feb 2002
    Location
    Ulaan Baator GooGoo: Frog
    Posts
    38,170
    That may have been the single most useful answer I've ever received in VBF. Thanks.

    Anyone else got any 'helpful' answers?

  5. #5

    Thread Starter
    I'm about to be a PowerPoster! mendhak's Avatar
    Join Date
    Feb 2002
    Location
    Ulaan Baator GooGoo: Frog
    Posts
    38,170
    Boss: So have you figured out the problem yet?
    Me: Yeah, SQL Server might or might not use TCP/IP. So that might or might not be the problem.
    Boss: SO you're saying we might or might not even have a problem?
    Me: Maybe.

  6. #6
    PowerPoster cafeenman's Avatar
    Join Date
    Mar 2002
    Location
    Florida
    Posts
    2,819
    Originally posted by mendhak
    Exactly. That's what I said. Which part aren't you getting?

  7. #7

    Thread Starter
    I'm about to be a PowerPoster! mendhak's Avatar
    Join Date
    Feb 2002
    Location
    Ulaan Baator GooGoo: Frog
    Posts
    38,170
    Originally posted by cafeenman

    Which part aren't you getting?
    Uhm... the answer.

  8. #8
    PowerPoster cafeenman's Avatar
    Join Date
    Mar 2002
    Location
    Florida
    Posts
    2,819
    Originally posted by mendhak


    Uhm... the answer.
    Oh, well, that's the part I don't know, so I can't help you any more than I have already.

  9. #9

    Thread Starter
    I'm about to be a PowerPoster! mendhak's Avatar
    Join Date
    Feb 2002
    Location
    Ulaan Baator GooGoo: Frog
    Posts
    38,170
    You could clear out your inbox, maybe.

  10. #10
    PowerPoster cafeenman's Avatar
    Join Date
    Mar 2002
    Location
    Florida
    Posts
    2,819
    Originally posted by mendhak
    You could clear out your inbox, maybe.
    but my web host doesn't support Front Page extensions.























    Chit Chat here we come.

  11. #11

    Thread Starter
    I'm about to be a PowerPoster! mendhak's Avatar
    Join Date
    Feb 2002
    Location
    Ulaan Baator GooGoo: Frog
    Posts
    38,170
    Originally posted by cafeenman

    but my web host doesn't support Front Page extensions.























    Chit Chat here we come.
    Those camel riding incestuous bastards! Oh, and chit chat has arrived. In the words of the great Flustor,

    Yaaaaay!

  12. #12

    Thread Starter
    I'm about to be a PowerPoster! mendhak's Avatar
    Join Date
    Feb 2002
    Location
    Ulaan Baator GooGoo: Frog
    Posts
    38,170
    574 views!!!!!

    OK... ignore this one. I've posted another thread.

  13. #13
    Fanatic Member Slaine's Avatar
    Join Date
    Jul 2002
    Posts
    641
    Take your pick froggy:

    Martin J Wallace (Slaine)

  14. #14
    PowerPoster cafeenman's Avatar
    Join Date
    Mar 2002
    Location
    Florida
    Posts
    2,819
    SEE???? I was right!!!

    You can have TCP/IP or
    Nightwalker Link or
    Named Popes or
    Barnyard vines.

    Isn't that what I told you in my first post???? Pay attention frog boy!!!!!!!

  15. #15

    Thread Starter
    I'm about to be a PowerPoster! mendhak's Avatar
    Join Date
    Feb 2002
    Location
    Ulaan Baator GooGoo: Frog
    Posts
    38,170
    Originally posted by Slaine
    Take your pick froggy:

    Where where where where????

    You just showed me today's Holy Grail!

  16. #16
    Fanatic Member RSINGH's Avatar
    Join Date
    May 2001
    Location
    London
    Posts
    522
    It should be under your SQL Server menu under 'Client Network Utility'.
    The liver is bad. It must be punished.

  17. #17

    Thread Starter
    I'm about to be a PowerPoster! mendhak's Avatar
    Join Date
    Feb 2002
    Location
    Ulaan Baator GooGoo: Frog
    Posts
    38,170
    And uhm... how do I redirect you guys to here:

    http://www.vbforums.com/showthread.p...hreadid=177886

    Uhm... click it.

  18. #18

    Thread Starter
    I'm about to be a PowerPoster! mendhak's Avatar
    Join Date
    Feb 2002
    Location
    Ulaan Baator GooGoo: Frog
    Posts
    38,170
    Originally posted by RSINGH
    It should be under your SQL Server menu under 'Client Network Utility'.
    thanks ranj.

    and everyone.

    and profuse thank yous to cafeenman. (ad infinitium)

  19. #19
    old fart Frans C's Avatar
    Join Date
    Oct 1999
    Location
    the Netherlands
    Posts
    2,926
    And if you want to use a specific protocol for your connection, you can specify it in the connection string under "Network Library=xxxxxx"

    Now the tricky part, the value for xxxxxx is the name of the dll for the network library, without the extension. You can find the dll's to use in the client network utility.

    eg
    strConn = "Provider=SQLOLEDB.1;Integrated Security=SSPI;Persist Security Info=False;Initial Catalog=Northwind;Data Source=test_sql;Network Library=dbmssocn"

    will connect using TCP/IP

    Of course both client and server must support the protocol.

  20. #20

    Thread Starter
    I'm about to be a PowerPoster! mendhak's Avatar
    Join Date
    Feb 2002
    Location
    Ulaan Baator GooGoo: Frog
    Posts
    38,170
    Originally posted by Frans C
    And if you want to use a specific protocol for your connection, you can specify it in the connection string under "Network Library=xxxxxx"

    Now the tricky part, the value for xxxxxx is the name of the dll for the network library, without the extension. You can find the dll's to use in the client network utility.

    eg
    strConn = "Provider=SQLOLEDB.1;Integrated Security=SSPI;Persist Security Info=False;Initial Catalog=Northwind;Data Source=test_sql;Network Library=dbmssocn"

    will connect using TCP/IP

    Of course both client and server must support the protocol.
    Actually, I doubt I'll be doing that. I'm working on a heterogenous network, a sad mixture of Novell and Windows, so I suppose I'll have to configure this at the server itself.

  21. #21

    Thread Starter
    I'm about to be a PowerPoster! mendhak's Avatar
    Join Date
    Feb 2002
    Location
    Ulaan Baator GooGoo: Frog
    Posts
    38,170
    What the **** is going on here? 990 views? DB FREAKY

  22. #22
    old fart Frans C's Avatar
    Join Date
    Oct 1999
    Location
    the Netherlands
    Posts
    2,926
    Yep, that would be best.
    I only used it in an NT only network, with multiple domains, to ensure TCP/IP was used, and not Named Pipes. This to avoid problems when the server was in a different domain then the user logged on to.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width