small data needed - suggestions?

B

Bobby Edward

I am doing a funeral home page (depressing huh?) :)

They want an obituary page where people can post comments. So, in my db I
have 2 tables (1 to many relationship)...
TABLE1: Obituary (persons info)
TABLE2: ObitComments ("many" table - comments)

There would be an admin page to approve or reject comments, manage
obituaries, etc...

My ISP only allows me a certain # of SQL Server dbs. I would hate to
"waste" one on a small project like this. Any suggestions? How would you
handle it? SQL Express is not supported either.

Thanks!
 
S

sloan

1 per minute??

Just not an overloaded amount of simutaneous writes.

Since this is a web app (I'm assuming)...then the web server talking to an
Access(JET) database locally..is not that big of a deal.

Access can handle a light load of 5-10 simutanaeous users in my opinion.

Your obituary thing...if you have 1 db per deceased person....would be fine
for this imho.

....
 
M

Mark Rae [MVP]

My ISP only allows me a certain # of SQL Server dbs. I would hate to
"waste" one on a small project like this. Any suggestions? How would you
handle it? SQL Express is not supported either.

In addition to Sloan's comments, what's stopping you creating the two tables
you suggest in an existing SQL Server database...?
 
B

Bobby Edward

To be honest, I like the simplicity of having the data in 1 file, an mdb.
It's easy to backup and move around. I'm a small fry developer. :)
 
B

Bobby Edward

1 db per deceased person? Or 1 db record?

sloan said:
1 per minute??

Just not an overloaded amount of simutaneous writes.

Since this is a web app (I'm assuming)...then the web server talking to an
Access(JET) database locally..is not that big of a deal.

Access can handle a light load of 5-10 simutanaeous users in my opinion.

Your obituary thing...if you have 1 db per deceased person....would be
fine for this imho.

...
 
S

sloan

Sorry, I mispoke.

One db per person would be too much.

Look at my blog...and you could easily start with 1 db.
And then use the Factory method to even use multiple Access(Jet) database
files (.mdb).
Like use the key system, and base it on the person's first letter of their
last name.

THe factory pattern gives you options.

A-I (obituarydb1.mdb)
J-R(obituarydb2.mdb)
S-Z(obituarydb3.mdb)

or start with 1 .mdb and only go to N .mdb's if you need to.
 
B

Bobby Edward

hmmm i never heard of the factory method - i must read up on it - THANKS
SLOAN!!!!
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,770
Messages
2,569,583
Members
45,074
Latest member
StanleyFra

Latest Threads

Top