Skip to content

Commit

Permalink
Merge pull request #51 from GlumNihil/patch-1
Browse files Browse the repository at this point in the history
Update ПодключениеMSSQL.os
  • Loading branch information
arkuznetsov committed Dec 31, 2023
2 parents 0a94bfd + 7a63e95 commit ebf430c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/core/Классы/ПодключениеMSSQL.os
Original file line number Diff line number Diff line change
Expand Up @@ -349,10 +349,10 @@
|CREATE DATABASE [%1]
|ON
|( NAME = %1,
| FILENAME = '%2\%1.mdf')
| FILENAME = '%2%1.mdf')
|LOG ON
|( NAME = %1_log,
| FILENAME = '%2\%1_log.ldf');
| FILENAME = '%2%1_log.ldf');
|
|ALTER DATABASE [%1]
|SET RECOVERY %3"" ",
Expand Down Expand Up @@ -885,8 +885,8 @@
|ALTER DATABASE [%1] SET SINGLE_USER WITH ROLLBACK IMMEDIATE;
|
|RESTORE DATABASE [%1] FROM DISK = N'%2' WITH FILE = 1,
|MOVE N'%3' TO N'%4\%1.mdf',
|MOVE N'%5' TO N'%6\%1_log.ldf',
|MOVE N'%3' TO N'%4%1.mdf',
|MOVE N'%5' TO N'%6%1_log.ldf',
|NOUNLOAD, REPLACE, STATS = 10;
|
|ALTER DATABASE [%1] SET MULTI_USER"" ",
Expand Down

0 comments on commit ebf430c

Please sign in to comment.