13 lines
524 B
PowerShell
13 lines
524 B
PowerShell
# 口径字典 + 问数模板种子(本机 MySQL jinrong_agent)
|
||||
|
|
$ErrorActionPreference = "Stop"
|
|||
|
|
$Root = Split-Path -Parent (Split-Path -Parent $PSScriptRoot)
|
|||
|
|
$AgentDir = Join-Path $Root "scripts\agent"
|
|||
|
|
|
|||
|
|
Write-Host "Seeding analyst metric dict..."
|
|||
|
|
Get-Content (Join-Path $AgentDir "seed-analyst-metric-dict.sql") -Raw | mysql -u root jinrong_agent
|
|||
|
|
|
|||
|
|
Write-Host "Seeding analyst query templates..."
|
|||
|
|
Get-Content (Join-Path $AgentDir "seed-analyst-query-templates.sql") -Raw | mysql -u root jinrong_agent
|
|||
|
|
|
|||
|
|
Write-Host "Done."
|