P
ps56k
I have what appears to be a plain text backup file
from Wordpress used on a now closed team website.
The website we used for one of our teams
was not renewed last year, and is gone.
I have all the files, including what appears to be a backup file
of the Wordpress blog used to maintain the website.
A snipet is included below.
How can I use this backup file to load an MS Access database ?
It appears to be a list of SQL commands
with the actual text data embedded within the stream.
tnx -
# WordPress MySQL database backup
#
# Generated: Saturday 14. June 2008 22:12 EDT
# Hostname: xyz
# Database: `xyz_wordpress`
# --------------------------------------------------------
# --------------------------------------------------------
# Table: `wp_categories`
# --------------------------------------------------------
#
# Delete any existing table `wp_categories`
#
DROP TABLE IF EXISTS `wp_categories`;
#
# Table structure of table `wp_categories`
#
CREATE TABLE `wp_categories` (
`cat_ID` bigint(20) NOT NULL auto_increment,
`cat_name` varchar(55) NOT NULL default '',
`category_nicename` varchar(200) NOT NULL default '',
`category_description` longtext NOT NULL,
`category_parent` bigint(20) NOT NULL default '0',
`category_count` bigint(20) NOT NULL default '0',
`link_count` bigint(20) NOT NULL default '0',
`posts_private` tinyint(1) NOT NULL default '0',
`links_private` tinyint(1) NOT NULL default '0',
PRIMARY KEY (`cat_ID`),
KEY `category_nicename` (`category_nicename`)
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=latin1 ;
#
# Data contents of table `wp_categories`
#
INSERT INTO `wp_categories` VALUES (1, 'News', 'news', '', 0, 105, 0, 0, 0)
;
INSERT INTO `wp_categories` VALUES (2, 'Links', 'links', '', 0, 0, 17, 0, 0)
;
INSERT INTO `wp_categories` VALUES (3, 'Calendar', 'calendar', '', 0, 1, 0,
0, 0) ;
#
# End of data contents of table `wp_categories`
# --------------------------------------------------------
from Wordpress used on a now closed team website.
The website we used for one of our teams
was not renewed last year, and is gone.
I have all the files, including what appears to be a backup file
of the Wordpress blog used to maintain the website.
A snipet is included below.
How can I use this backup file to load an MS Access database ?
It appears to be a list of SQL commands
with the actual text data embedded within the stream.
tnx -
# WordPress MySQL database backup
#
# Generated: Saturday 14. June 2008 22:12 EDT
# Hostname: xyz
# Database: `xyz_wordpress`
# --------------------------------------------------------
# --------------------------------------------------------
# Table: `wp_categories`
# --------------------------------------------------------
#
# Delete any existing table `wp_categories`
#
DROP TABLE IF EXISTS `wp_categories`;
#
# Table structure of table `wp_categories`
#
CREATE TABLE `wp_categories` (
`cat_ID` bigint(20) NOT NULL auto_increment,
`cat_name` varchar(55) NOT NULL default '',
`category_nicename` varchar(200) NOT NULL default '',
`category_description` longtext NOT NULL,
`category_parent` bigint(20) NOT NULL default '0',
`category_count` bigint(20) NOT NULL default '0',
`link_count` bigint(20) NOT NULL default '0',
`posts_private` tinyint(1) NOT NULL default '0',
`links_private` tinyint(1) NOT NULL default '0',
PRIMARY KEY (`cat_ID`),
KEY `category_nicename` (`category_nicename`)
) ENGINE=MyISAM AUTO_INCREMENT=4 DEFAULT CHARSET=latin1 ;
#
# Data contents of table `wp_categories`
#
INSERT INTO `wp_categories` VALUES (1, 'News', 'news', '', 0, 105, 0, 0, 0)
;
INSERT INTO `wp_categories` VALUES (2, 'Links', 'links', '', 0, 0, 17, 0, 0)
;
INSERT INTO `wp_categories` VALUES (3, 'Calendar', 'calendar', '', 0, 1, 0,
0, 0) ;
#
# End of data contents of table `wp_categories`
# --------------------------------------------------------