Forum Replies Created

Viewing 15 posts - 526 through 540 (of 579 total)

  • RE: Out of Sync Error in Log Shipping..PLS HELP!

    You might have more luck in finding an answer if you posted in a more relevant forum. Good luck!

     

  • RE: Any recommendation on Reporting Tools for MS OLAP?

    MS Excel can be used to consume data from both SQL Server & Analysis Services. Microsoft also have a product called Data Analyser for querying cubes although this is more...

  • RE: DTS and Oracle

    Coincidentally today's new article on sqlservercentral.com may be of great help to you.

     

    http://qa.sqlservercentral.com/columnists/hji/comparisonoforacledrivers.asp

    Regards

     

  • RE: Help with Rollup

    You're right. You can't get the MDX out of the cube browser. Sounds like it desn't matter any more anyway!

     

    Regards

     

  • RE: Use default on non-null column when data pump inserts nulls

    Don't you need an ELSE statement in there that puts something in there if IsNull(DTSSource("col").Value) = True

    ???

    At the moment I think this will just pull through a NULL if DTSSource("col")...

  • RE: Help with Rollup

    Can you post your MDX statement up here for us to take a look?

     

    Regards

     

  • RE: DTS and Oracle

    Have you tried the Microsoft ODBC Driver for Oracle? I have to confess I don't know whether this requires SQL*Net installed (my suspicion is it will) but give it a...

  • RE: Stand-alone connection

    And maybe you might be best posting this on the normal Administration forum and not the Yukon one.

     

  • RE: DTS VS Linked Server

    Even if you choose the Linked Server option you could still wrap it all up in a DTS package for ease of manageability.

    Regards

     

  • RE: DTS date stamp

    For anyone thats interested/curious....

    The reason it wasn't working properly was because Kris had missed off a precedence constraint hence the export was occurring before the ActiveX script completed, hence it...

  • RE: Adding a column to an existing table.

    I'm guessing all it does is query the INFORMATION_SCHEMA views which shouldn't be too hard to replicate!

     

     

  • RE: DTS date stamp

    First thing, the last Right(blah blah blah) line is incorrect. It should read:

    Right(  "0" & CStr( DatePart( "n", dt ) ), 2 )

    rather than

    Right(  "0" & CStr( DatePart( "m", dt...

  • RE: DTS date stamp

    Hi Kris,

    OK, easy part first. To output a time as well as date stamp change the code to the following:

    Function Main()

     Dim dt, dtstr

     dt = Now

     dtstr = CStr( DatePart( "yyyy",  dt ...

  • RE: DTS date stamp

    OK, first thing. Changing the text file destination at run time does just that - changes it at runtime. It is not persistent - i.e. changes made dynamically to the...

  • RE: Adding a column to an existing table.

    Why not just write a stored proc that takes a table name as a parameter and then does what EM does:

    1. Make a note of the table's metadata

    3. Copy the...

Viewing 15 posts - 526 through 540 (of 579 total)