Forum Replies Created

Viewing 15 posts - 196 through 210 (of 271 total)

  • RE: Changing the Source File in DTS

    I do this with text files. The same logic should apply to your Excel files though. What I have done is set up a global variable in the package. Then...


    Michael Weiss

  • RE: Cube Timeouts and property settings

    The connection timeout setting bug was supposed to be fixed by SP2 for Analysis Services. I have not been able to get it to work and wonder if it is...


    Michael Weiss

  • RE: Global Variable at Runtime

    Try changing the lines:

    "SELECT MAX([trans-num]) FROM matltran"

    MsgBox("maxtran is '' " & rst.Fields([trans-num]).value & " '' ")

    to:

    "SELECT MAX([trans-num]) AS max_trans FROM matltran"

    MsgBox "maxtran is " & rst.Fields("max_trans").value

    If that doesn't work, check...


    Michael Weiss

  • RE: Global Variable at Runtime

    use a msgbox to return the value of your rst field and see what you are getting...sql server 2000 dts execute sql task allows you to assign a field value...


    Michael Weiss

  • RE: Global Variable at Runtime

    I hope I didn't steer you down the wrong path! I just now noticed you are using SQL 7...I am not sure what the execute sql task object looks like...


    Michael Weiss

  • RE: Cleaning Data files before running DTS

    What about setting up a staging table? bring the data in from the file to the staging table, clean it there via sql update statements, then load it into the...


    Michael Weiss

  • RE: Global Variable at Runtime

    Have you looked at the Execute SQL task object? If you have your global variable set up for the package, put your sql statement in a execute sql task, you...


    Michael Weiss

  • RE: Cleaning Data files before running DTS

    I must need more coffee! My apologies...I meant your code is checking the destination column before any transformation has occured, not the source column...I am going for coffee now...lol

    Michael Weiss


    Michael Weiss

  • RE: Cleaning Data files before running DTS

    Sorry...I didn't think that through...of course it is assigning a null for all fields if you think about it...it is not taking just the first value in col013 the way...


    Michael Weiss

  • RE: Cleaning Data files before running DTS

    I am not sure about it checking only the first value in the columna and assigning a value in the transformation for all records, but shouldn't your script be:

    IF NOT...


    Michael Weiss

  • RE: books on SQL Server 2000 Analysis Services

    The best to start with, in my opinion, is Step by Step Microsoft SQL Server 2000 Analysis Services by OLAP Train/Reed Jacobson...

    hth,

    Michael

    Michael Weiss


    Michael Weiss

  • RE: Combining multiple dimensions into single dim...

    Okay...now I am really lost! lol What does the DID being less than 64k have to do with whether or not it is a problem processing? What I am trying...


    Michael Weiss

  • RE: Error: number of failing rows exceeds the maximum

    Can you dummy up some data that you know will not fail? If so, and the package still fails, I would think you could safely rule out a data integrity...


    Michael Weiss

  • RE: Combining multiple dimensions into single dim...

    Thanks! I forgot about using views as sources for dimensions. I must admit I am not entirely following you though. When you say you are not using separate table information...


    Michael Weiss

  • RE: Data in cube Between 2 dates

    I haven't done this yet, but I will have need for it soon so I have been playing around with this. You could use a single dimension and set the...


    Michael Weiss

Viewing 15 posts - 196 through 210 (of 271 total)