if it's an sql, just open it in a text editor. it should be nothing more than sql syntax. possibly a stored procedure.
CREATE TABLE `articles` (
`id` int(11) NOT NULL auto_increment,
`title` varchar(255) NOT NULL default '',
`subtitle` varchar(255) NOT NULL default '',
`content` longtext NOT NULL,
`active` tinyint(4) default '0',
PRIMARY KEY (`id`)
) ENGINE=MyISAM;