remove white spaces
This commit is contained in:
Родитель
eea0e20b32
Коммит
bef524977e
|
@ -29,7 +29,7 @@ $Prompt = 'N'
|
|||
|
||||
|
||||
|
||||
$db = if ($Prompt -eq 'Y') {Read-Host -Prompt "Enter Desired Database Base Name"} else {$SolutionName}
|
||||
$db = if ($Prompt -eq 'Y') {Read-Host -Prompt "Enter Desired Database Base Name"} else {$SolutionName}
|
||||
|
||||
$dataList = ( "loan_info_10k", "member_info_10k", "payments_info_10k")
|
||||
|
||||
|
@ -37,32 +37,32 @@ $dataList = ( "loan_info_10k", "member_info_10k", "payments_info_10k")
|
|||
|
||||
##########################################################################
|
||||
|
||||
# Create Database and BaseTables
|
||||
# Create Database and BaseTables
|
||||
|
||||
#########################################################################
|
||||
|
||||
####################################################################
|
||||
# Check to see If SQL Version is at least SQL 2017 and Not SQL Express
|
||||
# Check to see If SQL Version is at least SQL 2017 and Not SQL Express
|
||||
####################################################################
|
||||
|
||||
|
||||
$query =
|
||||
"select
|
||||
case
|
||||
when
|
||||
cast(left(cast(serverproperty('productversion') as varchar), 4) as numeric(4,2)) >= 14
|
||||
and CAST(SERVERPROPERTY ('edition') as varchar) Not like 'Express%'
|
||||
$query =
|
||||
"select
|
||||
case
|
||||
when
|
||||
cast(left(cast(serverproperty('productversion') as varchar), 4) as numeric(4,2)) >= 14
|
||||
and CAST(SERVERPROPERTY ('edition') as varchar) Not like 'Express%'
|
||||
then 'Yes'
|
||||
else 'No' end as 'isSQL17'"
|
||||
|
||||
$isCompatible = Invoke-Sqlcmd -ServerInstance $ServerName -Database Master -Query $query
|
||||
$isCompatible = $isCompatible.Item(0)
|
||||
if ($isCompatible -eq 'Yes' -and $InstallPy -eq 'Yes') {
|
||||
Write-Host
|
||||
Write-Host
|
||||
("This Version of SQL is Compatible with SQL Py")
|
||||
|
||||
## Create Py Database
|
||||
Write-Host
|
||||
Write-Host
|
||||
("Creating SQL Database for Py")
|
||||
|
||||
## Create PY Server DB
|
||||
|
@ -72,76 +72,75 @@ if ($isCompatible -eq 'Yes' -and $InstallPy -eq 'Yes') {
|
|||
$CreateSQLDB = "$ScriptPath\CreateDatabase.sql"
|
||||
|
||||
$CreateSQLObjects = "$ScriptPath\CreateSQLObjectsPy.sql"
|
||||
Write-Host
|
||||
("Calling Script to create the $dbName database")
|
||||
Write-Host
|
||||
("Calling Script to create the $dbName database")
|
||||
invoke-sqlcmd -inputfile $CreateSQLDB -serverinstance $ServerName -database master -Variable $SqlParameters
|
||||
|
||||
Write-Host
|
||||
("SQLServerDB $dbName Created")
|
||||
invoke-sqlcmd "USE $dbName;"
|
||||
Write-Host
|
||||
("SQLServerDB $dbName Created")
|
||||
invoke-sqlcmd "USE $dbName;"
|
||||
|
||||
Write-Host
|
||||
Write-Host
|
||||
("Calling Script to create the objects in the $dbName database")
|
||||
invoke-sqlcmd -inputfile $CreateSQLObjects -serverinstance $ServerName -database $dbName
|
||||
|
||||
Write-Host
|
||||
Write-Host
|
||||
("SQLServerObjects Created in $dbName Database")
|
||||
$OdbcName = "obdc" + $dbname
|
||||
## Create ODBC Connection for PowerBI to Use
|
||||
## Create ODBC Connection for PowerBI to Use
|
||||
Add-OdbcDsn -Name $OdbcName -DriverName "ODBC Driver 13 for SQL Server" -DsnType 'System' -Platform '64-bit' -SetPropertyValue @("Server=$ServerName", "Trusted_Connection=Yes", "Database=$dbName") -ErrorAction SilentlyContinue -PassThru
|
||||
}
|
||||
else
|
||||
else
|
||||
{
|
||||
if ($isCompatible -eq 'Yes' -and $InstallPy -eq 'Yes')
|
||||
if ($isCompatible -eq 'Yes' -and $InstallPy -eq 'Yes')
|
||||
{
|
||||
Write-Host
|
||||
Write-Host
|
||||
("This Version of SQL is not compatible with Py , Py Code and DB's will not be Created")
|
||||
}
|
||||
else
|
||||
{Write-Host
|
||||
else
|
||||
{Write-Host
|
||||
("There is not a py version of this solution")
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
If ($InstallR -eq 'Yes') {
|
||||
Write-Host
|
||||
Write-Host
|
||||
("Creating SQL Database for R")
|
||||
|
||||
$dbName = $db + "_R"
|
||||
|
||||
## Create RServer DB
|
||||
## Create RServer DB
|
||||
$SqlParameters = @("dbName=$dbName")
|
||||
|
||||
$CreateSQLDB = "$ScriptPath\CreateDatabase.sql"
|
||||
|
||||
$CreateSQLObjects = "$ScriptPath\CreateSQLObjectsR.sql"
|
||||
Write-Host
|
||||
("Calling Script to create the $dbName database")
|
||||
Write-Host
|
||||
("Calling Script to create the $dbName database")
|
||||
invoke-sqlcmd -inputfile $CreateSQLDB -serverinstance $ServerName -database master -Variable $SqlParameters
|
||||
|
||||
Write-Host
|
||||
Write-Host
|
||||
("SQLServerDB $dbName Created")
|
||||
invoke-sqlcmd "USE $dbName;"
|
||||
invoke-sqlcmd "USE $dbName;"
|
||||
|
||||
Write-Host
|
||||
Write-Host
|
||||
("Calling Script to create the objects in the $dbName database")
|
||||
invoke-sqlcmd -inputfile $CreateSQLObjects -serverinstance $ServerName -database $dbName
|
||||
|
||||
Write-Host
|
||||
Write-Host
|
||||
("SQLServerObjects Created in $dbName Database")
|
||||
|
||||
###Configure Database for R
|
||||
Write-Host
|
||||
###Configure Database for R
|
||||
Write-Host
|
||||
("Configuring $SolutionName Solution for R")
|
||||
|
||||
$dbName = $db + "_R"
|
||||
$dbName = $db + "_R"
|
||||
|
||||
## Create ODBC Connection for PowerBI to Use
|
||||
## Create ODBC Connection for PowerBI to Use
|
||||
$OdbcName = "obdc" + $dbname
|
||||
## Create ODBC Connection for PowerBI to Use
|
||||
## Create ODBC Connection for PowerBI to Use
|
||||
Add-OdbcDsn -Name $OdbcName -DriverName "ODBC Driver 13 for SQL Server" -DsnType 'System' -Platform '64-bit' -SetPropertyValue @("Server=$ServerName", "Trusted_Connection=Yes", "Database=$dbName") -ErrorAction SilentlyContinue -PassThru
|
||||
|
||||
|
||||
|
@ -150,36 +149,35 @@ If ($InstallR -eq 'Yes') {
|
|||
##########################################################################
|
||||
|
||||
$RStart = Get-Date
|
||||
|
||||
|
||||
try {
|
||||
Write-Host
|
||||
Write-Host
|
||||
("Import CSV File(s). This Should take about 30 Seconds Per File")
|
||||
|
||||
# upload csv files into SQL table
|
||||
# upload csv files into SQL table
|
||||
|
||||
foreach ($dataFile in $dataList)
|
||||
{
|
||||
$destination = $solutionData + $dataFile +".csv"
|
||||
$tableName = $dbName + ".dbo." + $dataFile
|
||||
$tableName = $dbName + ".dbo." + $dataFile
|
||||
$tableSchema = $dataPath + $dataFile + ".xml"
|
||||
bcp $tableName format nul -T -c -x -f $tableSchema -S $ServerName
|
||||
bcp $tableName format nul -T -c -x -f $tableSchema -S $ServerName
|
||||
bcp $tableName in $destination -T -S $ServerName -c -F2 -C "RAW" -b 50000 -t'|'
|
||||
|
||||
Write-Host
|
||||
|
||||
Write-Host
|
||||
("$datafile table loaded from CSV File(s).")
|
||||
}
|
||||
}
|
||||
|
||||
catch {
|
||||
Write-Host -ForegroundColor DarkYellow ("Exception in populating database tables:")
|
||||
Write-Host -ForegroundColor Red $Error[0].Exception
|
||||
Write-Host -ForegroundColor Red $Error[0].Exception
|
||||
throw
|
||||
}
|
||||
Write-Host
|
||||
Write-Host
|
||||
("Finished loading .csv File(s).")
|
||||
|
||||
Write-Host
|
||||
Write-Host
|
||||
("Training Model and Scoring Data...")
|
||||
|
||||
$query = "EXEC Initial_Run_Once_R"
|
||||
|
@ -188,21 +186,21 @@ If ($InstallR -eq 'Yes') {
|
|||
|
||||
$Rend = Get-Date
|
||||
|
||||
$Duration = New-TimeSpan -Start $RStart -End $Rend
|
||||
Write-Host
|
||||
$Duration = New-TimeSpan -Start $RStart -End $Rend
|
||||
Write-Host
|
||||
("R Server Configured in $Duration")
|
||||
}
|
||||
ELSE
|
||||
ELSE
|
||||
{
|
||||
Write-Host
|
||||
Write-Host
|
||||
("There is not a R Version for this Solution so R will not be Installed")
|
||||
}
|
||||
|
||||
|
||||
###Conifgure Database for Py
|
||||
###Conifgure Database for Py
|
||||
if ($isCompatible -eq 'Yes' -and $InstallPy -eq 'Yes') {
|
||||
$PyStart = get-date
|
||||
Write-Host
|
||||
Write-Host
|
||||
("Configuring $SolutionName Solution for Py")
|
||||
$dbname = $db + "_Py"
|
||||
|
||||
|
@ -217,37 +215,37 @@ ELSE
|
|||
#$dataList = "LengthOfStay"
|
||||
|
||||
|
||||
# upload csv files into SQL table
|
||||
# upload csv files into SQL table
|
||||
|
||||
foreach ($dataFile in $dataList)
|
||||
{
|
||||
$destination = $solutionData + $dataFile +".csv"
|
||||
$tableName = $dbName + ".dbo." + $dataFile
|
||||
$tableName = $dbName + ".dbo." + $dataFile
|
||||
$tableSchema = $dataPath + $dataFile + ".xml"
|
||||
bcp $tableName format nul -T -c -x -f $tableSchema -S $ServerName
|
||||
bcp $tableName format nul -T -c -x -f $tableSchema -S $ServerName
|
||||
bcp $tableName in $destination -T -S $ServerName -c -F2 -C "RAW" -b 50000 -t'|'
|
||||
|
||||
Write-Host
|
||||
|
||||
Write-Host
|
||||
("$datafile table loaded from CSV File(s).")
|
||||
}
|
||||
}
|
||||
catch {
|
||||
Write-Host -ForegroundColor DarkYellow "Exception in populating database tables:"
|
||||
Write-Host -ForegroundColor Red $Error[0].Exception
|
||||
Write-Host -ForegroundColor Red $Error[0].Exception
|
||||
throw
|
||||
}
|
||||
Write-Host
|
||||
Write-Host
|
||||
("Finished loading .csv File(s).")
|
||||
|
||||
Write-Host
|
||||
Write-Host
|
||||
("Training Model and Scoring Data...")
|
||||
$query = "EXEC Inital_Run_Once_Py"
|
||||
SqlServer\Invoke-Sqlcmd -ServerInstance LocalHost -Database $dbName -Query $query -ConnectionTimeout 0 -QueryTimeout 0
|
||||
|
||||
$Pyend = Get-Date
|
||||
|
||||
$Duration = New-TimeSpan -Start $PyStart -End $Pyend
|
||||
Write-Host
|
||||
$Duration = New-TimeSpan -Start $PyStart -End $Pyend
|
||||
Write-Host
|
||||
("Py Server Configured in $Duration")
|
||||
|
||||
}
|
Загрузка…
Ссылка в новой задаче