Forum Replies Created

Viewing 10 posts - 1 through 10 (of 10 total)

  • RE: Oracle 2 SQL 2000

    Sure. Create a table in SQL Server with all the fields that you are pulling from Oracle. We'll name the table "Staging" for now. In that table, make the fields that...

  • RE: Oracle 2 SQL 2000

    It would be faster to use the Staging table approach. While the ActiveX script approach works, it slows your transfer speed down. By using a staging table where the field...

  • RE: Oracle 2 SQL 2000

    I suspect that the problem might be that in Oracle the minimum allowed date is 1753-01-01, whereas in SQL Server it is 1900-01-01. When the DTS tries to load that record,...

  • RE: DTS pull with dynamic sql

    You will have to do it in the ActiveX script as SQL 7.0 doen't have the Dynamic Properties Task.

  • RE: Deploying a DTS package

    There is a handy freeware tool on http://www.sqldts.com called DTSBackup 2000 that lets you select the DTS packages on the source and copy them to a destination server.

  • RE: DTS pull with dynamic sql

    OK. I'll assume that you have already created the Transform Data (Data Pump) Task.

    1. Create a Global variable called SQLString.

    2. Drag the ActiveX Task object to the DTS Designer...

  • RE: DTS pull with dynamic sql

    Actually, you may not need to use the ActiveX/Dynamic Properties. Try changing your SQL statement to:

    SELECT * FROM SCHEDULE WHERE DATE=TODAY

    I think that Ingres supports the TODAY Keyword.

  • RE: DTS pull with dynamic sql

    I have run into that one too. Many ODBC drivers don't support the ? parameter in SQL DTS and return the error you got if you try to use it.

    What...

  • RE: Import Question (sorry posted this in wrong forum)

    You can use the ISNUMERIC() function. The code would look something like this (You would be in Database_A when running it) :

     

    insert into TableA (ColumnA)

    select ColumnB

    from Database_B.dbo.TableB

    where ISNUMERIC(ColumnB) = 1

     

    Cheers,

     

  • RE: Creating a MAPI.Session within a DTS package

    Sounds like you may not have the MS Collaberation Data Objects installed. They do come with MS Office, but are not installed by default. You have to run the Office...

Viewing 10 posts - 1 through 10 (of 10 total)