How can we help you today? How can we help you today?
AlexYates
Use SQL Compare. SQL Data Compare deploys the data contained in tables. To deploy the table itself use SQL Compare. / comments
Use SQL Compare. SQL Data Compare deploys the data contained in tables. To deploy the table itself use SQL Compare.
0 votes
To install tSQLt on a DB, follow these instructions: If using Redgate SQL Test: https://documentation.red-gate.com/sqt2/adding-a-database-to-sql-test If not using Redgate SQL Test: http://tsqlt.org/user-guide/quick-start/ / comments
To install tSQLt on a DB, follow these instructions: If using Redgate SQL Test:https://documentation.red-gate.com/sqt2/adding-a-database-to-sql-test If not using Redgate SQL Test:http://tsqlt.org/u...
0 votes
Hi there, First, a quick question: Have you added tSQLt on your dev DB and committed it to source control? If not, the reason you get the error is that when DLMA builds the DB it doesn't have the tSQLt objects (because your source code doesn't have the tSQLt objects) - hence the error. If you do have the tSQLt objects in source control, are you using a persistent temporary database (i.e. a specific named database using the -TemporaryDatabase parameter) or did you exclude that parameter, allowing DLMA to create a temporary scratch DB for you with a GUID for a name? If you are using the -TemporaryDatabase parameter, have you set TRUSTWORTHY to ON on that database? TRUSTWORTHY is required to be on in order for tSQLt to work. I believe the cmdlet will deploy tSQLt for you (assuming it's in source control), but tSQLt will only work if the DB has TRUSTWORTHY enabled. If it is not enabled you can get some unintuitive error messages. To enable trustworthy: ALTER DATABASE dbname SET TRUSTWORTHY ON; Note: Do not do this on production. TRUSTWORTHY is a bad idea on production: https://stackoverflow.com/questions/27006432/security-risks-of-setting-trustworthy-on-in-sql-server-2012 Let me know if that helps. / comments
Hi there, First, a quick question: Have you added tSQLt on your dev DB and committed it to source control? If not, the reason you get the error is that when DLMA builds the DB it doesn't have the t...
0 votes