楼主删除
日志文件
.ldf/或放在其它位置
只附加
数据库文件
,数据库会自生成新的日志文件.
简单问题时,以上可解决,不行时.只可有
数据库修复
给你一段建立数据库的代码:我是用的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
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)