Forum Replies Created

Viewing 15 posts - 1,336 through 1,350 (of 2,612 total)

  • RE: Soundex-Like functionality

    I would guess that some developer thought he could wire a better SoundEx and something was coded into a front end application that inserted the data. If I were...

  • RE: SSIS package: calling stored procedure with in/out parameter (rowset as outparameter)

    Make sure you have SET NOCOUNT ON at the top of your procedure if it does more than one operation. SSIS sees the rowcount notifications and data sets and...

  • RE: How to return large multi-value list to sql sp?

    That is one way. I remember seeing an article on this subject recently, but I could not find it.

    Usnig a GUID and a table works - and pretty well....

  • RE: Executing packages Dynamically

    Error: 0xC00220DE at Execute Package Task: Error 0x80070002 while loading package file "pkgAssignCompanies". The system cannot find the file specified.

    I believe this would normally display the full path of the...

  • RE: Splitting up a date column into three columns

    Use a derived column component in your data flow. There are functions for parsing dates.

  • RE: Federation questions

    Yup - typo.

    An Identity column becomes a problem because you will have a view hitting multiple databases, so to use an identity column you will have to specify an identity...

  • RE: Data from Old Cube to a re-designed one.

    You could make a copy of the directory the data is stored in and try parsing the data file, but I think the MDX will end up being easier to...

  • RE: Column value based on previous row

    ; WITH Sales (Sales_Person, SaleID, Model, Date_Sold)

    AS (

    SELECT sales_person, Row_Number() OVER (Partition By Sales_Person, Model ORDER BY Date_Sold)

    , Model, Date_Sold FROM MyTable

    )

    SELECT

    S.*

    , P.Date_Sold AS Prev_Date_Sold

    FROM

    Sales S

    LEFT JOIN Sales P ON...

  • RE: Is it possible to run a VB.Net executable from a SQL job step?

    You can run a command line from a job step. Getting the command line to report back a failure properly and give you any useful information would require you...

  • RE: Data from Old Cube to a re-designed one.

    Bummer, AS2005 would be more helpful because of the drillthrough architecture.

    You are going to have to query the cube with a huge MDX statement that includes every dimension - or...

  • RE: Incremental updates to dimesions and lazy aggregation

    Huge difference. The architecture is completely different. Your problem is likely in your hierarchies. It is most likely a structural problem in your cube design.

  • RE: Architecture choice

    It is not much more expensive to have cross-database joins. It complicates security a bit. If you are to do this, I would suggest using synonyms to facilitate...

  • RE: Duplicate GUIDs

    A GUID is only unique to that computer if it does not have a NIC. So, two machines without NIC cards can generate the same GUID relatively easily.

    If it...

  • RE: Federation questions

    Setting this up is really not that complex. distributed partitioned views can replace a table relatively easily. You will not take a performance hit using views to access...

  • RE: Architecture choice

    This is a Master Data Management question and the answer will depend on a lot of variables. Hopefully, we can help you ask the right questions.

    The use of a...

Viewing 15 posts - 1,336 through 1,350 (of 2,612 total)