For the most part, 20 users on a file server should not pose any
problem. However, server memory and cache makes a huge difference.
Other functions such as email, print server, etc. will consume some
resouces, but again, depending on how all is set up, for 20 users,
there should not be an issue. (This is assuming a true server with
adequate backplane etc. and not just a high powered desktop..... a big
difference)
Using two network cards can be tricky and is regulated by your OS,
Bios and switch. Your switch has to be capable for dual input. To my
knowledge, one server and one switch would not give you much benefit.
A managed switch will help in high traffic performance as well.
Before I would try dual NICs, I would go :
1- True server
2- Plenty of memory-5gig+
3-Managed switch
4-Drive type and spin speed. Some Raid setups are slow on heavy
database applications. Mirrored systems can crawl
Last but not least, make triple sure your AV is setup to exclude your
compiled apps and all database files on active protection. This will
really dog down performance. Scan them at lunch, night etc if you must.
My two cents worth
Bob Thompson
LaPorte, IN
219-363-7441
Sent from my iPod
On Sep 1, 2010, at 3:18 PM, "jan johansen" <[email protected]>
wrote:
Group,
The network I have isn't bad i.e. 20 machines using 1GB cards, but
the constricting factor seems to be the one connection at the server.
Has anyone tried having more than one network card in a server?
Also are there any thoughts on splitting duties on a network like
email server
domain controller
linux file server
server 2008 server
Just curious.
Jan
-----Original Message-----
From: "Peter J Ryan" <[email protected]>
To: [email protected] (RBASE-L Mailing List)
Date: Wed, 1 Sep 2010 16:07:42 -0400
Subject: [RBASE-L] - Re: Data Type and Display Format
Thank you for the help. Everday is a learning experience with R Base!
-----Original Message-----
From: [email protected] [mailto:[email protected]] On Behalf Of A.
Razzak
Memon
Sent: Wednesday, September 01, 2010 2:30 PM
To: RBASE-L Mailing List
Subject: [RBASE-L] - Re: Data Type and Display Format
At 02:16 PM 9/1/2010, Peter J Ryan wrote:
>I am using Turbo 8.
>In a report I have a Rich Text Object (letter or memo) with an insert
>currency field for example $300.00 I wish to also display the words
>THREE HUNDRED and xx/100 DOLLARS.
>What does the display format of the currency field get set to?
Peter,
In order to achieve your goal, while in Report Designer, define a TEXT
variable with the following expression:
vCurrencyText = (DWRD(currencycolumnname))
Then, you can insert the vCurrencyText variable in Rich Text Object
accordingly.
You may further customize the expression as follows:
vCurrencyText = (ICAP2(DWRD(currencycolumnname)))
OR
vCurrencyText = (LUC(DWRD(currencycolumnname)))
Have fun!
Very Best R:egards,
Razzak.