Make Revenue With Your Own Banner Management System - Saving the banners (Page 3 of 11 )
The next step involves the use of SQL Server 2000 Enterprise manager to create our tables, and an ASP script to add our banner to the database. Start off by firing up Enterprise Manager (Start -> Programs -> Microsoft SQL Server -> Enterprise Manager). This is the program that lets us create our database and tables.
We want to create a new database. Call the new database myAdStuff. Once you've created the database, we'll need to create just one simple table named banners. The fields for this table are shown below (note that the bannerId field is an auto incrementing identity field, so make sure you set its identity property to "yes" and make it a primary key.
Now that we've created our database and our banners table, we can close SQL Server Enterprise manager and start on the ASP code to add a banner to our database.