Can you deploy 2008 packages to 2012?

If an SSIS package was developed using SQL Server 2008 R2, can you deploy/run the package on a 2012 instance?

If u just want to run the package then you can use Batch File (Keep Package in a folder) and call it by batch job.
Follow below steps:
In any Drive Create a folder called Build or any name--> Inside that create a folder "Config" for Config files and keep your configuration files if any
                                                       in Build or any name-->Create another folder "Folde_Where_Package"
                                                       in Build or any name-->Create another folder "Logs"
                                                       in Build or any name-->Create another folder "ETL_Jobs"
Keep this in Note pad and save this by giving extension .BAT in folder ETL_Jobs
set config1=D:\Config\Database.dtsConfig
SET LOGFILE=..\Logs\Run_Log.txt
dtexec  /REPORTING E /f "..\Folde_Where_Package\Pkg_Nmae1.dtsx" >> "%LOGFILE%"
dtexec  /REPORTING E /f "..\Folde_Where_Package\Pkg_Nmae2.dtsx" >> "%LOGFILE%"
Just double click on .BAT file it will execute your packages or can call this by using windows scheduler.
you can do same thing by creating 2 separate folders for 2008 and 2012 packages and can run separately.
http://social.msdn.microsoft.com/Forums/sqlserver/en-US/07e59dcd-7547-47b2-bcdd-3e188eef619a/how-to-run-a-ssis-package-using-bat-file?forum=sqlintegrationservices
https://www.simple-talk.com/content/print.aspx?article=270
http://www.mssqltips.com/sqlservertip/1775/different-ways-to-execute-a-sql-server-ssis-package/
Thanks Shiven:) If Answer is Helpful, Please Vote

Similar Messages

  • Can you deploy Oracle Business Rules to the other App servers

    Can you deploy Oracle Business Rules to the other App servers such as Websphere and Jboss

    Yes. Please see the Appendix C in the documentation at:
    http://download-west.oracle.com/docs/cd/B31017_01/web.1013/b28965.pdf
    For WebSphere, updated instructions will be released soon that allow all RuleAuthor features to be used.

  • Error when deploying SSIS package in 2012

    Hi,
    I am trying to deploy a SSIS package to 2012 version. But i am getting error as  below,
    TITLE: SQL Server Integration Services
    There was an exception while loading Script Task from XML: System.IO.FileNotFoundException: Could not load file or assembly 'Microsoft.VisualStudio.Tools.Applications, Version=11.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' or one of its dependencies.
    The system cannot find the file specified.
    File name: 'Microsoft.VisualStudio.Tools.Applications, Version=11.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a'
       at Microsoft.SqlServer.IntegrationServices.VSTA.VstaHelper.<CleanUp>b__1b()
       at Microsoft.SqlServer.IntegrationServices.VSTA.MtaExecution.Run(Action action)
       at Microsoft.SqlServer.IntegrationServices.VSTA.VstaHelper.CleanUp()
       at Microsoft.SqlServer.VSTAHosting.VSTAScriptingEngine.DisposeVstaHelper()
       at Microsoft.SqlServer.Dts.Tasks.ScriptTask.ScriptTask.MigrateVSTA21ScriptProject(XmlElement elemProj, IDTSInfoEvents events)
       at Microsoft.SqlServer.Dts.Tasks.ScriptTask.ScriptTask.LoadFromXML(XmlElement elemProj, IDTSInfoEvents events)
    There are 4 packages of same version,  i get this error only for 2 packages and other 2 am able to deploy successfully. Can someone tel mewhat would be the issue.
    the same package is successfully deployed from my colleague machine.
    Mano

    Hi Manon,
    According to the error message, the packages that cannot be deployed should include Script Task/Component. But the package that can be deployed without problem include Script Task/Component, right? If so, the issue should occur because certain Visual Studio
    Tools for Applications (VSTA) Runtime has been installed:
    Microsoft Visual Studio Tools for Application x64 Runtime3.0
    Microsoft Visual Studio Tools for Application x86 Runtime3.0
    You can check it from the Programs and Features panel. Then, you can install the exact VSTA Runtime from the
    \redist\VSTA\runtime\ folder of the SQL Server install media.
    Reference:
    https://connect.microsoft.com/SQLServer/feedback/details/776248/could-not-load-file-or-assembly-microsoft-visualstudio-tools-applications-core
    Regards,
    Mike Yin
    TechNet Community Support

  • Can you deploy an application sequenced with App-V v5 with SCCM 2007?

    We are currently in the process of upgrading to SCCM 2012.  We are also embarking on testing App-V v5.  Can we deploy sequenced applications from App-V v5 using SCCM 2007?  What limitations will exist with SCCM 2007?  What release of
    SCCM 2007 should we be at for App-V v5 sequenced applications to be deployed and/or streamed?

    This KB article is now available: Supported Configuration Manager and Microsoft Application Virtualization scenarios
    Please remember to click "Mark as Answer" or "Vote as Helpful" on the post that answers your question (or click "Unmark as Answer" if a marked post does not actually
    answer your question). This can be beneficial to other community members reading the thread.
    This forum post is my own opinion and does not necessarily reflect the opinion or view of my employer, Microsoft, its employees, or other MVPs.
    Twitter:
    @stealthpuppy | Blog:
    stealthpuppy.com |
    The Definitive Guide to Delivering Microsoft Office with App-V

  • Can you change a package to another one for free?

    I want to know if you can change a packa to a differnt one for free.  If not for free can you change it.

    You can upgrade for free, but you have to start a new contract at the time of upgrade.
    There are some useful help pages here, for BT Broadband customers only, on my personal website.
    BT Broadband customers - help with broadband, WiFi, networking, e-mail and phones.

  • Can you deploy device licenses using ARD?

    i tried to deploy device licenses through server on mac platform but it gives me a network volume error.  What can I do?

    If u just want to run the package then you can use Batch File (Keep Package in a folder) and call it by batch job.
    Follow below steps:
    In any Drive Create a folder called Build or any name--> Inside that create a folder "Config" for Config files and keep your configuration files if any
                                                           in Build or any name-->Create another folder "Folde_Where_Package"
                                                           in Build or any name-->Create another folder "Logs"
                                                           in Build or any name-->Create another folder "ETL_Jobs"
    Keep this in Note pad and save this by giving extension .BAT in folder ETL_Jobs
    set config1=D:\Config\Database.dtsConfig
    SET LOGFILE=..\Logs\Run_Log.txt
    dtexec  /REPORTING E /f "..\Folde_Where_Package\Pkg_Nmae1.dtsx" >> "%LOGFILE%"
    dtexec  /REPORTING E /f "..\Folde_Where_Package\Pkg_Nmae2.dtsx" >> "%LOGFILE%"
    Just double click on .BAT file it will execute your packages or can call this by using windows scheduler.
    you can do same thing by creating 2 separate folders for 2008 and 2012 packages and can run separately.
    http://social.msdn.microsoft.com/Forums/sqlserver/en-US/07e59dcd-7547-47b2-bcdd-3e188eef619a/how-to-run-a-ssis-package-using-bat-file?forum=sqlintegrationservices
    https://www.simple-talk.com/content/print.aspx?article=270
    http://www.mssqltips.com/sqlservertip/1775/different-ways-to-execute-a-sql-server-ssis-package/
    Thanks Shiven:) If Answer is Helpful, Please Vote

  • Save Crystal 2008 report as XI -- or can you run 2008 report in XI?

    Hi,
    Is it possible to save a report created in Crystal 2008 report as an XI verion? 
    If not, is it possible to run a report created in Crystal 2008 report in XI and Crystal Report Server XI if none of the new features in 2008 are used?
    I want to purchase an additional copy of the application, and am trying to decide which version I can use when the bulk of the reports are run on CRS XI...
    - JD

    Good feedback, I've a couple of  things I'm still curious about...
    1. Does the warning pop up every time you open the report created in 2008 in XI? 
    2. Including on the XI REPORT SERVER rather than the desktop client?
    I ask as I'm concerned that if I create reports and upload them to the XI server it'll cause no end of user annoyance if they have to click through a warning message every time the want to run/load the report.

  • Can you deploy Forms 11g in Tomcat?

    Or any other Open source web/application server?
    Can't we deploy a Forms (10g/11g) application developed by us, in a customer site, but not use OAS or WLS?
    Can't we use a open source AS like Tomcat, JBoss or Glassfish?
    Is OAS/WLS a MUST to deploy Forms?

    Another thread to confirm this: JBoss AS for Oracle Forms Deployment

  • Can you deploy a JSF application into Oracle Application Server 10g R2

    Dear Sirs...
    is it possible to deploy a JSF application developed using JDeveloper 10.1.3 into an oracle application server 10g R2 ?
    regards

    Dear Sirs...
    I tried to install the application on AS R2 but it did not work. The problem is that i did not build it using JDK 1.3, and it is really a big application, i have been working on it for few months. do i have to recreate that same application using JDK 1.3? please say no.
    best regards

  • Can you deploy Final Cut Express with ARD?

    Hi Folks,
    I have recently purchased ARD to help administer a suit of iMAC and 6 MAC Book Pros. I have an issue with Final Cut Express 4, in that it requires the licence information on application start up. I originally created an image with all of the software pre-installed and everything works apart from the licencing of FCE. I was hoping that ARD would solve the issue.
    I have tried to copy the existing FCE ID file from the ProApps folder from one computer to another – however it must hash the licence with system ID or something else as it still requires the licence info at start up? As suggested in another thread.
    https://discussions.apple.com/message/12514255#12514255
    So is there any way to install FCE 4 without the need to manually enter the product key?
    The Mac are running mountain lion and are all intel based.
    Any help or info would be very much appreciated.

    Yes, I've purchased it for my late 2010 MBA 13.  Runs pretty good.  Since it does what it does, it does run the CPU, fan and temp up a bit, but still ran perfectly fine.
    Cheers!

  • Can you deploy 3rd party root CA with WSUS?

    Is it possible?
    bostjanc

    Dont know if its included.
    I need to include Halcom Root CA (this is our certificate authority):
    http://social.technet.microsoft.com/wiki/contents/articles/19217.windows-and-windows-phone-8-ssl-root-certificate-program-may-2013.aspx
    bostjanc

  • Can't deploy archive in J2EE Preview

    When I try to deploy a war archive in the J2EE Preview, the deployment fails with a class not found error for a NetWeaver class.
    Reason: com.sap.engine.lib.converter.AbstractConverter; nested exception is:
            java.rmi.RemoteException:  class java.lang.NoClassDefFoundError: com.sap
    .engine.lib.converter.AbstractConverter
    The same error occurs if I try to deploy using telnet or the Developer Studio.  I successfully deployed the same archive  a few days ago so it seems like something has changed in my environment.  Any idea where I should look?  I've looked at various NetWeaver jar files but haven't found one containing AbstractConverter.

    HI Jerry,
    I do not see your authentication step when you work with SAP J2EE server.
    Can you deploy the file without any authentication ?
    No, you must meet the authentication step.
    This is the step that you meet A BUG.
    If you enter the Administrator and <master-password>,
    the below errors will show.
    Exception occurred during the 'deploy' operation.
    Cause:com.sap.engine.services.dc.api.AuthenticationException: BaseLoginException.Cannot get initial context.
    Reason: The user account is either expired, or not valid yet.
    Exception:
    com.sap.ide.eclipse.deployer.api.AuthenticationException: com.sap.engine.services.dc.api.AuthenticationException: BaseLoginException.Cannot get initial context.
    Reason: The user account is either expired, or not valid yet.
         at com.sap.ide.eclipse.deployer.dc.DCClientImpl.<init>(DCClientImpl.java:47)
         at com.sap.ide.eclipse.deployer.dc.DCClientFactoryImpl.createClient(DCClientFactoryImpl.java:80)
         at com.sap.ide.eclipse.deployer.DeployerPlugin.getClient(DeployerPlugin.java:181)
         at com.sap.ide.eclipse.j2ee.engine.deploy.view.util.UIUtils.getClient(UIUtils.java:399)
         at com.sap.ide.eclipse.j2ee.engine.deploy.view.deploy.action.DeployAction$1.run(DeployAction.java:135)
         at org.eclipse.core.internal.jobs.Worker.run(Worker.java:76)
    Caused by: com.sap.engine.services.dc.api.AuthenticationException: BaseLoginException.Cannot get initial context.
    Reason: The user account is either expired, or not valid yet.
         at com.sap.engine.services.dc.api.session.impl.SessionImpl.checkForTicketException(SessionImpl.java:230)
         at com.sap.engine.services.dc.api.session.impl.SessionImpl.getContext(SessionImpl.java:181)
         at com.sap.engine.services.dc.api.session.impl.SessionImpl.<init>(SessionImpl.java:102)
         at com.sap.engine.services.dc.api.session.impl.SessionFactoryImpl.newSession(SessionFactoryImpl.java:24)
         at com.sap.engine.services.dc.api.impl.ClientFactoryImpl.createClient(ClientFactoryImpl.java:62)
         at com.sap.ide.eclipse.deployer.dc.DCClientImpl.<init>(DCClientImpl.java:42)
         ... 5 more
    Caused by: com.sap.engine.services.security.exceptions.BaseLoginException: The user account is either expired, or not valid yet.
         at com.sap.engine.services.security.login.FastLoginContext.login(FastLoginContext.java:199)
         at com.sap.engine.services.security.remoteimpl.login.RemoteLoginContextHelperImpl.login(RemoteLoginContextHelperImpl.java:78)
         at com.sap.engine.services.security.remoteimpl.login.RemoteLoginContextHelperImplp4_Skel.dispatch(RemoteLoginContextHelperImplp4_Skel.java:64)
         at com.sap.engine.services.rmi_p4.P4Message.process(P4Message.java:225)
         at com.sap.engine.services.cross.fca.MessageReader.run(MessageReader.java:59)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:140)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:164)
    Thus, I think you not use the SAP NetWeaver J2EE Preview Edition (Release SAP NetWeaver™ 2007).
    Please try !!(The time to install and test is not over 30 minutes.)

  • I have deployed SSIS Package to Integration Services Server, Can i still call them in Parent Package

    i have deployed  SSIS Package to Integration Services Server, Can i  still call them in Parent Package

    Hello,
    In SSIS 2008 you have to adjust your parent package in Visual Studio and point to the deployed package, as ArthurZ stated.
    In SSIS 2012 with projects in project deployment mode this has become easier: you can call the child package in your project from the main package and it will use the package in the development. then you can deploy the project ot SSISDB and the
    Main package in there will call the child packages in the SSISDB.
    Jan D'Hondt - SQL server BI development

  • Will the reports developed in sql server 2008 r2 BIDS work when deployed on sql server 2012 reporting manager

    Will the reports developed in sql server 2008 r2 BIDS work when deployed on sql server 2012 reporting manager?
    when I check on Microsoft site it says
    Reports are not upgraded when you upload a report definition file directly to the report server
    or SharePoint site. Upgrading a report definition in SQL Server Data Tools is the only way to upgrade the .rdl file.
    When you open an .rdl file in Report Designer in SQL Server Data Tools (SSDT), if the report was
    created for a previous namespace, Report Designer automatically creates a backup file and upgrades the report to the current namespace.
    This is the only way you can upgrade a report definition file.
    Now here is another confusing statement which says
    You can upload an .rdl file created in an earlier version of Reporting Services to a SQL Server
    2012 report server and it is automatically upgraded on first use. The report server stores the report definition file in the original format. The report is automatically upgraded the first time it is viewed, but the stored report definition file remains
    unchanged.
    All I want to know is if I deploy a rdl made in 2008 r2 to 2012 will it work on the report manager of
    2012?
    <o:p>
    </o:p>
    Mudassar

    I have tested this fucntionality and can confirm that ssrs 2008 r2 reports work when you deploy them on new ssrs 2012 report manager .
    No Migration is required .
    I didnt even moved report server dbs .All I did is just deployed reports on the report manager and it worked .
    "You
    can upload an .rdl file created in an earlier version of Reporting Services to a SQL Server 2012 report server and it is automatically upgraded on first use. "
    Microsoft needs to correct this the documentation is misleading
    Mudassar

  • How to deploy and execute SSIS 2012 packages when only SSDT is installed

    Hi, I am facing a weird situation where we did an upgrade for visual studio to vs 2102 on all the dev machines and as part of that moved to SSDT from BIDS but all the database is still SQL Server 2008 R2. Now I have a few SSIS 2012 packages which I cannot
    schedule & run because DTEXEC.exe is not compatible and I get all sorts of version & “Package Load error 0xC0010014 in CPackage::LoadFromXML” error even though I set it up in 32-bit mode and was trying to save it to msdb. I knew I will not be
    able to schedule this as a job in SQL Server Agent but even saving the package does not work.
    Thanks in advance............
    Ione

    I doubt 2012 ssis packages are backwards compatible with 2008r2. 2008r2 doesn't know anything about the project deployment model and i'm sure there's new tasks and connectors in 2012 so the package deployment model ssis packages won't work either.
    You will need a sql 2012 integration services service installed and running somewhere. You need this to execute your 2012 packages
    Jakub @ Adelaide, Australia Blog

Maybe you are looking for

  • Problem with java look and feel

    Hi! This is my first time posting here. Do apologize me if I am not familiar with the regulations here. Thanks! Currently, I am developing a project using NetBeans IDE. It is using RMI, and some basic UI. I am facing the following error when I tried

  • My mac froze after connecting it to AirPlay and now I can't get it to reboot. Help!

    I was hooking my MacBook Pro up to my dad's Apple TV receiver via AirPlay. The Mac display began changing like it would be mirrored, but it never started to mirror, and my mac froze. 10 min later still froze I shut it down via the power button. When

  • Iphoto Disappeared

    Normally when I connect my iPhone or my iphoto iPad displays, but for three days he disappeared I have him to look in the applications and partouts poutant I do not have him to find.

  • How can I get a Leopard Install Disk?

    Hi there, I have a 13" MacBook Mid-2007 model and it ran into some problems, I got a Apple MacBook 13" Mac OS X LEOPARD 10.5.6 disk off eBay, but I get an error everytime I boot, says "Mac OS X cannot be installed on the computer." Also, I'd kinda li

  • TS3694 iphone stuck in recovery

    I tried to update my iphone 3g using iTunes and now it is stuck in recovery mode with an error code 1015. Please help. Im not confident using any Youtube suggested sites as i dont know what they will eventually do to my phone, or if they actually wor