BAckup a SQL Server 2000 datbase on our server to a database on a hosted SQL Server 2005

  • Hi

    We use a hosted service to backup our databases on a daily basis. With SQL Server 2000 copying Database objects in a dts package and arranging for it to run automatically was a fairly simple procedure.

    How do you do this with SQL Server 2005. I have started to look at SSIS but it seems that this will take many many days to understand. I need to backup our database off site within the next day or so.

    I tried to use the new 'Copy Database' manually but was told that SQL Server Agent was not run on the destination (Hosted) server so I dont think automating the 'Copy Database' task is an option.

    Your feedback and assistance would be much appreciated.

  • "With SQL Server 2000 copying Database objects in a dts package and arranging for it to run automatically was a fairly simple procedure."

    What kind of objects are you reffering to above?

    What you don't know won't hurt you but what you know will make you plan to know better
  • Thanks for the reply

    I want to copy Tables, Views, Table triggers and possible stored procedures as well.

  • You can do this by creating a SSIS package through the Data Import and Export Wizard.

    Right click the db that you want to copy its objects and follow the path: Taks>>Export Data. This will show you the export wizard.

    When done create a job that will excute the ssis package.

    Hope this helps.

    What you don't know won't hurt you but what you know will make you plan to know better
  • Thanks for the reply, the only problem with tyhis is we have to go into each of the 200 tables and click 'drop & create destination table.

    Is there a way we can set this for all tables in one action?

  • Are you upgrading your 2000 database to 2005? If so, you can still run your 2000 DTS packages in 2005. Or you can convert them using the Package Upgrade Wizard. See the following article:

    http://qa.sqlservercentral.com/articles/SQL+Server+2005+-+SSIS/upgradingsqlserver2000dtspackagestossis/2201/

  • Take a look at the "Transfer SQL Server Objects Task" in SSIS. It think it should do what I understand you're trying to do.

    You could also consider doing a backup from one server and restore on the other. SSIS can do that for you too.



    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]

  • Are you not backing up data? Or are you just trying to get schema data?

Viewing 8 posts - 1 through 7 (of 7 total)

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