How do I load an SSIS package created in Visual Studio 2012 Shell (Integrated) onto SQL Server 2012 using SQL Management Studio 2012

I am fairly new to this whole process of working with the Microsoft development environment.  Here is what I have to work with:
an NT server running Microsoft SQL 2012  - Microsoft SQL Server Standard (64-bit)  11.0.2100.60
and on my laptop (all freebie downloads):
SQL Server Management Studio 2012            ver 11.0.2100.60
Visual Studio 2012 Express  for Desktop Development and
Visual Studio 2012 Shell (Integrated)
I was able to create an SSIS package in
2012 Shell (Integrated).  It takes a flat file and imports it into an SQL database table.  It runs successfully from within the
2012 Shell (Integrated) envrionment.
But I am having trouble figuring out how to set this up on the 2012 SQL Server.  I see that one of my colleagues created an Integration Services Catalog,
and using SQL Management Studio I was able to create a folder under that called DigLic.  But when I go to the Projects subfolder of DigLic and attempt to import my SSIS package, I get an error message:
"To launch the Integration Services Deployment wizard, one of the components: Integration Services, Management Tools - Basic or Business Intelligence Development Studio has to be installed by the SQL Server
2012 Standard, Enterprise, Developer, or Evaluation Edition.  To install a component, run SQL Server Setup and Select the component name"
I realize that Express Versions of Visual Studio lack the full feature set of a professional version.  But am I wrong in assuming that owning a server version of SQL Server 2012 gives us license to a professional
version of SQL Management Studio 2012?  If so, how would I go about getting this software component installed?  And I am not clear if this is something that needs to be installed on our SQL Server or if I simply need a professional version of SSMS
loaded on my laptop.
I work for a company that is fairly fractured in its repsonsibilities, so I would need to know exactly what to ask for if I need to track down any licenses that I might need and if I need to have any specific software installed on our SQL server or on my
laptop.
All helpt would be greatly appreciated.
Thanks!

Arthur,
Thank you for your reply.  But at this point, one of my points of confusion is what software I have available to me.  I wish I had a useful central help desk to call up and just say, "Hey, load me up with all of the professional version(s) of Visual
Studio.  But I do not know what we have license to.  And I kind of need to know what the options are, so that I can ask a specific question of our vast buracracy.
For now, I have downloaded only free versions of Visual Studio client software.  Since my company does have servers running Microsoft SQL Server, I am going to assume that we have proper licensing for those servers.  But does that server license
allow me to get any professional versions of the PC client software for the various Visual Studio(s) 2012?
And if I get a professional version of Visual Studio 2012, does that do away with the three different flavors that I have right now?  I have 2012 versions of SQL Server Management Studio, Visual Studio Express, and Visual Studio Shell (Integrated).
Your feedback is much appreciated.
Thanks!

Similar Messages

  • SSIS package works in Visual Studio but not as a scheduled Job.

    I have a SSIS package that takes some CSVs and Excel documents and imports the data into a database.  The CSVs and Excel document come from outside agencies so I have no control over them.  I have successfully created and ran the SSIS package in
    BIDS (Visual Studio)  However, when I try to run it as a scheduled job on the SQL server I get the following error.
    Source: Import Brazos CSV data Brazos Co CSV [1]     Description: Data conversion failed. The data conversion for column "offDescription" returned status value 4 and status text "Text was truncated or one or more characters had no
    match in the target code page."
    The column is set to ignore on truncation in the data flow source.
    Any suggestions would be appreciated. 
    Thanks
    KJ
    Kevin Joyner

    Hi Kjoyner96,
    The error usually occurs due to the data conversion between non-Unicode and Unicode characters. According to your description, the data type of the Output Columns of the Flat File Source should be DT_STR. If the source flat file uses Unicode encoding and
    contains Unicode characters, the data conversion from DT_WSTR to DT_STR will fail. So, I guess the source file in your Dev environment doesn’t have Unicode characters, while the source file on the SSIS server has Unicode characters. If this is the case, open
    the Advanced Editor for the Flat File Source, switch to the Input and Output Columns Properties tab, and change the data type of the Output columns from DT_STR to DT_WSTR. In this condition, the Data Conversion Transformation is not necessary.
    Regards,
    Mike Yin
    TechNet Community Support

  • Unable to Open Script task in SSIS packages in Microsoft visual studio

    TITLE: Microsoft Visual Studio
    The task with the name "Map Network Drive" and the creation name "Microsoft.SqlServer.Dts.Tasks.ScriptTask.ScriptTask, Microsoft.SqlServer.ScriptTask, Version=11.0.0.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91" is not registered
    for use on this computer.
    Contact Information:
    Script Task
    BUTTONS:
    OK

    Hi Covaikumar,
    The issue may occur because the Script Task is not installed properly. Please check whether the Microsoft.SqlServer.ScriptTask.dll file exists in the following folders (supposing it is a 64-bit platform):
    C:\Program Files\Microsoft SQL Server\110\DTS\Tasks
    C:\Program Files (x86)\Microsoft SQL Server\110\DTS\Tasks
    C:\Windows\Microsoft.NET\assembly\GAC_MSIL\Microsoft.SqlServer.ScriptTask\v4.0_11.0.0.0__89845dcd8080cc91
    If the Microsoft.SqlServer.ScriptTask.dll file is missing in any of the folders, copy one (from the other folders or a different working SSIS server) to the folder. Alternatively, you can also use the command line tool gacutil.exe to install the task assembly
    into the global assembly cache (GAC).
    Regards,
    Mike Yin
    TechNet Community Support

  • How do I load a slide show created in pro show gold?

    how do I load a slide show created in pro show gold?

    Their website talks about some sort of plug-in that you can get : http://www.photodex.com/products/plugins/device - persumably (and I'm guessing) it converts the output into something that is compatible and can be synced to the iPad's Videos app

  • Azure Webjob created in Visual Studio 2015 fails to run

    An Azure Webjob created in Visual Studio 2015 (any job, including the sample project) fails to run in an azure website with the following error:
    Job failed due to exit code -2146232576
    Note: the same project created in Visual Studio 2013 deploys and runs successfully.
    How can I fix the project in VS2015?

    Not the OP but I've the same problem.
    I created a continuously running webjob with the following code. The job runs perfectly fine locally.
    Program.cs
    static void Main()
    var host = new JobHost();// config);
    host.RunAndBlock();
    Functions.cs
    public static void ProcessQueueMessage([QueueTrigger("queue")] string message, TextWriter log)
    log.WriteLine(@"triggered job TriggeredWebJob");
    Here's the log from Azure WebJob:
    [03/16/2015 16:07:33 > 28695a: SYS INFO] Status changed to Starting
    [03/16/2015 16:07:34 > 9cb303: SYS INFO] Status changed to Starting
    [03/16/2015 16:07:34 > 28695a: SYS INFO] Run script 'TriggeredWebJob.exe' with script host - 'WindowsScriptHost'
    [03/16/2015 16:07:34 > 28695a: SYS INFO] Status changed to Running
    [03/16/2015 16:07:35 > 28695a: SYS ERR ] Job failed due to exit code -2146232576
    [03/16/2015 16:07:35 > 28695a: SYS INFO] Process went down, waiting for 60 seconds
    [03/16/2015 16:07:35 > 28695a: SYS INFO] Status changed to PendingRestart

  • C# Getting path of folder that is created in Visual Studio and it's located in app directory.

    Alright i created folder that will contain video resources for my app.But now i need to connect it with my code.I need to get file path of folder that i created in Visual Studio,but it needs to work on other machines.I tryed Path.Combined(Environment.GetCurrentDirectory
    + @"Video\Lekcija1.mp4") but it didn't work.Any suggestions?

    If you set the Build Action of the Lekcija1.mp4 file to Content (right-click on the file in the Solution Explorer in Visual Studio) and the Copy To Output Directory property to Copy always or Copy if newer you could use the following code to get the absolute
    path to the file:
    string codeBase = System.Reflection.Assembly.GetExecutingAssembly().CodeBase;
    string fullPath = System.IO.Path.GetDirectoryName(codeBase) + "\\Video\\Lekcija1.mp4";
    Hope that helps.
    Please remember to mark helpful posts as answer to close your threads and please start a new thread if you have a new question.

  • How to get standard Windows (7) title bars in Visual Studio 2013 Express?

    With the "title bar" background color changing when active vs inactive like all my other Windows.
    Using Win 7 in "Windows Classic" theme.

    Hi sponge_bob_128,
    >>How to get standard Windows (7) title bars in Visual Studio 2013 Express?
    Based on your issue, could you please tell me more detailed message about your issue.
    For example:
    (1)What did you would like to do in the Visual Studio 2013 Express?
    (2) If you want to develop a program like the "title bar" background color changing when active vs inactive from the VS2013 Express.
    Generally, I know that when we set the theme as "Windows Classic" theme on the Windows 7 and then start two VS windows, it will show an active VS window like the following screen shot.
    To further help you solve this issue, please tell me more detailed message for me.
    Best Regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • How to deploy parent child SSIS package to production/live server.

    Hi all I am very new to SSIS. I have got SSIS package developed by some other guy this package reads data from flat files and stores to database after mapping.
    Flow: 1) First package extract records from flat file and stores in table. 2) Then it calls child package using Execute package tasks. 3) Then child package do some calculations and update the database table.
    SSIS is using Environment variable to get database information.
    Every thing is working fine but now I want to deploy this package to my client's server.
    Ques: Do I need to copy and paste files from bin folder and paste on clients machine?
    What I Tried: I copy files from bin folder and placed on my local computer. Then I create a job in MSSQL and run the job. Package runs perfectly. But Later I changed location of my project and problem starts job stops working.
    Issue: Error says location of child package is not available(As I changed position of my project files)
    Kindly suggest what to do. 

    Hi Anuj,
    The issue occurs because the path of the child package is invalid once you change the location of the project. When configuring the child package reference for Execute Package Task, we can configure it to use Project Reference or External Reference:
    As for the Project Reference, it is used when the project is not deployed or the project to deployed to the SSISDB catalog in SSIS 2012.
    As for the SQL Server External Reference, it is used when the project or child package is deployed to the msdb database. The File System External Reference can be used no matter whether the child package is deployed or not.
    Since the SQL Server Agent job runs correctly after you copied the bin folder to the local computer, it seems that the Execute Package Task uses File System reference and reference to a mapped network driver which maps to the folder that contains the original
    IS project. Otherwise, the SQL Server Agent job should fail because of the invalid path of the child package even if you don’t change the location of the original IS project.
    In your scenario, after copying the bin folder to your local computer, it is recommended that you install the child package to the File System or msdb on your local server, and then edit the parent package in BIDS/SSDT to change the reference of the installed
    child package from the File System or SQL Server storage. After that, you can but don’t have to install the parent package.
    Regards,
    Mike Yin
    TechNet Community Support

  • SSIS Package - Create LGX file

    Hi All
    Does anybody know if it is possible to validate and save an LGF file through an ssis package. I tried using the admin task (validate logic) but it does not seem to re-process the LGX file.
    Regards,
    Byron

    Validate is not creating the lgx file. But you can use lgf file instead of lgx and the validation it can provide you the information if the logic from that file is good or not.
    Lgx file is creating when you are doing validat and save (and save option is the one creating the lgx file).
    I hope this will help you.
    Regards
    Sorin Radulescu

  • SSIS package Upgrade from 2005 to 2012

    Hi,
    We have a Solution file with 8 projects for SSIS packages. All of them are in VSS. They all have been created in 2005. Now we installed VS 2012 and SSDT on our local machines. I got latest of solution and projects from VSS on new machine. I tried to open
    solution file which took me SSIS package Upgrade wizard. I followed the steps and in the last step of conversion, it displayed that it had errors. The errors are:
    Error 0xc001f429: Package Upgrade: The file, "C:\SSIS\compay\hello.dtsx", could not be opened for writing. The file could be read-only, or you do not have the correct permissions.
    and for some packages, it is like this:
    Messages
     * Information 0x40019316: : The provider name for the connection manager "OLEDBConnection" has been changed from "SQLNCLI.1" to "SQLNCLI10".
     * Information 0x40019316: : The provider name for the connection manager "OLEDBConnection" has been changed from "SQLNCLI10" to "SQLNCLI11".
     * Information 0x40016019: : The package format was migrated from version 2 to version 6. It must be saved to retain migration changes.
     * Warning: PackageName: Found SQL Server Integration Services 2005 Script Task "ScriptTask_49664f73e0f440bbb0e7d44f01036bff" that requires migration!
     * Information 0x4001601a:PackageName: The Script Task "ScriptTask_49664f73e0f440bbb0e7d44f01036bff" has been migrated. The package must be saved to retain migration changes.
     * Error 0xc001f429: Package Upgrade: The file, "C:\SSIS\company\Hi.dtsx", could not be opened for writing. The file could be read-only, or you do not have the correct permissions.
    But solution and all projects and packages show that they are checked out. I checked properties also. Read only checkbox is not checked. 
    Please suggest what to do. I appreciate your response.
    Thanks,

    Why didnt you check it out directly from VSS rather than going this long route?  How would VSS now that file is in checked out status if you go and manually change readwrite property? I think it may be that its getting confused when you tried to save
    it into its working folder as it still has status as checked in and not locked by anyone.
    Can you try saving packages copies to different folder and then do the upgrade by including them onto a IS project?
    Please Mark This As Answer if it helps to solve the issue Visakh ---------------------------- http://visakhm.blogspot.com/ https://www.facebook.com/VmBlogs

  • SSIS package not able to connect to XLSX file under SQL Agent Job

    I have a very simply package using an Excel connection to an XLSX file.  It's a straight read of the file and import onto a table. 
    The package works fine in Visual Studio 2008 development and also runs fine when executing on the (server I copied it to) under Integration Services.    
    However, under a SQL Agent, the package (32-bit is checked) can not acquire the connection to an excel file.   I use UNC pathing to the file.  I've read other posts about similar problems and tried various scheduling options (including Owner of
    job).   
    I even tried a to trigger it with a command-line which did not work: 
    "C:\Program Files (x86)\Microsoft SQL Server\100\DTS\Binn\DTEXEC.exe" /sq "\our packages\My_XLSX_File_Import" /SERVER myserver /X86  /CHECKPOINTING OFF /REPORTING E
    All errors are:   "DTS_E_CANNOTACQUIRECONNECTIONFROMCONNECTIONMANAGER.  The AcquireConnection method call to the connection manager "Excel Connection Manager" failed with error code 0xC0209302." 
    I can certainly post more, if someone can help.   Sorry, but I am not getting the right help form those posts.   
    Please, are there any hints at how I can get the Agent job to work? 

    All errors are:   "DTS_E_CANNOTACQUIRECONNECTIONFROMCONNECTIONMANAGER.  The AcquireConnection method call to the connection manager "Excel Connection Manager" failed with error code 0xC0209302." 
    I can certainly post more, if someone can help.   Sorry, but I am not getting the right help form those posts.   
    Please, are there any hints at how I can get the Agent job to work? 
    Ensure that below correct drivers are installed on your target server because I see that file is
    .xlsx
    Microsoft Access Database Engine 2010 Redistributable
    Please refer:
    http://microsoft-ssis.blogspot.co.in/2014/02/connecting-to-excel-xlsx-in-ssis.html
    Cheers,
    Vaibhav Chaudhari
    MCP, MCTS, MCSA (SQL Server 2012)

  • How do we use Script (batch file with msbuild/msbuild project) to build Cordova Project created with Visual Studio Tools for Apache Cordova?

    I use Visual Studio to create Cordova projects. I need to build Cordova projects using msbuild and buildbot via script for my project but I can find only information about how VS combine with Cordova CLI to build multi device hybrid application.

    Hi Samseth,
    Yes, correct, the only thing we can find on the MSDN is:
    Deploy and Run Your App
    And that's the reason why Visual Studio Tools for Apache Cordova existing.
    I think you may get more detail compile information from here:
    http://cordova.apache.org/docs/en/4.0.0/guide_cli_index.md.html
    --James
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Cannot edit form in InfoPath when list was created in Visual Studio

    I am using SharePoint 2013 Enterprise, InfoPath Designer 2013 and Visual Studio 2013.
    When I create a list using the SharePoint UI, I can use the "Customize Form" button on the "Customize List" ribbon to customize the list form in InfoPath Designer and publishing the changes works just fine.
    When I create the same list in Visual Studio and deploy it via a solution package, I can still use the "Customize Form" button to customize the list's form in InfoPath Designer, but publishing the changes won't work. The error message I receive
    reads:
    The publish operation could not be completed. It cannot be determined if the form template was successfully published. Try publishing the form template again, or change the list settings to
    Catastrophic failure
    How can I solve this problem?
    Thanks in Advance!

    Hi Eduardo, this sounds like a data connection or SOAP issue. Check out the following links for solutions similar to your problem:
    https://social.technet.microsoft.com/Forums/office/en-US/ea8da113-fe9a-4878-9994-c1f24cc85c37/soap-error-when-publishing-infopath-form-to-sharepoint?forum=sharepointcustomizationprevious
    https://brenthafnersblog.wordpress.com/tag/infopath/
    cameron rautmann

  • EnterProjectStage - reading GUID from a string variable within Workflow created in Visual Studio 2012.

    Hi,
    I am creating a Project Server Workflow (site workflow) using Visual Studio 2012.
    If i set the "EnterProjectStage" activity with a GUID within quotes the workflow works
    (as suggested in the MSDN blog (http://blogs.msdn.com/b/project_programmability/archive/2012/11/07/creating-project-workflows-using-visual-studio-2012.aspx).
    However, the GUID of stages will change from environment to environmet (QA, Stage, PROD). So, I tried setting the GUID in a string variable (which i am populating dynamically) and assigned the string variable to the "EnterProjectStage"
    activity. However, this dynamic assignment of stage id to "EnterProjectStage" does not work and after deployment the workflow dumps with the following error:
    ===============================================
    Exception Starting Workflow: Sequence contains no elements. Trace: at System.Linq.Enumerable.First[TSource](IEnumerable`1 source) at Microsoft.Office.Project.Server.BusinessLayer.Workflow.<FillWorkflowStatusTableFromXaml>b__47(XElement
    e) at System.Linq.Enumerable.WhereSelectEnumerableIterator`2.MoveNext() at System.Linq.Enumerable.<DistinctIterator>d__81`1.MoveNext() at System.Collections.Generic.List`1..ctor(IEnumerable`1 collection) at System.Linq.Enumerable.ToList[TSource](IEnumerable`1
    source) at Microsoft.Office.Project.Server.BusinessLayer.Workflow.FillWorkflowStatusTableFromXaml(String xaml, WorkflowDataSet& ds, Guid projUid) at Microsoft.Office.Project.Server.BusinessLayer.Workflow.StartWorkflow(Guid projectGuid, Guid enterpriseProjectTypeUid,
    Boolean isNewProject, Guid previousEntepriseProjectTypeUid, Boolean skipStage, Guid stageToSkipTo):
    WorkflowExceptionStartingWorkflow (35115). Details: id='35115' name='WorkflowExceptionStartingWorkflow'
    uid='b31d825e-1d00-e411-9466-005056b11412'. 
    ===============================================
    Is there a way the "EnterProjectStage" can be made dynamic so that it reads from a variable.
    Thanks,
    Amitava.

    Arthur,
    Thank you for your reply.  But at this point, one of my points of confusion is what software I have available to me.  I wish I had a useful central help desk to call up and just say, "Hey, load me up with all of the professional version(s) of Visual
    Studio.  But I do not know what we have license to.  And I kind of need to know what the options are, so that I can ask a specific question of our vast buracracy.
    For now, I have downloaded only free versions of Visual Studio client software.  Since my company does have servers running Microsoft SQL Server, I am going to assume that we have proper licensing for those servers.  But does that server license
    allow me to get any professional versions of the PC client software for the various Visual Studio(s) 2012?
    And if I get a professional version of Visual Studio 2012, does that do away with the three different flavors that I have right now?  I have 2012 versions of SQL Server Management Studio, Visual Studio Express, and Visual Studio Shell (Integrated).
    Your feedback is much appreciated.
    Thanks!

  • How to remove or hide toolbar context menu in visual studio IDE

    Hi All,
    Currently we are extending Visual studio and it's functionality.
    As we know, we can have different categories of tool bars like standard, build, debug etc shown in pic - 
    or we can access the categories via -  View Main Menu -> Toolbars 
    Basically My requirement is that, I don't want to show these options (Build, Debug, Debug Location, Layout, customize , Text Editor, Standard etc) shown in context menu or shown in submenu.  
    How can I achieve it ? Please advice.

    AFAIK, you can only customize it manually, but can't hide the builtin menus:
    http://msdn.microsoft.com/en-us/library/vstudio/wdee4yb6(v=vs.100).aspx
    or maybe you can try vsct:
    https://social.msdn.microsoft.com/Forums/vstudio/en-US/f3acc18c-b176-4f06-a8d1-cccff3d4bf7f/how-to-disable-and-enable-menu-commands-in-vspackage?forum=vsx

Maybe you are looking for

  • Issue in Custom Breadcrumb.

    Hi SDNers, I have developed a custom breadcrumb using the Navigational Tag library. When i set the iView's Isolation method to Embedded, the breadcrumb works fine. However when i set it to URL the breadcrumb does not show the correct path. I also hav

  • Problem with AppleTV

    I have posted on the TV forum but with no result. They suggest that it is a computer problem and that I post here. My original post was:- When I load up iTunes to play a film wirelessly it works - the film will appear on the TV - but only for two min

  • Importing multiple image sequences simultaneously

    Quick but pesky workflow question. I'm often given a number of folders, each of which contains an image sequence (usually TIFF or DPX) representing a single clip. Usually the project starts by painstakingly importing the several dozen sequences by ha

  • IPhone/iPad connection error after first login ok: The request timed out. (-1001)

    Hi I have installed SAP 9.0 PL 12, DI API all version, Integration Component of the SAP 9.0 PL12. On my iPhone I have the 1.10.1 version of the app SAP. I followed the directions provided in the note (also in 1602674) and in the forum, but nothing. I

  • Volume changing on it's own

    I have recently started having a problem with my 5th gen 30gb. the volume will start adjusting itself up and down on it own. it doesn't happen every time i use it, but enough that it a problem. i've tried the 5R's and it still happens. can anyone hel