Using SSIS

  • if the packages are to be run against a single database/server, then it would be best to install ssis on that same machine, correct?

    then bids/ssis needs to be installed locally on the computers of people wanting to trigger the packages. in my case, the some of the tasks.

  • psc032802 (12/2/2014)


    if the packages are to be run against a single database/server, then it would be best to install ssis on that same machine, correct?

    then bids/ssis needs to be installed locally on the computers of people wanting to trigger the packages. in my case, the some of the tasks.

    I think we need to take a step back and start from the beginning.

    Who built your SQL Server system? What is your position / job title? How much experience do you have with SQL Server?

    Brandie Tarvin, MCITP Database AdministratorLiveJournal Blog: http://brandietarvin.livejournal.com/[/url]On LinkedIn!, Google+, and Twitter.Freelance Writer: ShadowrunLatchkeys: Nevermore, Latchkeys: The Bootleg War, and Latchkeys: Roscoes in the Night are now available on Nook and Kindle.

  • No, BIDS only needs to be installed for people creating packages. You can run them in various ways such as from sql agent or from command line dtutil or as has been done by one of our developers, by writing a web page for the users which calls a stored procedure which starts a sql agent job to import their data.

    The procedure contains: EXEC msdb.dbo.sp_start_job N'Import Order' - it works but I'm not sure if it's the best way.

  • Brandie Tarvin (12/2/2014)


    psc032802 (12/2/2014)


    if the packages are to be run against a single database/server, then it would be best to install ssis on that same machine, correct?

    then bids/ssis needs to be installed locally on the computers of people wanting to trigger the packages. in my case, the some of the tasks.

    I think we need to take a step back and start from the beginning.

    Who built your SQL Server system? What is your position / job title? How much experience do you have with SQL Server?

    FYI: I am asking these questions so we have a better idea of exactly what information we need to give you. So please do answer them so we can tailor our answers more appropriately.

    Brandie Tarvin, MCITP Database AdministratorLiveJournal Blog: http://brandietarvin.livejournal.com/[/url]On LinkedIn!, Google+, and Twitter.Freelance Writer: ShadowrunLatchkeys: Nevermore, Latchkeys: The Bootleg War, and Latchkeys: Roscoes in the Night are now available on Nook and Kindle.

  • i have a similiar question: i have SSMS 2008r2. Our database server has SSIS installed. I want to view the packages. Do i need to install SSIS on my machine?

  • Have people stopped taking time to learn the technology they want to use before trying to use it?



    Alvin Ramard
    Memphis PASS Chapter[/url]

    All my SSC forum answers come with a money back guarantee. If you didn't like the answer then I'll gladly refund what you paid for it.

    For best practices on asking questions, please read the following article: Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • jliu 81028 (12/3/2014)


    i have a similiar question: i have SSMS 2008r2. Our database server has SSIS installed. I want to view the packages. Do i need to install SSIS on my machine?

    No. Just BIDS or Visual Studio with the BIDS addons.

    Brandie Tarvin, MCITP Database AdministratorLiveJournal Blog: http://brandietarvin.livejournal.com/[/url]On LinkedIn!, Google+, and Twitter.Freelance Writer: ShadowrunLatchkeys: Nevermore, Latchkeys: The Bootleg War, and Latchkeys: Roscoes in the Night are now available on Nook and Kindle.

  • thank you. before i ask my dba to install BIDS on my machine, is there any free version that i can play around first?

  • i used to be able to use DTS to transfer data from source to destination in sql 2000. now we upgraded to sql 2008r2, my previlige is deprived. refreshing my test db from production requires a ticket. huh.

  • jliu 81028 (12/3/2014)


    thank you. before i ask my dba to install BIDS on my machine, is there any free version that i can play around first?

    BIDS is part of the SQL Server install. Up to a certain point, there are are no SQL Server eval versions (except for 2014). I don't recommend using a version of BIDS different from your SQL Server because you'll either A) Be unable to read the package because the package was made with a later version than the BIDS you have or B) Upgrade the package which may prevent some components of it from acting properly while you're looking at it.

    Plus an upgraded package won't work with your version of SQL Server if you push it back up to the server.

    That said, the only eval version of SQL Server I know of is SQL 2014. And enough has changed between that and SQL 2008 that I wouldn't trust the 2014 Visual Studio with my 2008 package if I were brand new to learning SQL Server and wanted to know how 2008 things worked.

    Brandie Tarvin, MCITP Database AdministratorLiveJournal Blog: http://brandietarvin.livejournal.com/[/url]On LinkedIn!, Google+, and Twitter.Freelance Writer: ShadowrunLatchkeys: Nevermore, Latchkeys: The Bootleg War, and Latchkeys: Roscoes in the Night are now available on Nook and Kindle.

  • jliu 81028 (12/3/2014)


    i used to be able to use DTS to transfer data from source to destination in sql 2000. now we upgraded to sql 2008r2, my previlige is deprived. refreshing my test db from production requires a ticket. huh.

    Umm, not sure what this means, but it sounds like an internal security issue. DTS Import / Export Wizard still works fine in 2k8 R2.

    Brandie Tarvin, MCITP Database AdministratorLiveJournal Blog: http://brandietarvin.livejournal.com/[/url]On LinkedIn!, Google+, and Twitter.Freelance Writer: ShadowrunLatchkeys: Nevermore, Latchkeys: The Bootleg War, and Latchkeys: Roscoes in the Night are now available on Nook and Kindle.

  • I am not a DBA. Not a developer either. More of an end user of the data typically analyzing it.

    I'm mostly interested in the data profile task in order to find out more about the data itself. I do not care about its etl capabilities, error logging, real time monitoring, etc. I just want to be able to run the data profile task so I can get my hands on the information it produces.

    Brandie Tarvin (12/2/2014)


    psc032802 (12/2/2014)


    if the packages are to be run against a single database/server, then it would be best to install ssis on that same machine, correct?

    then bids/ssis needs to be installed locally on the computers of people wanting to trigger the packages. in my case, the some of the tasks.

    I think we need to take a step back and start from the beginning.

    Who built your SQL Server system? What is your position / job title? How much experience do you have with SQL Server?

  • thanks for replying me again. if I ask my dba to install BIDS on machine, what do you think he'll be concerned about? security? my skill/knowledge of SSIS?

  • psc032802 (12/3/2014)


    I am not a DBA. Not a developer either. More of an end user of the data typically analyzing it.

    I'm mostly interested in the data profile task in order to find out more about the data itself. I do not care about its etl capabilities, error logging, real time monitoring, etc. I just want to be able to run the data profile task so I can get my hands on the information it produces.

    Brandie Tarvin (12/2/2014)


    psc032802 (12/2/2014)


    if the packages are to be run against a single database/server, then it would be best to install ssis on that same machine, correct?

    then bids/ssis needs to be installed locally on the computers of people wanting to trigger the packages. in my case, the some of the tasks.

    I think we need to take a step back and start from the beginning.

    Who built your SQL Server system? What is your position / job title? How much experience do you have with SQL Server?

    There are few things you can do.

    1) Ask a DBA to create a package for you with the data profiler task in it and set it up to run on a schedule.

    2) Ask to have the SQL Server client tools installed on your machine (including BIDS) and create the package yourself. If you have SSIS installed on your local machine, then (depending on your security level) you may or may not be able to run the package straight from BIDS and get your results on your desktop.

    3) Ask to have the SQL Server client tools installed on your machine (including BIDS) and create the package yourself. Ask a DBA to push the package up to the server that has SSIS installed (it does NOT have to be the database server) and create a job to run the package for you.

    There are many options here. I recommend reading the basics of SSIS from Books Online. If that doesn't answer your questions, then please let us know what other questions you have.

    Brandie Tarvin, MCITP Database AdministratorLiveJournal Blog: http://brandietarvin.livejournal.com/[/url]On LinkedIn!, Google+, and Twitter.Freelance Writer: ShadowrunLatchkeys: Nevermore, Latchkeys: The Bootleg War, and Latchkeys: Roscoes in the Night are now available on Nook and Kindle.

  • jliu 81028 (12/3/2014)


    thanks for replying me again. if I ask my dba to install BIDS on machine, what do you think he'll be concerned about? security? my skill/knowledge of SSIS?

    I have no idea. I'm not your DBA and I don't know his opinions on these subjects.

    EDIT: If it were me and you were in my workplace. My first question would be "Why do you want it?" in an effort to ascertain what business reasons are behind the request. Licenses cost money. It may be cheaper if you could convince someone to part with an old SQL 2008 Developer Edition of SQL Server for installation (one they aren't using anymore, obviously).

    Brandie Tarvin, MCITP Database AdministratorLiveJournal Blog: http://brandietarvin.livejournal.com/[/url]On LinkedIn!, Google+, and Twitter.Freelance Writer: ShadowrunLatchkeys: Nevermore, Latchkeys: The Bootleg War, and Latchkeys: Roscoes in the Night are now available on Nook and Kindle.

Viewing 15 posts - 16 through 30 (of 40 total)

You must be logged in to reply to this topic. Login to reply