Execute the following script to create the IN_DB_UTIL database package.
Note: Make sure you are connected to the correct database and the
v_database_name variable matches the database name you are connected to.
-- Name of Database :setvar v_database_name 'INOW'
Complete one of the following options:
- In SSMS, execute the following script.Note: You must execute this script with SQLCMD Mode enabled.
To enable SQLCMD mode from the SSMS toolbar, click Query and then select SQLCMD Mode.
PerceptiveContentDB_IN_DB_UTIL_SQLServer_Package_v5.0.sql
- Using the sqlcmd utility, execute the following script. Note: You must establish your connection using the -l option to set the QUOTED IDENTIFIER connection option to ON. The default is OFF.
sqlcmd -I -i "PerceptiveContentDB_IN_DB_UTIL_SQLServer_Package_v5.0.sql"
Example
set SQLCMDSERVER=[protocol:]server[\instance_name][,port] set SQLCMDDBNAME=[DBNAME] sqlcmd -I -i "PerceptiveContentDB_IN_DB_UTIL_SQLServer_Package_v5.0.sql"