Deploying Ssdt Project Through Powershell Script: Version Store Out Of Memory Error
Hoping someone may be able to advise what might be happening here. I am attempting to run an SSDT deployment via a Powershell script directly on the SQL Server its-self. SQL Versio
Solution 1:
Try building with the MSBuild argument /p:CmdLineInMemoryStorage=true. This seems to have fixed this same issue for others running into this problem.
I have implemented the fix in my Azure DevOps Pipeline build for a database process that has also randomly had this error, and so far it seems to be working.
See also:
SO question: DB Schema Compare Error: 'Version Store Out of Memory'
Post a Comment for "Deploying Ssdt Project Through Powershell Script: Version Store Out Of Memory Error"