I've been using Actinic 6 for a couple of years with a bat file to download orders every 1/2 hr e.g. Catalog.exe" /D
The downside is that the process is visible e.g. the black cmd window appears and Actinic displays a message e.g. 'there are no orders to download' and takes the focus. I don't have the option of running Actinic on a different pc.
Ideally, I'd like to set up a job in SQL server e.g.
exec master..xp_cmdshell '"C:\Program Files\Actinic\Catalog.exe" /D'
However, this job hangs when run and I can't debug it in Visual Studio. Is it a rights issue as catalog.exe is showing as a process under the SYSTEM user? (I have to end the process in task manager)
Any help would be appreciated
The downside is that the process is visible e.g. the black cmd window appears and Actinic displays a message e.g. 'there are no orders to download' and takes the focus. I don't have the option of running Actinic on a different pc.
Ideally, I'd like to set up a job in SQL server e.g.
exec master..xp_cmdshell '"C:\Program Files\Actinic\Catalog.exe" /D'
However, this job hangs when run and I can't debug it in Visual Studio. Is it a rights issue as catalog.exe is showing as a process under the SYSTEM user? (I have to end the process in task manager)
Any help would be appreciated
Comment