救救我吧,不然惨不忍睹。一个数据库文件不知道是什么数据库做的,想导出里面数据(100分)

T

TomZhao

Unregistered / Unconfirmed
GUEST, unregistred user!
[?]不然惨不忍睹。一个数据库文件不知道是什么数据库做的,想导出里面数据
安装系统时装入了一个
instcat.sql文件
里面有些在isql下执行脚本开头部分如下:
/*
** INSTCAT.SQL
** Installs catalog stored procedures on the Microsoft SQL Server.
** Copyright 1992-1999, Microsoft Corp. All rights reserved.
*/

/*
NOTE: you MUST change the last row inserted into spt_server_info
to be version number of this file. the convention is j.nn.bbb, where
j is the major version number ('7' now), nn is the minor version number
('00' now), and bbb is the build number.
insert into spt_server_info
values (500, 'SYS_SPROC_VERSION', '7.00.bbb')
*/

/****************************************************************************/
/* This portion sets up the ability to perform all the functions in this */
/* script */
/****************************************************************************/
go
use master
go
dump tran master with no_log
go

set quoted_identifier on
go

if (exists (select * from sysobjects
where name = 'sp_configure' and type = 'P '))
begin
execute sp_configure 'update',1
end
reconfigure with override
go

exec sp_MS_upd_sysobj_category 1 /*Capture datetime for use below.*/

go

/*
** If old versions of tables exist, drop them.
*/
if (exists (select * from sysobjects
where name = 'MSdatatype_info' and type = 'U '))
drop table MSdatatype_info
go
数据库文件,文件头有"standard JET"字头
有点象是SQL SERVER 但是SQL SERVER 打不开高手救命呀[:(]
 
把文件头多copy几个字节上来看看,
 
一看就知道是Ms Sqlserver的安装脚本文件,不知道你要道出哪部分?
master、model还是msdb?
 
是ACESS2000,没有装0ffice2000,冤呀耗我200¥
 
把你要到出的脚本,粘贴到脚本分析器里执行,就ok啦!!
 
是脚本啦,用你的脚本分析器执行就行
 
看来是白的分了,祝贺你已经成功了
 
接受答案了.
 
顶部