![]() | |
![]() |
| | Thread Tools | Display Modes |
#41
| |||
| |||
|
|
As the DTS packages that i need to transfer into the server will also need to be scheduled. Is your suggested way to import them into "Data Transformation Services", but then how can they be scheduled. |
|
Or create a job and assign the step to the scripted .dts file from the old server, however this doesn't appear to import the DTS package into "Data Transformation Services" like i'd have expected within SQL2000. |
|
Also if i reference the DTS script file the following ||||| appears within the step. Is this as you'd expect? |
#42
| |||
| |||
|
|
Ian, I will try to answer inline. As the DTS packages that i need to transfer into the server will also need to be scheduled. Is your suggested way to import them into "Data Transformation Services", but then how can they be scheduled. I personally keep DTS packages stored in Structured File Storage for a number of reasons. So I would just copy them out and put them in the proper folder. From SSMS you can export packages from a server, one at a time, to files. Then, if you like keeping them in msdb you can import the files, one at a time. If they were scheduled on your original server, there are SQL Agent jobs to cause those schedules to execute. Script those jobs using SSMS and then use the scripts to recreate your 2005 server's jobs. You may need to make changes depending on where you keep your packages, what logins exist on the new server, etc. Since I wanted the same basic server settings for everything I keep in msdb and master here is what I did. 1. Install fresh server with SQL Server 2005, then shut down the SQL services. 2. Copied the detached database files from the old server to the new server. Be sure that msdb (and master, if you choose that) files overwrite the freshly installed msdb mdf and ldf. 3. Restart the server, which upgrades msdb to 2005, and keeps all my packages, job definitions, etc. (If you also copied master you keep your logins as well.) Or create a job and assign the step to the scripted .dts file from the old server, however this doesn't appear to import the DTS package into "Data Transformation Services" like i'd have expected within SQL2000. No, as noted below the DTS package is independent of the SQL Agent job that runs it. (It may not look that way when you schedule the job from DTS, but they are independent objects.) Also if i reference the DTS script file the following ||||| appears within the step. Is this as you'd expect? I don't have an answer for this question. Sorry. RLF |
#43
| |||
| |||
|
|
Ian, I will try to answer inline. As the DTS packages that i need to transfer into the server will also need to be scheduled. Is your suggested way to import them into "Data Transformation Services", but then how can they be scheduled. I personally keep DTS packages stored in Structured File Storage for a number of reasons. So I would just copy them out and put them in the proper folder. From SSMS you can export packages from a server, one at a time, to files. Then, if you like keeping them in msdb you can import the files, one at a time. If they were scheduled on your original server, there are SQL Agent jobs to cause those schedules to execute. Script those jobs using SSMS and then use the scripts to recreate your 2005 server's jobs. You may need to make changes depending on where you keep your packages, what logins exist on the new server, etc. Since I wanted the same basic server settings for everything I keep in msdb and master here is what I did. 1. Install fresh server with SQL Server 2005, then shut down the SQL services. 2. Copied the detached database files from the old server to the new server. Be sure that msdb (and master, if you choose that) files overwrite the freshly installed msdb mdf and ldf. 3. Restart the server, which upgrades msdb to 2005, and keeps all my packages, job definitions, etc. (If you also copied master you keep your logins as well.) Or create a job and assign the step to the scripted .dts file from the old server, however this doesn't appear to import the DTS package into "Data Transformation Services" like i'd have expected within SQL2000. No, as noted below the DTS package is independent of the SQL Agent job that runs it. (It may not look that way when you schedule the job from DTS, but they are independent objects.) Also if i reference the DTS script file the following ||||| appears within the step. Is this as you'd expect? I don't have an answer for this question. Sorry. RLF |
#44
| |||
| |||
|
|
Ian, I will try to answer inline. As the DTS packages that i need to transfer into the server will also need to be scheduled. Is your suggested way to import them into "Data Transformation Services", but then how can they be scheduled. I personally keep DTS packages stored in Structured File Storage for a number of reasons. So I would just copy them out and put them in the proper folder. From SSMS you can export packages from a server, one at a time, to files. Then, if you like keeping them in msdb you can import the files, one at a time. If they were scheduled on your original server, there are SQL Agent jobs to cause those schedules to execute. Script those jobs using SSMS and then use the scripts to recreate your 2005 server's jobs. You may need to make changes depending on where you keep your packages, what logins exist on the new server, etc. Since I wanted the same basic server settings for everything I keep in msdb and master here is what I did. 1. Install fresh server with SQL Server 2005, then shut down the SQL services. 2. Copied the detached database files from the old server to the new server. Be sure that msdb (and master, if you choose that) files overwrite the freshly installed msdb mdf and ldf. 3. Restart the server, which upgrades msdb to 2005, and keeps all my packages, job definitions, etc. (If you also copied master you keep your logins as well.) Or create a job and assign the step to the scripted .dts file from the old server, however this doesn't appear to import the DTS package into "Data Transformation Services" like i'd have expected within SQL2000. No, as noted below the DTS package is independent of the SQL Agent job that runs it. (It may not look that way when you schedule the job from DTS, but they are independent objects.) Also if i reference the DTS script file the following ||||| appears within the step. Is this as you'd expect? I don't have an answer for this question. Sorry. RLF |
#45
| |||
| |||
|
|
Ian, I will try to answer inline. As the DTS packages that i need to transfer into the server will also need to be scheduled. Is your suggested way to import them into "Data Transformation Services", but then how can they be scheduled. I personally keep DTS packages stored in Structured File Storage for a number of reasons. So I would just copy them out and put them in the proper folder. From SSMS you can export packages from a server, one at a time, to files. Then, if you like keeping them in msdb you can import the files, one at a time. If they were scheduled on your original server, there are SQL Agent jobs to cause those schedules to execute. Script those jobs using SSMS and then use the scripts to recreate your 2005 server's jobs. You may need to make changes depending on where you keep your packages, what logins exist on the new server, etc. Since I wanted the same basic server settings for everything I keep in msdb and master here is what I did. 1. Install fresh server with SQL Server 2005, then shut down the SQL services. 2. Copied the detached database files from the old server to the new server. Be sure that msdb (and master, if you choose that) files overwrite the freshly installed msdb mdf and ldf. 3. Restart the server, which upgrades msdb to 2005, and keeps all my packages, job definitions, etc. (If you also copied master you keep your logins as well.) Or create a job and assign the step to the scripted .dts file from the old server, however this doesn't appear to import the DTS package into "Data Transformation Services" like i'd have expected within SQL2000. No, as noted below the DTS package is independent of the SQL Agent job that runs it. (It may not look that way when you schedule the job from DTS, but they are independent objects.) Also if i reference the DTS script file the following ||||| appears within the step. Is this as you'd expect? I don't have an answer for this question. Sorry. RLF |
#46
| |||
| |||
|
|
Ian, I will try to answer inline. As the DTS packages that i need to transfer into the server will also need to be scheduled. Is your suggested way to import them into "Data Transformation Services", but then how can they be scheduled. I personally keep DTS packages stored in Structured File Storage for a number of reasons. So I would just copy them out and put them in the proper folder. From SSMS you can export packages from a server, one at a time, to files. Then, if you like keeping them in msdb you can import the files, one at a time. If they were scheduled on your original server, there are SQL Agent jobs to cause those schedules to execute. Script those jobs using SSMS and then use the scripts to recreate your 2005 server's jobs. You may need to make changes depending on where you keep your packages, what logins exist on the new server, etc. Since I wanted the same basic server settings for everything I keep in msdb and master here is what I did. 1. Install fresh server with SQL Server 2005, then shut down the SQL services. 2. Copied the detached database files from the old server to the new server. Be sure that msdb (and master, if you choose that) files overwrite the freshly installed msdb mdf and ldf. 3. Restart the server, which upgrades msdb to 2005, and keeps all my packages, job definitions, etc. (If you also copied master you keep your logins as well.) Or create a job and assign the step to the scripted .dts file from the old server, however this doesn't appear to import the DTS package into "Data Transformation Services" like i'd have expected within SQL2000. No, as noted below the DTS package is independent of the SQL Agent job that runs it. (It may not look that way when you schedule the job from DTS, but they are independent objects.) Also if i reference the DTS script file the following ||||| appears within the step. Is this as you'd expect? I don't have an answer for this question. Sorry. RLF |
#47
| |||
| |||
|
|
Ian, I will try to answer inline. As the DTS packages that i need to transfer into the server will also need to be scheduled. Is your suggested way to import them into "Data Transformation Services", but then how can they be scheduled. I personally keep DTS packages stored in Structured File Storage for a number of reasons. So I would just copy them out and put them in the proper folder. From SSMS you can export packages from a server, one at a time, to files. Then, if you like keeping them in msdb you can import the files, one at a time. If they were scheduled on your original server, there are SQL Agent jobs to cause those schedules to execute. Script those jobs using SSMS and then use the scripts to recreate your 2005 server's jobs. You may need to make changes depending on where you keep your packages, what logins exist on the new server, etc. Since I wanted the same basic server settings for everything I keep in msdb and master here is what I did. 1. Install fresh server with SQL Server 2005, then shut down the SQL services. 2. Copied the detached database files from the old server to the new server. Be sure that msdb (and master, if you choose that) files overwrite the freshly installed msdb mdf and ldf. 3. Restart the server, which upgrades msdb to 2005, and keeps all my packages, job definitions, etc. (If you also copied master you keep your logins as well.) Or create a job and assign the step to the scripted .dts file from the old server, however this doesn't appear to import the DTS package into "Data Transformation Services" like i'd have expected within SQL2000. No, as noted below the DTS package is independent of the SQL Agent job that runs it. (It may not look that way when you schedule the job from DTS, but they are independent objects.) Also if i reference the DTS script file the following ||||| appears within the step. Is this as you'd expect? I don't have an answer for this question. Sorry. RLF |
#48
| |||
| |||
|
|
Ian, I will try to answer inline. As the DTS packages that i need to transfer into the server will also need to be scheduled. Is your suggested way to import them into "Data Transformation Services", but then how can they be scheduled. I personally keep DTS packages stored in Structured File Storage for a number of reasons. So I would just copy them out and put them in the proper folder. From SSMS you can export packages from a server, one at a time, to files. Then, if you like keeping them in msdb you can import the files, one at a time. If they were scheduled on your original server, there are SQL Agent jobs to cause those schedules to execute. Script those jobs using SSMS and then use the scripts to recreate your 2005 server's jobs. You may need to make changes depending on where you keep your packages, what logins exist on the new server, etc. Since I wanted the same basic server settings for everything I keep in msdb and master here is what I did. 1. Install fresh server with SQL Server 2005, then shut down the SQL services. 2. Copied the detached database files from the old server to the new server. Be sure that msdb (and master, if you choose that) files overwrite the freshly installed msdb mdf and ldf. 3. Restart the server, which upgrades msdb to 2005, and keeps all my packages, job definitions, etc. (If you also copied master you keep your logins as well.) Or create a job and assign the step to the scripted .dts file from the old server, however this doesn't appear to import the DTS package into "Data Transformation Services" like i'd have expected within SQL2000. No, as noted below the DTS package is independent of the SQL Agent job that runs it. (It may not look that way when you schedule the job from DTS, but they are independent objects.) Also if i reference the DTS script file the following ||||| appears within the step. Is this as you'd expect? I don't have an answer for this question. Sorry. RLF |
#49
| |||
| |||
|
|
Ian, I will try to answer inline. As the DTS packages that i need to transfer into the server will also need to be scheduled. Is your suggested way to import them into "Data Transformation Services", but then how can they be scheduled. I personally keep DTS packages stored in Structured File Storage for a number of reasons. So I would just copy them out and put them in the proper folder. From SSMS you can export packages from a server, one at a time, to files. Then, if you like keeping them in msdb you can import the files, one at a time. If they were scheduled on your original server, there are SQL Agent jobs to cause those schedules to execute. Script those jobs using SSMS and then use the scripts to recreate your 2005 server's jobs. You may need to make changes depending on where you keep your packages, what logins exist on the new server, etc. Since I wanted the same basic server settings for everything I keep in msdb and master here is what I did. 1. Install fresh server with SQL Server 2005, then shut down the SQL services. 2. Copied the detached database files from the old server to the new server. Be sure that msdb (and master, if you choose that) files overwrite the freshly installed msdb mdf and ldf. 3. Restart the server, which upgrades msdb to 2005, and keeps all my packages, job definitions, etc. (If you also copied master you keep your logins as well.) Or create a job and assign the step to the scripted .dts file from the old server, however this doesn't appear to import the DTS package into "Data Transformation Services" like i'd have expected within SQL2000. No, as noted below the DTS package is independent of the SQL Agent job that runs it. (It may not look that way when you schedule the job from DTS, but they are independent objects.) Also if i reference the DTS script file the following ||||| appears within the step. Is this as you'd expect? I don't have an answer for this question. Sorry. RLF |
![]() |
| Thread Tools | |
| Display Modes | |
| |