This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if not OBJECT_ID('dbo.Proc_BackupDatabaseWeeklyDifferential') is null | |
Drop Proc dbo.Proc_BackupDatabaseWeeklyDifferential | |
go | |
Create Proc dbo.Proc_BackupDatabaseWeeklyDifferential( | |
@DbName sysname, | |
@TargetPath nvarchar(1000)) as | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set COMPLUS_ZapDisable=1 | |
rem Disable vshost in the projects options |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ASPxClientControl.GetControlCollection().GetByName(element.id) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
string s = @"aasdas %.*ls dasdasdasd %.*ls asdaasddas %ls"; | |
int i = 0; | |
s = Regex.Replace(s, @"%(\.\*){0,1}ls", (m) => "%" + (++i).ToString()); |
NewerOlder