Stay informed about any major changes. Click here to subscribe
How to create a database
BaseNow can create SQL Server and Access databases using Create
Database Wizard. The video demonstrates how to create a database that
you will later use as a mailing list. The database contains only one table
with Name, E-mail, and ID fields. ID is a primary
key in the table.
When the program creates a database, it is a good idea to create an
index for the E-mail column. Thus, the program will search through it
and remove duplicates
faster, and generally speaking, almost all operations with the data from
that column will be much faster. The exception is that adding new entries
into the table will be somewhat slower due to index updating. To see how
to create an index, click
here.