Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

run DTS for SQL2005 2

Status
Not open for further replies.

Cirrus9

IS-IT--Management
Aug 21, 2001
248
US
I have a DTS running on a local server. It converts an mdb to SQL by droppping all tables, recreating them and loading the data. I load these tables onto a SQL2000 hosting server for a website.

I have about 250MB of data in the mdb and it peaks the transaction file on my hosting server at 875MB. I am only allowed 500 so I have to find an alternate method.

I asked if I could turn off transction log services but I found out that in SQL2000, It turns on or off for the entire server. The hosting company won't let me do that but they tell me that in SQL2005 you can designate transcation log services at the db level and they can move to 2005.

My DTS is written on a SQL2000 machine and I need to know if I can connect to SQL2005 server and run a DTS package from a SQL2000 server.

I can use any suggestions or ideas that anyone may have. I am in a serious time crunch. Thanks for all of your help in advance

 
Temporarily change the recovery model to simple

[sub]____________ signature below ______________
The worst mistake you'll ever make is to do something simply the way you know how while ignoring the way it should be done[/sub]
 
I don't have an interface for the SQL server that will allow me to do it. I have to call them every time I want to go to simple mode and then they set it back when I am finished. The DTS is set to run every night.
 
You can set the recovery mode with T-SQL using a SQL Taks

Code:
ALTER DATABASE [databasename] 
SET RECOVERY SIMPLE 
GO

[sub]____________ signature below ______________
The worst mistake you'll ever make is to do something simply the way you know how while ignoring the way it should be done[/sub]
 
That depends on your security level of course

[sub]____________ signature below ______________
The worst mistake you'll ever make is to do something simply the way you know how while ignoring the way it should be done[/sub]
 
I read about the SSIS project to run a DTS package and I asked the hosting company but I won't have control over the 2005 server. I am trying to execute the package to run from 2000 and insert the records into a 2005 server. Will that work?
 
yes. in reality it is just another data store at that point

[sub]____________ signature below ______________
The worst mistake you'll ever make is to do something simply the way you know how while ignoring the way it should be done[/sub]
 
Great I wanted to be sure before I made a change over to a new server. I appreciate your help guys!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top