473,386 Members | 1,798 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,386 software developers and data experts.

Naming The Database Server(s)?

Hi.

Could somebody kindly tell me what conventions and best practices are
used when naming a database server (not the database itself) and/or a
cluster of database servers?

thanks!

Apr 2 '07 #1
5 3312
pbd22 wrote:
Could somebody kindly tell me what conventions and best practices are
used when naming a database server (not the database itself) and/or a
cluster of database servers?
http://www.ietf.org/rfc/rfc1178.txt
http://namingschemes.com/
Apr 2 '07 #2
On Apr 2, 10:59 am, Ed Murphy <emurph...@socal.rr.comwrote:
pbd22 wrote:
Could somebody kindly tell me what conventions and best practices are
used when naming a database server (not the database itself) and/or a
cluster of database servers?

http://www.ietf.org/rfc/rfc1178.txth...ngschemes.com/
Hi.

Thanks for that.

I have some follow-up questions.

lets say that a database server has seven hard drives.
how would i handle the namespace? so, for example:

for www.somesite.com

would the database server and associated drives
look something like this:

database server:
data.somesite.com

various drives on the database server:
db1.data.somesite.com, db2.data.somesite.com, db3.data.somesite.com,
and so on...

anybody out there build a database cluster before? how
did you handle naming?

finally, I am noticing that really big sites such as yahoo and hotmail
use garbage in their namespace. So, for example, this is hotmail:

by138w.bay138.mail.live.com

is there an advantage to using a less obvious naming convention?

responses appreciated!

Apr 2 '07 #3
>Could somebody kindly tell me what conventions and best practices are
used when naming a database server (not the database itself) and/or a
cluster of database servers? <<

The ISO-11179 Standards are for data elements names. No help there.
I guess you would have to use the prinicple of "least surprise" --
i.e. can someone in the field understand/guess the name used?

I know that geeks pick a theme like a TV show (Star Trek, South Park,
etc.). I worked at a shop that used the ethnic origins of the
personnel -- until I got there (nobody could spell "Czechoslovakia"
consistently, even me!)

Apr 3 '07 #4
On Apr 3, 11:27 am, "--CELKO--" <jcelko...@earthlink.netwrote:
Could somebody kindly tell me what conventions and best practices are

used when naming a database server (not the database itself) and/or a
cluster of database servers? <<

The ISO-11179 Standards are for data elements names. No help there.
I guess you would have to use the prinicple of "least surprise" --
i.e. can someone in the field understand/guess the name used?

I know that geeks pick a theme like a TV show (Star Trek, South Park,
etc.). I worked at a shop that used the ethnic origins of the
personnel -- until I got there (nobody could spell "Czechoslovakia"
consistently, even me!)
ok, thanks.
up until now i have been using musical compositions such
as "aria", "ronodo", "requiem", "cannon", "fugue", and so on.
but, i was afraid that this would be publically viewable so,
thought i would post. are database server names viewable
to the public? I am guessing no. So, if that is true, can you
tell me what server names "are" viewable to the public when
creating a medium-sized web site.

for example, in the example provided above:
by138w.bay138.mail.live.com

what kinds of servers would the following be:
by138w.bay138

sorry, i am just trying to get my mind wrapped around
namespaces.

thanks again!

Apr 3 '07 #5
"pbd22" <du*****@gmail.comwrote in message
news:11**********************@l77g2000hsb.googlegr oups.com...
for www.somesite.com

would the database server and associated drives
look something like this:

database server:
data.somesite.com
I tend to NOT do this, if only because if you have a "hole" in security it
makes things a bit easier to discover.

(Granted, security through obscurity is not a great idea, but at times it
can help a bit.)

>
various drives on the database server:
db1.data.somesite.com, db2.data.somesite.com, db3.data.somesite.com,
and so on...

anybody out there build a database cluster before? how
did you handle naming?
Database cluster named: FOO
Server1: FOO1
Server2: FOO2
ServerN: FOON

>
finally, I am noticing that really big sites such as yahoo and hotmail
use garbage in their namespace. So, for example, this is hotmail:

by138w.bay138.mail.live.com
That's server 138 in their bay area datacenter is my guess.
>
is there an advantage to using a less obvious naming convention?

responses appreciated!


--
Greg Moore
SQL Server DBA Consulting Remote and Onsite available!
Email: sql (at) greenms.com http://www.greenms.com/sqlserver.html
Apr 16 '07 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

5
by: Bill Willyerd | last post by:
I have been looking for some documentation that would support or reject my opinion on Production -vs- Development naming conventions. I believe that each environment should be housed on separate...
38
by: news.microsoft.com | last post by:
Greetings, I am posting this message to both the SQL Server and C# news groups because this inquiry is more of a theoretical question that applies to both database and code naming conventions. ...
8
by: Lance | last post by:
I've been teaching myself C# for a few months now and I have a concept problem. I know how to instantiate an object from a class I’ve created, but now I want to retrieve and store data in a...
8
by: Jason | last post by:
In my ASP.NET 1.1 solutions, I created several web projects and compiled them each into an assembly. The assembly names reflected the functionality of the feature (Membership.dll, Dues.dll, etc)....
11
by: MP | last post by:
Hi, Coming from a vb6 background I am accustomed to prefixing variable names to indicate their usage. Now just beginning to try to learn database stuff I've been lurking here and working on my...
5
by: newtophp2000 | last post by:
Here is a simple question. I am having difficulty accessing books online at Microsoft so I thought I would ask here. What is the standard naming syntax for Sqlserver 2005? Assuming I had the...
9
by: BillCo | last post by:
I'm coming from a MS Access background and so I'm very used to and comfortable with the hungarian (Leszynski et al) naming conventions. However, I'm getting started into my first SQL Server...
2
by: vital | last post by:
Hi, I am doing a Project designing and development of all the three tiers(Presentation, Business and Database). In the Presentation tier are there any patterns should be followed. I want to...
1
by: Philipp Post | last post by:
Marcello, Not a big surprise as naming conventions have a lot to do with personal prefernces. There are a lot of threads in comp.databases and the other database groups. Just do a search for...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.