FSM6 UPD14 Installation Error
IFS internal On-Premise Installation / SQL Server DB.
Getting below error during DB installation and failed. Any idea/advise?

FSM6 UPD14 Installation Error
IFS internal On-Premise Installation / SQL Server DB.
Getting below error during DB installation and failed. Any idea/advise?

Is there anyone who could complete FSM6 UPD14 Fresh installation/upgrade in on-prem(SQL server)? Apparently both end up in above error, even with all the pre-requisites are there.
Hi 
Are you moving with a completely new installation? Or is it an upgrade?
Because such an issue is encountered if a new database is forced to be installed when there is already an existing database in place.
Thanks and Br,
Aaqil
Adding to the above,
I would suggest in checking with FSM-DB mappings and then a SQL server restart before the DB upgrade.
Br, Aaqil
Hi 
I tried both.
Just to verify, I ran the same on a BNT environment. DB upgrade end up with below

At the end of Mobile service upgrade

Get above error, probably due to the issue with DB upgrade.
At the end, when I complete the wizard and try to login to Smart Client,

BTW, 
/Sanjeewa
Hi 
Yes, I installed UPD 14 to my local machine. The issue I encountered was on the power shell command. In my case it was not a fresh installation, but an upgrade from UPD 13. There was no issue in Mobile service.
I’m afraid whether you need to create a new database for FSM, which should be your last resort.
But before that you could try deleting the existing login and create a new one. Map the FSMDB to the new login. Then provide those details for installation.

As u said it is likely to be an issue with FSM-DB upgrade.
Br, Aaqil
Get-Host | Select-Object Version
Its better to use newer version like 5.1.
Hi 
Please try to adding “-QueryTimeout 1000 `” line in FSM_Upgrade.ps1 script.
{
If ($adminUser)
    {
    Invoke-Sqlcmd `
                -QueryTimeout 1000 `
        -serverInstance $($server) `
        -Username $($adminUser) `
        -Password $($adminPass) `
        -Database $($dbName) `
        -InputFile ".\FSM_570_MetadataInsert_2.sql" `
        -ErrorAction stop `
        -Verbose > ".\metadata_2.log" 4>&1
    }
Else
    {
    Invoke-Sqlcmd `
                -QueryTimeout 1000 `
        -serverInstance $($server) `
        -Database $($dbName) `
        -InputFile ".\FSM_570_MetadataInsert_2.sql" `
        -ErrorAction stop `
        -Verbose > ".\metadata_2.log" 4>&1
    }
}
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.