need to know how to make table template

T

trent2275

I need to know if anyone can tell me in simple language how to make a template for tables in my database. I am making a database and have about 5 tables that I need to replicate over and over with different information inside each table (like changing dates, check numbers, dollar amounts, etc.)
 
G

Guest

Just make the first table, then copy as many as you need.
-----Original Message-----
I need to know if anyone can tell me in simple language
how to make a template for tables in my database. I am
making a database and have about 5 tables that I need to
replicate over and over with different information inside
each table (like changing dates, check numbers, dollar
amounts, etc.)
 
K

Kevin3NF

Sounds like you may actually need a different setup/design.

Having mutiple tables with the exact same structure just screams
"normalize!"

--
Kevin Hill
President
3NF Consulting

www.3nf-inc.com/NewsGroups.htm

trent2275 said:
I need to know if anyone can tell me in simple language how to make a
template for tables in my database. I am making a database and have about 5
tables that I need to replicate over and over with different information
inside each table (like changing dates, check numbers, dollar amounts, etc.)
 
J

John Vinson

I need to know if anyone can tell me in simple language how to make a template for tables in my database. I am making a database and have about 5 tables that I need to replicate over and over with different information inside each table (like changing dates, check numbers, dollar amounts, etc.)

I agree with Kevin. Storing data in tablenames is EXTREMELY BAD DESIGN
and will get you into endless trouble! If you have different
categories of data, just use ONE set of tables with a category field
to distinguish them, rather than creating new tables!
 

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

Top