Advertisement
Guest User

Untitled

a guest
Feb 13th, 2017
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.99 KB | None | 0 0
  1. local deploy static
  2.  
  3. @echo off
  4. rem
  5. rem Script to run an Invantive SQL file with possible Invantive Data Hub scripting language statements.
  6. rem
  7. rem Please note that the encrypted password is bound to the PC used to generate this file.
  8. rem When you want to run this batch file on another PC, please generate a new encrypted password at that PC.
  9. rem
  10. rem Created by Invantive Query Tool on 2/13/2017 2:42:54 PM.
  11. rem
  12. rem $Id: $
  13. rem
  14.  
  15. set INVANTIVE_PRG=PATHInvantive.Producer.QueryEngine.exe
  16.  
  17. set INVANTIVE_USR=SOMETHING
  18.  
  19. set INVANTIVE_ENCRYPTED_PWD=ENCRYPTED-DEVICE-SPECIFIC-PASSWORD
  20.  
  21. set INVANTIVE_CONN=Exact OnlineExact Online (nl)
  22.  
  23. set INVANTIVE_SQL_FILE=C:tempsample.sql
  24.  
  25. set INVANTIVE_LOG_FILE=C:tempsample.log
  26.  
  27. set INVANTIVE_INTERACTIVE=False
  28.  
  29. "%INVANTIVE_PRG%" /user:"%INVANTIVE_USR%" /connection:"%INVANTIVE_CONN%" /encryptedpassword:"%INVANTIVE_ENCRYPTED_PWD%" /file:"%INVANTIVE_SQL_FILE%" /logfile:"%INVANTIVE_LOG_FILE%" /logoverwrite:"%INVANTIVE_LOG_FILE_OVERWRITE%" /interactive:%INVANTIVE_INTERACTIVE%
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement