Forum Replies Created

Viewing 15 posts - 166 through 180 (of 381 total)

  • RE: Running a specific Task via ActiveX? How?

    The message box will display if you run the task interactively.  In a job, I believe it will stop the activex script from running.

    Russel Loski, MCSE Business Intelligence, Data Platform

  • RE: Running a specific Task via ActiveX? How?

    I find that I have to disable the step (workflow, disable), then I re-enable in code:

    Option Explicit

    Function Main()

    Dim oPkg

    Dim oStep

    ' Get reference to the Package

    '------------------------------------------------

     Set oPkg = DTSGlobalVariables.Parent

     

    ' Used...

    Russel Loski, MCSE Business Intelligence, Data Platform

  • RE: Export data into multiple files problems

    Are you logging the package?  You can look at the package log to see if perhaps there are errors with some of the steps.

    Russel Loski, MCSE Business Intelligence, Data Platform

  • RE: ODBC --call failed

    Is the query timing out?

    If you can trap the error, sometimes the DBEngine.Errors collection will give you a list of much more intelligent errors.  http://www.devx.com/tips/Tip/12413

    Russel Loski, MCSE Business Intelligence, Data Platform

  • RE: Dynamic Logging

    Using anything other than the DTS Designer will hose the display.  If I am going to only use code once to alter the DTS package, I do it at the...

    Russel Loski, MCSE Business Intelligence, Data Platform

  • RE: Opening a DTS package

    It isn't too hard.  First, though, what is it you want to do once you open the saved DTS package? This will color my recommendation.

    Russel Loski, MCSE Business Intelligence, Data Platform

  • RE: SQL 2000 DTS

    I wasn't able to replicate your error.

    What I normally do is to generate scripts on the source database, then run those scripts on the destination.  Then I just do a regular...

    Russel Loski, MCSE Business Intelligence, Data Platform

  • RE: MSSQL Server Trouble. Helpe needed!!!

    The database file is indeed completely empty.

    Do you have a back up of the mdb?  The access database should not have any data, just tables linked to the SQL Server,...

    Russel Loski, MCSE Business Intelligence, Data Platform

  • RE: MSSQL Server Trouble. Helpe needed!!!

    The web application (yes, there is an application there) that has a web page called index.asp is running a query on line 85.  Somewhere before that is a connection string...

    Russel Loski, MCSE Business Intelligence, Data Platform

  • RE: MSSQL Server Trouble. Helpe needed!!!

    Just so that I am clear.  From all of your post, you have an Access database (mdb) that has a linked table that is a SQL server table.  But you...

    Russel Loski, MCSE Business Intelligence, Data Platform

  • RE: Can''''t convert a character string into datetime

    By default, SQL recognizes mm/dd/yy.  However put the following statement before your query and it should work:

    SET DATEFORMAT DMY

    Or you can use:

    select convert(datetime, left(finfo,20), 103) frpm #t

    Thanks for the question...

    Russel Loski, MCSE Business Intelligence, Data Platform

  • RE: NULL Data

    I'm going to assume that you are using Query Analyzer.

    In the Tools menu, select the Options menu.  Click on the Connection Properties tab.  About half way down there is a...

    Russel Loski, MCSE Business Intelligence, Data Platform

  • RE: NULL Data

    When you run your original query do any of the records have a null masterregis.claimstatus?  Also, is there are record in [status table] where claimstatusid has a value of '' (empty...

    Russel Loski, MCSE Business Intelligence, Data Platform

  • RE: NULL Data

    I'm still not clear what you are trying to do and what you mean by null values.  The change you provide actually doesn't change the query at all, since the...

    Russel Loski, MCSE Business Intelligence, Data Platform

  • RE: NULL Data

    "Can anyone tell me why this Query will not return "ONLY" NULL data?"

    What makes you think that this query might return only null data?  The only mention of null in...

    Russel Loski, MCSE Business Intelligence, Data Platform

Viewing 15 posts - 166 through 180 (of 381 total)