cherri 0 Report post Posted April 21, 2006 I need to make a database too... can someone please make one for me, and mail it to p.meiring@iinet.net.au name: data password: Geografix_43 Share this post Link to post Share on other sites
Houdini 0 Report post Posted April 21, 2006 Sorry you will have to create the database your self there is no way to email a database to some one, the database lives on a Relational Database Management System like MySQL or Postgre or mssql and more. You need to have acces to that server and the privlidges to use said server. If you have a database server and the proper privlidges then maybe some one can aid you in doing it. First you need to know how you are going to sturucture the database and all but as far as creating a database the query is quite simple it is basically CREATE DATABASE databaseName where the italisized databaseName is what you want to call the database. Just having the newly created database though is not very useful because well...it has no data, the data is stored into tables within the database so that is where planning and organization of your database come into play. You need to be more specific and detailed in your question about creating a database. What kind of information are you going to be storing, how you plan to use this information. Do you want to store inventory information, or employee data, or medical data are some of the thing that need to be known before you just start building a database and the tables and data types required to have a functional RDBMS. Share this post Link to post Share on other sites