哪位高手帮忙一下数据库的问题 5172错误

来源:百度知道 编辑:UC知道 时间:2024/09/13 02:23:40
消息 5172,级别 16,状态 15,第 1 行
文件 'D:\sjk\CJGL.mdf' 的文件头不是有效的数据库文件头。FILE SIZE 属性不正确。
我想把我已有的数据库文件附加上去,里面有我想要的资料。

给你一段建立数据库的代码:我是用的Sqlserver 2005的;希望楼主用的上;

exec xp_cmdshell 'mkdir D:\GoldSwallow' --建立文件夹;
go
if exists(select * from sysdatabases where name='GoldSwallowDB')
drop database GoldSwallowDB
go

create database GoldSwallowDB
on
(
name='GoldSwallowDB_data',
filename='D:\GoldSwallow\GoldSwallowDB.mdf',
size=3mb,
filegrowth=15%
)
log on
(
name='GoldSwallowDB_log',
filename='D:\GoldSwallow\GoldSwallowDB.ldf',
size=3mb,
filegrowth=15%
)
go