[comp.databases] LAN Database Server products

rich@syntrex.uucp (Rich Birnbaum) (04/21/88)

	I am looking for an RDBMS containing a dedicated Database Server.  
The server would receive SQL commands from workstations, process them, and
send any results back to the workstation.  The server is a separate
machine (PC/AT) on the LAN.  Our LAN of choice is Banyan VINES so the database
should work on VINES.  I have already spoken with Gupta Technologies
in Menlo Park, CA.  They have such a product but it uses NETBIOS to
communicate.  I would prefer a product that uses TCP/IP / Sockets.

	Oracle is working on such a product but it is not yet available.

	ANY help would be most appreciated.

mh@wlbr.EATON.COM (Mike Hoegeman) (04/22/88)

In article <281@syntrex.uucp> rich@syntrex.uucp (Rich Birnbaum) writes:
>
>	I am looking for an RDBMS containing a dedicated Database Server.  
>The server would receive SQL commands from workstations, process them, and
>send any results back to the workstation.  The server is a separate
>machine (PC/AT) on the LAN.  Our LAN of choice is Banyan VINES so the database
>should work on VINES.  I have already spoken with Gupta Technologies
>in Menlo Park, CA.  They have such a product but it uses NETBIOS to
>communicate.  I would prefer a product that uses TCP/IP / Sockets.
>	Oracle is working on such a product but it is not yet available.
>	ANY help would be most appreciated.

We use sun's with sql*net (oracle's network interface which uses tcp)
here's some notes about it that you might want to know about it if you decide
to look into the oracle product.

- each connection chomps up about .7 meg of memory on the server
  (not sure what you'd use on an AT but it's probably something similar).

- you cannot use long column types across the network
  (you can cast a long into a char field however.) this means the biggest
  column you can ever get across the net is 240 characters.



our sun's have 8 meg. of memory in them so the first note does'nt
really affect us too much. 

all in all we're pretty happy with sql*net 
hope this is of some help to you.


-mike