patrick118
Technical User
We have a few databases here and sometimes there are a lot of updates on them. I wanted to make it easy for myself and created a script that simply logs in to the database run a few scripts and goes on to the nexr.
example
-- Connection with server 1
connect user/password@test
start c:\package1.pck;
start c:\package2.pck;
connect user2/password@test
start c:\package1.pck;
start c:\package2.pck;
and on and on
My question is how do i make some lines in it so i can later see where the script is and what is had done
set echo on is not an option because it also show what the package is. Would like to see someting like this
-- Connection with server 1
connect user/password@test
show outputline connection made to test
start c:\package1.pck;
show outputline connection package 1 done
start c:\package2.pck;
show outputline connection package 2 done
Hope you understand my question. Thanks for the help
example
-- Connection with server 1
connect user/password@test
start c:\package1.pck;
start c:\package2.pck;
connect user2/password@test
start c:\package1.pck;
start c:\package2.pck;
and on and on
My question is how do i make some lines in it so i can later see where the script is and what is had done
set echo on is not an option because it also show what the package is. Would like to see someting like this
-- Connection with server 1
connect user/password@test
show outputline connection made to test
start c:\package1.pck;
show outputline connection package 1 done
start c:\package2.pck;
show outputline connection package 2 done
Hope you understand my question. Thanks for the help