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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by newtechy

  1. newtechy

    Scheduled package running under different user id

    John: I would like to say yours did. Thanks a bunch for your help
  2. newtechy

    Error Handling logic from Call to Oracle Procedure needed

    I have created a DTS package that retrieves data from a SqlServer Table and inserts the data into an Oracle table via an Active X Script Task. The Active X Script Task invokes an Oracle procedure to insert records, passing the data retrieved from the Sql Server table as parameters. The DTS...
  3. newtechy

    Scheduled package running under different user id

    It worked!! THanks a million for the info
  4. newtechy

    Scheduled package running under different user id

    I have written a package that accesses a shared windows directory and imports a text file from it to Sql Server. When I run this package manually, it works fine. However, when I schedule it to run as a job, it fails noting that the file on the shared directory is not accessible. It turns out...
  5. newtechy

    Problem comparing 2 fields with null values

    I've created a query against the following table: Table1: fld1 fld2 row1 2 2 row2 <null> <null> row3 1 2 The query: Select * from table1 where fld1 = fld2 or (fld1 is null and fld2 is null) My results set contains row1 but not row2. It appears that the...
  6. newtechy

    Scheduled DTS Package execution question

    I'm creating a scheduled DTS package that may run for hours or even days. Is there a way to check and see if the package is currently executing without re-executing it again? If so, how can I prevent the subsequent execution of the DTS package from occurring??
  7. newtechy

    Error during DTS Import

    Thanks to both of for your help. I found what the problem was and it was data related...Thanks again
  8. newtechy

    Error during DTS Import

    I am trying to import a delimited text file into a Sql Server table. The text file is about 40k. During the DTS import, I am getting an error during the transformation process indicating that a text file field (which has nulls in it) can not be transformed into a database table field. I've...
  9. newtechy

    GetExecutionErrorInfo routine question

    Thanks sqlserverbest.. I'll try it
  10. newtechy

    GetExecutionErrorInfo routine question

    I created a DTS Package with 2 Active X script tasks. Both scripts invoke 2 other dts packages. To handle step failures from the other dts packages, I am using the GetExecutionErrorInfo routine. When a failure occurs in a step from the invoked dts packages, and the Active X tasks invoke the...
  11. newtechy

    How to capture runtime errors when executing stored procedure

    I have created 2 SQL tasks in a DTS package workflow. The first task selects/deletes from a table in database X one row at a time. The 2nd sql task invokes a stored procedure in database Y. Between the 2 SQL tasks, I have an Active X Script Task that begins the looping process, and at the end of...
  12. newtechy

    Dynamic folder generation at runtime

    Can a windows folder be generated dynamically during run time of a DTS Package?? If so, can someone provide sample Active X VB script code to do it?? Help is greatly appreciated...
  13. newtechy

    Dynamic folder generation at run time

    Can a windows folder be generated dynamically during run time of a DTS Package?? If so, can someone provide sample Active X VB script code to do it?? Help is greatly appreciated...
  14. newtechy

    Control Panel/Find won't execute on Windows98

    Thanks for the advice ski. Unfortunately there wasn't a registry that went back far enough to when the problem occurred. I'll be getting Windows XP (Full edition) shortly. Hopefully, installing it will resolve the problem. Thanks again for your help...

Part and Inventory Search

Back
Top