Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations biv343 on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Newbie Question

Status
Not open for further replies.

walks

Technical User
May 7, 2001
203
CA
I got a txt file from someone who designed me an SQL database

(# phpMyAdmin SQL Dump
# version 2.5.3
# #
# Host: localhost
# Generation Time: Apr 10, 2004 at 04:14 PM
# Server version: 4.0.11
# PHP Version: 4.3.1
#
# Database : `dda_db`
#

# --------------------------------------------------------

#
# Table structure for table `about`
#

DROP TABLE IF EXISTS `about`;
CREATE TABLE `about` (
`id_about` int(11) NOT NULL auto_increment,
`paragraph1` longtext NOT NULL,
`paragraph2` longtext NOT NULL,
`paragraph3` longtext NOT NULL,
`paragraph4` longtext NOT NULL,
PRIMARY KEY (`id_about`)
) TYPE=MyISAM AUTO_INCREMENT=1 ;

# --------------------------------------------------------)

That along with a lot more, how do I got about getting this ready for work, is there a way I can just copy and paste all the info from the txt file into a program and it will create the database?
 
you can load it in SQL Analyzer and execute the scripts there



___________________________________________________________________

The answer to your ??'s may be closer then you think.
Check out Tek-Tips knowledge bank by clicking the FAQ link at the top of the page faq333-3811
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top