Forum Replies Created

Viewing 15 posts - 256 through 270 (of 270 total)

  • RE: DSO Object Variable or With Block Variable Not Set

    There are two activex tasks in the package...but these are set to execute on the main package thread as they should and they run fine...any other ideas on what I...

  • RE: Help with Workflow in DTS

    You want to do something like this:

    Set objPackage = CreateObject("DTS.Package")

    objPackage.LoadFromSQLServer "Morpheus","","","256",,,,"mypackage"

    Set objExecSQLPackage1 = CreateObject("DTS.Package")

    objExecSQLPackage1.LoadFromSQLServer "Morpheus","","","256",,,,"myotherpackage"

    If foo = 0 Then

    objExecSQLPackage1.Execute

    Else

    objPackage.Execute

    End If

    Hope this helps!

    Michael

    quote:


    2...

  • RE: Call a DTS Package in Loop

    Sorry...should have added that you will need to modify this code to do what you want...

    quote:


    Using an ActiveX task...set up variables to...

  • RE: Call a DTS Package in Loop

    Using an ActiveX task...set up variables to reference each task object (a and b) and then set your package b global variable equal to package a global variable inside your...

  • RE: Using a DTS Package to run other DTS packages

    It is my understanding that they execute on the server...if anyone else can verify or refute this, I would like to know what the correct answer is...

    Michael

    Michael Weiss

  • RE: Check for Zip file to process DTS job

    yes, you can use the filesystemobject's filexists property to check for the file and if it is there, then run your dts job via an activex script object...call this package...

  • RE: "Filename" as Global variable in DTS

    Sure you can...I do it and it works slick...

    '**********************************************************************

    ' Visual Basic ActiveX Script

    '************************************************************************

    Function Main()

    Dim responsesuccess

    responsesuccess = 0

    responsesuccess = ImportFile(DTSGlobalVariables("gvfilepath").Value)

    If responsesuccess <> 0 Then

    Main = DTSTaskExecResult_Success

    Else

    Main = DTSTaskExecResult_Failure

    End...

  • RE: Changing Measure Names

    I really dont have a clue here, Jennifer...but is there a chance the connection is timing out? I would think you would receive a time out error message though...

    Sorry cant...

  • RE: Keyword Search Across Mult. Columns

    I would use Distinct myself...

    quote:


    I have a keyword search against a table that has around 10000 records. Many( about 2000) are duplicated...

  • RE: DSS - Tutorial - Error Processing Cube

    Have you processed your dimensions? And your shared dimensions? If not, you will get errors as the AS engine will not know where the foreign key values are for the...

  • RE: Analysis Services OLAP Administrator Group

    I ran the query (that anlaysis services was attempting to run for processing a dimension) in QA and it runs fine...I still think it is a permissions issue on the...

  • RE: Analysis Services OLAP Administrator Group

    Thank you, Jay...I will try that and let you know what I come up with...I do know that the process is hanging on counting the members of whatever dimension I...

  • RE: OLAP Consulatnt

    I would be interested in the position description even if it has been filled...am curious to see the detailed requirements for a two week gig...

    Thank you,

    Michael

    June 20, 2002 at 1:24 pm

    #431305

  • RE: Refreshing Cube Data using a Sheduled Job

    It is my understanding that incremental processing does not reflect changes to existing members unless those members are included in the where clause for the incremental processing. Full processing does...

  • RE: Refreshing Cube Data using a Sheduled Job

    It is my understanding that you would need to do a full process when the underlying structure of the cube or dimension changes, ie adding new fields, deleting fields, etc....

Viewing 15 posts - 256 through 270 (of 270 total)