ゆるかわの日記

暮らしに役立つかもしれないことを書きます

2022-08-25から1日間の記事一覧

PowerShellでsqlファイルをinclude

PowerShellでsqlファイルをimport $testCaseFilePath = "./unique.sql" $testCaseFile = (Get-Content $testCaseFilePath) -as [string[]] $targetModelFilePath = "./target_model.sql" $targetModelFile = (Get-Content $targetModelFilePath) -as [string…