#powershell #sql-server-job
#powershell #sql-server-job
Вопрос:
В настоящее время я работаю над файлом задания SQL Server, который содержит следующий код
@active_end_date = 99991231,
@active_start_time = 0,
@active_end_time = 235959,
@schedule_uid = N'59cbfb7d-67c7-495c-810d-0ca7a6357f9c'
IF (@@ERROR <> 0 OR @ReturnCode <> 0) GOTO QuitWithRollback
Я использую PowerShell для удаления @schedule_uid
с помощью этого кода:
$orgineel_localfolder = "C:UsersDesktopJobs_from_Serveraangepast"
$stringtorremove = '@schedule_uid='
$files = Get-ChildItem $orgineel_localfolder *.sql
ForEach ($file in $files)
{
$linenumber = Select-String $file -pattern $stringtorremove
$removecomma = $linenumber -replace",",""
$fileName = "C:UsersEX27740DesktopJobs_from_ServerOrgineel" $file.Name.replace("_Orgineel","_nieuwe") # Vervangt alle Orgineel maar niet erg script blijft goed
(Get-Content $file.fullname) -notmatch $stringtorremove | Out-File $fileName
}
Моя проблема в том, что в предыдущей строке @active_end_time = 235959,
. Поскольку данные в этой строке не всегда @active_end_time
, я хочу получить номер строки этой строки, извлекая номер строки строки, которую я удалю -1.
Как я могу это сделать?
Ответ №1:
Я хочу получить номер строки этой строки, получив номер строки строки, которую я удалю -1. Как я могу это сделать?
Чтобы найти этот номер строки, вы можете использовать lineNumber и вычесть 1:
$number = (Select-String $file -pattern $stringtorremove | Select-Object -ExpandProperty LineNumber) - 1
Ответ №2:
Привет, я думал, что опубликую свое решение для этого, если у кого-нибудь еще возникнет подобный вопрос:
$orgineel_localfolder = "C:UsersDesktopJobs_from_Serveraangepast"
$stringtorremove = '@schedule_uid='
ForEach ($file in $files){
#gets the line number of the value
$huidigeregel = Select-String $file -pattern $stringtorremove | Select-Object -ExpandProperty 'LineNumber'
if ([string]::IsNullOrWhitespace($huidigeregel )){
'Deze job heeft geen @schedule_uid= '
} else {
#get the right line by subtracting the current line with -2
$goederegel = $huidigeregel -2
$valuewithcomma = get-content $file.fullname | select -Index $goederegel
$valuewithoutcomma = $valuewithcomma -replace",",""
$orginalithcomma= Get-Content $file.fullname
}
$fileName = "C:UsersDesktopJobs_from_Serveraangepast" $file.Name.replace("_Orgineel","_nieuwe")
if ([string]::IsNullOrWhitespace($huidigeregel)){
(Get-Content $file.fullname) -notmatch $stringtorremove | Out-File $fileName
} else {
(Get-Content $file.fullname) -replace $valuewithcomma, $valuewithoutcomma -notmatch $stringtorremove | Out-File $fileName }
}