all groups > sql server programming > august 2007 >
You're in the

sql server programming

group:

SSIS on SQL 2000 to SQL 2000 ?


SSIS on SQL 2000 to SQL 2000 ?
8/31/2007 5:09:14 PM
sql server programming:
Can SSIS moving data from one SQL 2000 db to another SQL 2000 db? If
so, can anyone tell me what i need to do this?

Execute SQL Task ?
Data Flow Task ?
OLE DB Source ?
OLE DB Destination?

It's a little confusing even after reading for a day. Any examples
great appreciate and will award you double karma points. Thanks.
Re: SSIS on SQL 2000 to SQL 2000 ?
8/31/2007 5:26:09 PM
Specifically I want to move some fields from some tables and even add
fields based on expressions during the transfer.

Thanks
Re: SSIS on SQL 2000 to SQL 2000 ? Dan Guzman
9/1/2007 9:18:51 AM
Your subject mentions only SQL 2000 but SSIS was introduced in SQL 2005. I
assume you have a SQL 2005 server with SSIS installed that you plan to use
to copy data between SQL 2000 servers. Data copy/transforms are usually
done from within a Data Flow task. The basic steps to create a new Data
Flow task from a new SSIS package in BI Studio are:

1) From the Control Flow tab, drag a new Data Flow Task from the toolbox
and double-click to configure

2) Create OleDb connections for the source and destination databases
(right-click Connection Managers background)

3) Click the Data Flow tab in the package designer and click the link to
create a new Data Flow task

4) Drag an OLE DB Source from the toolbox onto the DF canvas and configure
for your source connection and table/query

5) Drag a Data Flow Transform Data from the toolbox and connect the OLE DB
source output (green arrow) to the transformation

6) Add additional transforms as needed, connectiong the previous
transform's output to the transformation

7) Drag an OLE DB Destination from the toolbox

8) Connect the output of the last transformation to the OLE DB Destination

9) Configure the OLE DB Destination for the destination OleDb connection.

See the Boos Online and http://www.sqlis.com/ for a number of SSIS examples.


--
Hope this helps.

Dan Guzman
SQL Server MVP

[quoted text, click to view]
Re: SSIS on SQL 2000 to SQL 2000 ?
9/4/2007 12:00:00 AM
Thank you for the very detailed info but I got stuck on

Drag a Data Flow Transform Data from the toolbox and connect the OLE
DB
source output (green arrow) to the transformation

I have an group of tools under the Data Flow Transformations but do
you mean the tool under it called Data Conversion or which one please?
Thanks again for the help.
Re: SSIS on SQL 2000 to SQL 2000 ?
9/4/2007 12:00:00 AM
I'm getting closer. This example worked nicely for me. Even makes me
want to buy the book !

http://www.codebeach.com/tutorials/sql-server-integration-services-your-first-script-component.asp

On Sep 4, 7:34 am, "bringmewa...@gmail.com" <bringmewa...@gmail.com>
[quoted text, click to view]

Re: SSIS on SQL 2000 to SQL 2000 ? Dan Guzman
9/4/2007 12:00:00 AM
I'm glad you figured things out. There are a number of SSIS books that will
certainly help you out as well as content in the SQL Server Books Online.


--
Hope this helps.

Dan Guzman
SQL Server MVP

[quoted text, click to view]
Re: SSIS on SQL 2000 to SQL 2000 ?
9/4/2007 12:00:00 AM
Thanks but what object were you in step 5?
Re: SSIS on SQL 2000 to SQL 2000 ?
9/4/2007 12:00:00 AM
Thanks but what object were you referencing in step 5 ?
Re: SSIS on SQL 2000 to SQL 2000 ?
9/4/2007 3:17:40 PM
Re: SSIS on SQL 2000 to SQL 2000 ? Dan Guzman
9/4/2007 7:04:51 PM
[quoted text, click to view]

I wasn't specific because you can add any of the tasks from the Data Flow
Transformations category according to your needs. For example, to update an
existing column value or add a new column, choose a Derived Column
transform.

--
Hope this helps.

Dan Guzman
SQL Server MVP

[quoted text, click to view]
Re: SSIS on SQL 2000 to SQL 2000 ?
9/5/2007 12:00:00 AM
thank you. this was very helpful
Re: SSIS on SQL 2000 to SQL 2000 ?
9/13/2007 6:38:04 PM
Here's a great intro book.
SQL Server Integration Services

By Bill Hamilton
AddThis Social Bookmark Button