You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The script tsqlt.clas.sql is not re-enterable.
I run it first time and received a lot of errors like owner sid of the db differs from owner's sid of master db. But after the 2nd run of the same script I have received messages about object already exists etc.
I am sure need to avoid this kind of statements but the script contains them
CREATE SCHEMA tSQLt;
GO
Need to check if exists etc.
Ok.
How to remove (clean-up) tsqlt from the SQL Server?
The text was updated successfully, but these errors were encountered:
The tSQLt.class.sql script is idempotent, as it automatically removes tSQLt completely before creating new objects. However, if the install fails due to unforeseen circumstances, like a previously corrupt database or permission issues, that uninstall portion of the script might not work correctly.
To address that, we should add an independent uninstall tSQLt script to the download. Note: In the case of a previously corrupted database, this clearly can do only a best effort.
The script tsqlt.clas.sql is not re-enterable.
I run it first time and received a lot of errors like owner sid of the db differs from owner's sid of master db. But after the 2nd run of the same script I have received messages about object already exists etc.
I am sure need to avoid this kind of statements but the script contains them
CREATE SCHEMA tSQLt;
GO
Need to check if exists etc.
Ok.
How to remove (clean-up) tsqlt from the SQL Server?
The text was updated successfully, but these errors were encountered: