On my server myServer\myInstance, I have created a task which I have saved as an SSIS package
Then I have added a JOB, which would then schedule that package to run, noting when I added the STEP, the package source was set to "SQL Server" and the server was also set to "myServer\myInstance" and clicking the [...] for the package, listed my SSIS package (along with a few others that I have created). If I change the package source, I have file system (opens the folder where I can see a dtsx file that I have created) and SSIS Package store, which shows a tree for "SSIS Packages" underneath with File System and MSDB, bith being empty.
So, selecting my package from SQL Server and myServer\myInstance, I finish the "job" and run a test ... works perfect.
How do I update/change that package? (this is the main need for this question, sorry that there's a long story attached to this). I have read that you can update a packages saved on the file system, but that it's not easy ... would rather avoid that option, if possible.
If I try to get the management studio to connect to myServer\myInstance then I am toldInvalid server name "myServer\myInstance". SSIS service does not support multi-instance, use server name instead of "server name\instance"
I change that to by just "myServer" and it connects, I can see it (with tree branches) in the Object Explorer, but if I try to expand out "Stored Packages -> MSDB -> ..." I getThe SQL Server instance specified in SSIS service configuration is not present or is not available. This might occur when there is no default instance of SQL Server on the computer.......... Login failed for DOMAIN\user (MsDtsSrvr)
I had read about changing the MsDtsSrvr.ini.xml file so that the <Name> and <ServerName> become <Name>MSDBmyServer\myInstance</Name><ServerName>myServer</ServerName>,w hich I did (and restarted the service) but when I then connect to the integration services in the management studio, it has the 'Running Packages' and 'Stored Packages' with nothing under either of them?
Any ideas to get this working would be appreciated.