gpt4 book ai didi

c# - 使用 SMO 更改逻辑数据库名称

转载 作者:太空狗 更新时间:2023-10-29 18:17:15 25 4
gpt4 key购买 nike

如何在使用 SMO 恢复数据库时更改逻辑数据库名称?

/维克托

最佳答案

//restore is the Restore object in SMO

restore.RelocateFiles.Add(new RelocateFile(SourceDataFile.Name, Path.Combine(destinationDirectory, destination.Database + ".mdf")));
restore.RelocateFiles.Add(new RelocateFile(SourceLogFile.Name, Path.Combine(destinationDirectory, destination.Database + "_log.ldf")));

restore.SqlRestore(destinationServer);

var destinationDatabase = destinationServer.Databases[destinationDatabaseName];

//renaming the logical files does the trick

destinationDatabase.FileGroups[0].Files[0].Rename(destinationDatabaseName);
destinationDatabase.LogFiles[0].Rename(destinationDatabaseName + "_log");

关于c# - 使用 SMO 更改逻辑数据库名称,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2301226/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com