dbTalk Databases Forums  

moving a dts package

microsoft.public.sqlserver.dts microsoft.public.sqlserver.dts


Discuss moving a dts package in the microsoft.public.sqlserver.dts forum.



Reply
 
Thread Tools Display Modes
  #1  
Old   
Paul
 
Posts: n/a

Default moving a dts package - 10-20-2005 , 11:00 AM






Hi I have a dts package that connects to an oracle database and an MSSQL
database and moves some data from the MSSQL dbase to the Oracle dbase.
I need to move the package to a different server that is not connected via a
network. Just wondering if the dts package can be copied onto media (like a
file) and if so how?
Thanks.--
Paul G
Software engineer.

Reply With Quote
  #2  
Old   
SQL
 
Posts: n/a

Default RE: moving a dts package - 10-20-2005 , 11:30 AM






Save the file as a structured storage file

http://sqlservercode.blogspot.com/



"Paul" wrote:

Quote:
Hi I have a dts package that connects to an oracle database and an MSSQL
database and moves some data from the MSSQL dbase to the Oracle dbase.
I need to move the package to a different server that is not connected via a
network. Just wondering if the dts package can be copied onto media (like a
file) and if so how?
Thanks.--
Paul G
Software engineer.

Reply With Quote
  #3  
Old   
Paul
 
Posts: n/a

Default RE: moving a dts package - 10-20-2005 , 11:40 AM



ok thanks for the information.
--
Paul G
Software engineer.


"SQL" wrote:

Quote:
Save the file as a structured storage file

http://sqlservercode.blogspot.com/



"Paul" wrote:

Hi I have a dts package that connects to an oracle database and an MSSQL
database and moves some data from the MSSQL dbase to the Oracle dbase.
I need to move the package to a different server that is not connected via a
network. Just wondering if the dts package can be copied onto media (like a
file) and if so how?
Thanks.--
Paul G
Software engineer.

Reply With Quote
  #4  
Old   
Allan Mitchell
 
Posts: n/a

Default Re: moving a dts package - 10-20-2005 , 02:14 PM



Hello Paul,

You could save it as a Structured storage file or you can even export the
contents of msdb.dbo.sysdtspackages to a text file and take that to the other
PC. You could also save as a VB .bas file.



Allan




Quote:
Hi I have a dts package that connects to an oracle database and an
MSSQL
database and moves some data from the MSSQL dbase to the Oracle dbase.
I need to move the package to a different server that is not connected
via a
network. Just wondering if the dts package can be copied onto media
(like a
file) and if so how?
Thanks.--
Paul G
Software engineer.



Reply With Quote
  #5  
Old   
Paul
 
Posts: n/a

Default Re: moving a dts package - 10-20-2005 , 02:29 PM



Hi thanks for the information. Just wondering how to save this in these
different formats? The package shows up in enterprise manager and is this
where I can save it? How do you export the contents and save it to a text
file?
--
Paul G
Software engineer.


"Allan Mitchell" wrote:

Quote:
Hello Paul,

You could save it as a Structured storage file or you can even export the
contents of msdb.dbo.sysdtspackages to a text file and take that to the other
PC. You could also save as a VB .bas file.



Allan




Hi I have a dts package that connects to an oracle database and an
MSSQL
database and moves some data from the MSSQL dbase to the Oracle dbase.
I need to move the package to a different server that is not connected
via a
network. Just wondering if the dts package can be copied onto media
(like a
file) and if so how?
Thanks.--
Paul G
Software engineer.




Reply With Quote
  #6  
Old   
Allan Mitchell
 
Posts: n/a

Default Re: moving a dts package - 10-20-2005 , 02:36 PM



Hello Paul,

You could export using a DTS package. You will not see the table pop up
in the designer dropdown so you will need to use a query and say

SELECT * FROM dbo.sysdtspackages.


The SSF and VB.bas file then you can se "Save As"


Allan

Quote:
Hi thanks for the information. Just wondering how to save this in
these different formats? The package shows up in enterprise manager
and is this where I can save it? How do you export the contents and
save it to a text file?

"Allan Mitchell" wrote:

Hello Paul,

You could save it as a Structured storage file or you can even export
the contents of msdb.dbo.sysdtspackages to a text file and take that
to the other PC. You could also save as a VB .bas file.

Allan

Hi I have a dts package that connects to an oracle database and an
MSSQL
database and moves some data from the MSSQL dbase to the Oracle
dbase.
I need to move the package to a different server that is not
connected
via a
network. Just wondering if the dts package can be copied onto media
(like a
file) and if so how?
Thanks.--
Paul G
Software engineer.



Reply With Quote
  #7  
Old   
Paul
 
Posts: n/a

Default Re: moving a dts package - 10-20-2005 , 02:46 PM



Hi thanks for the information. So from query analyzer would I just use
something like

SELECT * FROM dbo.sysdtspackages.
Save AS newfilename.dts
and just run this from the master dbase.


--
Paul G
Software engineer.


"Allan Mitchell" wrote:

Quote:
Hello Paul,

You could export using a DTS package. You will not see the table pop up
in the designer dropdown so you will need to use a query and say

SELECT * FROM dbo.sysdtspackages.


The SSF and VB.bas file then you can se "Save As"


Allan

Hi thanks for the information. Just wondering how to save this in
these different formats? The package shows up in enterprise manager
and is this where I can save it? How do you export the contents and
save it to a text file?

"Allan Mitchell" wrote:

Hello Paul,

You could save it as a Structured storage file or you can even export
the contents of msdb.dbo.sysdtspackages to a text file and take that
to the other PC. You could also save as a VB .bas file.

Allan

Hi I have a dts package that connects to an oracle database and an
MSSQL
database and moves some data from the MSSQL dbase to the Oracle
dbase.
I need to move the package to a different server that is not
connected
via a
network. Just wondering if the dts package can be copied onto media
(like a
file) and if so how?
Thanks.--
Paul G
Software engineer.




Reply With Quote
  #8  
Old   
SQL
 
Posts: n/a

Default Re: moving a dts package - 10-20-2005 , 02:48 PM



Open up the package
go to Package/Save as, select SSF from the location, give it a name and save
it

http://sqlservercode.blogspot.com/


"Paul" wrote:

Quote:
Hi thanks for the information. Just wondering how to save this in these
different formats? The package shows up in enterprise manager and is this
where I can save it? How do you export the contents and save it to a text
file?
--
Paul G
Software engineer.


"Allan Mitchell" wrote:

Hello Paul,

You could save it as a Structured storage file or you can even export the
contents of msdb.dbo.sysdtspackages to a text file and take that to the other
PC. You could also save as a VB .bas file.



Allan




Hi I have a dts package that connects to an oracle database and an
MSSQL
database and moves some data from the MSSQL dbase to the Oracle dbase.
I need to move the package to a different server that is not connected
via a
network. Just wondering if the dts package can be copied onto media
(like a
file) and if so how?
Thanks.--
Paul G
Software engineer.




Reply With Quote
  #9  
Old   
Paul
 
Posts: n/a

Default Re: moving a dts package - 10-20-2005 , 02:51 PM



ok thanks was able to save it.
--
Paul G
Software engineer.


"SQL" wrote:

Quote:
Open up the package
go to Package/Save as, select SSF from the location, give it a name and save
it

http://sqlservercode.blogspot.com/


"Paul" wrote:

Hi thanks for the information. Just wondering how to save this in these
different formats? The package shows up in enterprise manager and is this
where I can save it? How do you export the contents and save it to a text
file?
--
Paul G
Software engineer.


"Allan Mitchell" wrote:

Hello Paul,

You could save it as a Structured storage file or you can even export the
contents of msdb.dbo.sysdtspackages to a text file and take that to the other
PC. You could also save as a VB .bas file.



Allan




Hi I have a dts package that connects to an oracle database and an
MSSQL
database and moves some data from the MSSQL dbase to the Oracle dbase.
I need to move the package to a different server that is not connected
via a
network. Just wondering if the dts package can be copied onto media
(like a
file) and if so how?
Thanks.--
Paul G
Software engineer.




Reply With Quote
  #10  
Old   
Allan Mitchell
 
Posts: n/a

Default Re: moving a dts package - 10-20-2005 , 02:57 PM



Hello Paul,

No.

You could use a DTS package to do the export to text file and then import
it back using dts into msdb.dbo.sysdtspackages.

Allan



Quote:
Hi thanks for the information. So from query analyzer would I just
use something like

SELECT * FROM dbo.sysdtspackages.
Save AS newfilename.dts
and just run this from the master dbase.
"Allan Mitchell" wrote:

Hello Paul,

You could export using a DTS package. You will not see the table pop
up in the designer dropdown so you will need to use a query and say

SELECT * FROM dbo.sysdtspackages.

The SSF and VB.bas file then you can se "Save As"

Allan

Hi thanks for the information. Just wondering how to save this in
these different formats? The package shows up in enterprise manager
and is this where I can save it? How do you export the contents and
save it to a text file?

"Allan Mitchell" wrote:

Hello Paul,

You could save it as a Structured storage file or you can even
export the contents of msdb.dbo.sysdtspackages to a text file and
take that to the other PC. You could also save as a VB .bas file.

Allan

Hi I have a dts package that connects to an oracle database and an
MSSQL
database and moves some data from the MSSQL dbase to the Oracle
dbase.
I need to move the package to a different server that is not
connected
via a
network. Just wondering if the dts package can be copied onto
media
(like a
file) and if so how?
Thanks.--
Paul G
Software engineer.



Reply With Quote
Reply




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Powered by vBulletin Version 3.5.3
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.