How to access .dtsx file in SQL Agent job step in SQL Server 2016











up vote
0
down vote

favorite












In SQL Server Management Studio, under SQL Server Agent, Jobs folder, I double-click a job. This opens the Job Properties window. Then I go to Steps, and double-click the first step of the job. This opens the Job Step Properties window as below:



enter image description here



In the Package textbox is a path to a .dtsx file. The path is similar to SSISDB...Step1Package.dtsx



Where is this .dtsx file located on the SQL server? And how can I view the file? Can I use Visual Studio 2017 to view the .dtsx file?










share|improve this question






















  • It's in the SSIS catalog. Take a look at "exporting an SSIS package in managent studio" mssqltips.com/sqlservertip/1428/…
    – Nick.McDermaid
    Nov 8 at 10:58















up vote
0
down vote

favorite












In SQL Server Management Studio, under SQL Server Agent, Jobs folder, I double-click a job. This opens the Job Properties window. Then I go to Steps, and double-click the first step of the job. This opens the Job Step Properties window as below:



enter image description here



In the Package textbox is a path to a .dtsx file. The path is similar to SSISDB...Step1Package.dtsx



Where is this .dtsx file located on the SQL server? And how can I view the file? Can I use Visual Studio 2017 to view the .dtsx file?










share|improve this question






















  • It's in the SSIS catalog. Take a look at "exporting an SSIS package in managent studio" mssqltips.com/sqlservertip/1428/…
    – Nick.McDermaid
    Nov 8 at 10:58













up vote
0
down vote

favorite









up vote
0
down vote

favorite











In SQL Server Management Studio, under SQL Server Agent, Jobs folder, I double-click a job. This opens the Job Properties window. Then I go to Steps, and double-click the first step of the job. This opens the Job Step Properties window as below:



enter image description here



In the Package textbox is a path to a .dtsx file. The path is similar to SSISDB...Step1Package.dtsx



Where is this .dtsx file located on the SQL server? And how can I view the file? Can I use Visual Studio 2017 to view the .dtsx file?










share|improve this question













In SQL Server Management Studio, under SQL Server Agent, Jobs folder, I double-click a job. This opens the Job Properties window. Then I go to Steps, and double-click the first step of the job. This opens the Job Step Properties window as below:



enter image description here



In the Package textbox is a path to a .dtsx file. The path is similar to SSISDB...Step1Package.dtsx



Where is this .dtsx file located on the SQL server? And how can I view the file? Can I use Visual Studio 2017 to view the .dtsx file?







ssis sql-server-2016 sql-agent-job






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Nov 8 at 0:13









Mark Nugent

941111




941111












  • It's in the SSIS catalog. Take a look at "exporting an SSIS package in managent studio" mssqltips.com/sqlservertip/1428/…
    – Nick.McDermaid
    Nov 8 at 10:58


















  • It's in the SSIS catalog. Take a look at "exporting an SSIS package in managent studio" mssqltips.com/sqlservertip/1428/…
    – Nick.McDermaid
    Nov 8 at 10:58
















It's in the SSIS catalog. Take a look at "exporting an SSIS package in managent studio" mssqltips.com/sqlservertip/1428/…
– Nick.McDermaid
Nov 8 at 10:58




It's in the SSIS catalog. Take a look at "exporting an SSIS package in managent studio" mssqltips.com/sqlservertip/1428/…
– Nick.McDermaid
Nov 8 at 10:58












2 Answers
2






active

oldest

votes

















up vote
1
down vote



accepted










See the package source. It says SSIS Catalog. You'll find your package at below location:



Integration Services Catalogs -> SSISDB -> <your package path>



ssdb location



The reason being, you've deployed the SSIS solution as Project Deployment Mode



Additional info : Microsoft document on SSIS deployment mode






share|improve this answer




























    up vote
    3
    down vote













    one way to view the package in visual studio is as follows:



    Step 1.
    Open a integration services project in visual studio



    Step 2.
    Add a existing package in the solution explorer
    enter image description here
    Step 3.
    Select SQL server and type in the adress of the SSISserver where your package is located. Then click on the dots on right side of the screen and select the package path.
    enter image description here






    share|improve this answer





















      Your Answer






      StackExchange.ifUsing("editor", function () {
      StackExchange.using("externalEditor", function () {
      StackExchange.using("snippets", function () {
      StackExchange.snippets.init();
      });
      });
      }, "code-snippets");

      StackExchange.ready(function() {
      var channelOptions = {
      tags: "".split(" "),
      id: "1"
      };
      initTagRenderer("".split(" "), "".split(" "), channelOptions);

      StackExchange.using("externalEditor", function() {
      // Have to fire editor after snippets, if snippets enabled
      if (StackExchange.settings.snippets.snippetsEnabled) {
      StackExchange.using("snippets", function() {
      createEditor();
      });
      }
      else {
      createEditor();
      }
      });

      function createEditor() {
      StackExchange.prepareEditor({
      heartbeatType: 'answer',
      convertImagesToLinks: true,
      noModals: true,
      showLowRepImageUploadWarning: true,
      reputationToPostImages: 10,
      bindNavPrevention: true,
      postfix: "",
      imageUploader: {
      brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
      contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
      allowUrls: true
      },
      onDemand: true,
      discardSelector: ".discard-answer"
      ,immediatelyShowMarkdownHelp:true
      });


      }
      });














       

      draft saved


      draft discarded


















      StackExchange.ready(
      function () {
      StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53199796%2fhow-to-access-dtsx-file-in-sql-agent-job-step-in-sql-server-2016%23new-answer', 'question_page');
      }
      );

      Post as a guest
































      2 Answers
      2






      active

      oldest

      votes








      2 Answers
      2






      active

      oldest

      votes









      active

      oldest

      votes






      active

      oldest

      votes








      up vote
      1
      down vote



      accepted










      See the package source. It says SSIS Catalog. You'll find your package at below location:



      Integration Services Catalogs -> SSISDB -> <your package path>



      ssdb location



      The reason being, you've deployed the SSIS solution as Project Deployment Mode



      Additional info : Microsoft document on SSIS deployment mode






      share|improve this answer

























        up vote
        1
        down vote



        accepted










        See the package source. It says SSIS Catalog. You'll find your package at below location:



        Integration Services Catalogs -> SSISDB -> <your package path>



        ssdb location



        The reason being, you've deployed the SSIS solution as Project Deployment Mode



        Additional info : Microsoft document on SSIS deployment mode






        share|improve this answer























          up vote
          1
          down vote



          accepted







          up vote
          1
          down vote



          accepted






          See the package source. It says SSIS Catalog. You'll find your package at below location:



          Integration Services Catalogs -> SSISDB -> <your package path>



          ssdb location



          The reason being, you've deployed the SSIS solution as Project Deployment Mode



          Additional info : Microsoft document on SSIS deployment mode






          share|improve this answer












          See the package source. It says SSIS Catalog. You'll find your package at below location:



          Integration Services Catalogs -> SSISDB -> <your package path>



          ssdb location



          The reason being, you've deployed the SSIS solution as Project Deployment Mode



          Additional info : Microsoft document on SSIS deployment mode







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Nov 8 at 12:22









          Prabhat G

          2,34411324




          2,34411324
























              up vote
              3
              down vote













              one way to view the package in visual studio is as follows:



              Step 1.
              Open a integration services project in visual studio



              Step 2.
              Add a existing package in the solution explorer
              enter image description here
              Step 3.
              Select SQL server and type in the adress of the SSISserver where your package is located. Then click on the dots on right side of the screen and select the package path.
              enter image description here






              share|improve this answer

























                up vote
                3
                down vote













                one way to view the package in visual studio is as follows:



                Step 1.
                Open a integration services project in visual studio



                Step 2.
                Add a existing package in the solution explorer
                enter image description here
                Step 3.
                Select SQL server and type in the adress of the SSISserver where your package is located. Then click on the dots on right side of the screen and select the package path.
                enter image description here






                share|improve this answer























                  up vote
                  3
                  down vote










                  up vote
                  3
                  down vote









                  one way to view the package in visual studio is as follows:



                  Step 1.
                  Open a integration services project in visual studio



                  Step 2.
                  Add a existing package in the solution explorer
                  enter image description here
                  Step 3.
                  Select SQL server and type in the adress of the SSISserver where your package is located. Then click on the dots on right side of the screen and select the package path.
                  enter image description here






                  share|improve this answer












                  one way to view the package in visual studio is as follows:



                  Step 1.
                  Open a integration services project in visual studio



                  Step 2.
                  Add a existing package in the solution explorer
                  enter image description here
                  Step 3.
                  Select SQL server and type in the adress of the SSISserver where your package is located. Then click on the dots on right side of the screen and select the package path.
                  enter image description here







                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered Nov 8 at 10:38









                  ppijnenburg

                  143110




                  143110






























                       

                      draft saved


                      draft discarded



















































                       


                      draft saved


                      draft discarded














                      StackExchange.ready(
                      function () {
                      StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53199796%2fhow-to-access-dtsx-file-in-sql-agent-job-step-in-sql-server-2016%23new-answer', 'question_page');
                      }
                      );

                      Post as a guest




















































































                      Popular posts from this blog

                      Schultheiß

                      Liste der Kulturdenkmale in Wilsdruff

                      Android Play Services Check