SQL 분류
백업받은 모든 sql 파일에서 특정 단어가 포함된 줄만 따로 저장하기
작성자 정보
- ADKye 작성
- 작성일
컨텐츠 정보
- 11,359 조회
- 목록
본문
최종수정 : 2023 / 10 / 15
대상 : SQL 디비작업
백업받은 전체 sql파일에서 특정 url 이나 단어가 포함된 열 찾아서 따로 저장
한글은 못찾는거 같은데.. 필요할때 다시 검색
1.sql ->1_추출.txt 저장
파워쉘로 실행--------------
$sqlFolder = "C:\xampp\mysql\bin\저장위치"
$keyword = "찾을 문자 영문으로"
function FindAndSaveLines($file, $keyword) {
$lines = Get-Content $file
$foundLines = $lines | Where-Object { $_ -match $keyword }
if ($foundLines.Count -gt 0) {
$newFileName = [System.IO.Path]::ChangeExtension($file, "_추출.txt")
$foundLines | Out-File -FilePath $newFileName -Encoding UTF8
}
}
$files = Get-ChildItem -Path $sqlFolder -Filter *.sql
foreach ($file in $files) {
FindAndSaveLines $file.FullName $keyword
}
Write-Host "검색 및 저장이 완료되었습니다."
관련자료
댓글 0
등록된 댓글이 없습니다.