Forum Replies Created

Viewing 15 posts - 11,656 through 11,670 (of 11,677 total)

  • RE: Tracking Dimension Attributes Usage

    You can use SQL Server Profiler to monitor all the queries against your cube.

    With the right options specified, you can filter out most of the events that you don't need.

    But,...

  • RE: Converting from a sybase time datatype to a sql server 2005 datetime data type

    Forget about my previous post. I've tried to convert the number using the time_t specification, but it gives an overflow. Which actually makes sense. There are about 31536000 seconds in...

  • RE: rename and move file from source to archive

    Try adding another backslash to your file folders. Example:

    d:\samples\

  • RE: SSAS 2008 Unknown Member

    I think the problem lies in the fact that when the cube is processing your fact table, he will link the surrogate keys (or attribute key, whatever you use) to...

  • RE: SSAS Cube - No fact data

    Is your dimension usage set-up correctly? (one of the tabs in the cube)

    I usually forget this when I create new measure groups and dimensions and it can really mess things...

  • RE: Column Binding causing duplicates in filter

    Regarding the set-up of hierarchies and attribute relationships for your time dimension, make sure you use the concatenation of year and month as primary key for month. For example: 200911...

  • RE: join to make 1 Fact Table

    Can you try the following query:

    SELECT tt1.ID, tt1.ID_Count, tt1.Amount, tt2.ID_Count, tt2.Amount, tt3.ID_Count, tt3.Amount -- and so on...

    FROM

    (SELECT ID, COUNT(ID) AS ID_Count, SUM(Amount) AS Amount

    FROM t1

    GROUP BY ID) tt1

    INNER JOIN

    (SELECT t1ID,...

  • RE: SSIS and Raw files

    clucasi (2/18/2010)


    Does anybody have an idea if you can use raw files to update records in a table using SQL server 2005

    I have trawled the internet but with...

  • RE: Is this type of join possible with SSIS?

    Or you can use the following SQL code in your OLE DB Source:

    SELECT

    t0.[ID] AS [ID]

    , [Name]

    , (isnull(TOTALCOD1,0) + isnull(TOTALCOD2,0) + isnull(TOTALCOD3,0)) AS TOTALSUM

    , TOTALCOD1

    , TOTALCOD2

    , TOTALCOD3

    FROM

    (SELECT [ID]

    ,[Name]

    FROM...

  • RE: SSIS - Truncation Warnings

    Aaron Cabrele (2/17/2010)


    Hi

    I have the exact same problem, however my source file has 1200 columns which is being split into 2 tables so it is not feasable to go through...

  • RE: Converting from a sybase time datatype to a sql server 2005 datetime data type

    Griffster (2/17/2010)


    An example is that it sees the time in Sybase (Sybase 11) table as 12:52:39.000, but SSIS sees the value as a DT_I8 with a value of 463590000000.

    Such a...

  • RE: Converting from a sybase time datatype to a sql server 2005 datetime data type

    Griffster (2/11/2010)


    Conversion from "DT_I8" to "DT_DBTIME" is not supported

    Can you give an example of how SSIS sees the input data?

    My first guess is to convert it with a Data Conversion...

  • RE: Error Output's Description

    vithasun (2/15/2010)


    I tried with this command in the command prompt.

    D:\migrationproject\ErrorOutputDescription_2008_V2.0.0\ErrorOutputDescription.dll gacutil/i "C:\windows\Microsoft.NET\Framework\v1.1.4322"

    but the error it is throwing is gacutil is not a recognized command.

    Maybe you could try the following...

  • RE: SSIS Practice wanted

    Steve Jones - Editor (2/16/2010)


    I think the best practice for learning a variety of things is to troll forums like this one (or the SSIS one) and answer questions. Figure...

  • RE: SSIS package execution error / SQL job execution error

    Glad that you resolved the issue.

    darshan-987176 (2/16/2010)


    The Initial catalog name i.e the OLAP database server name was mentioned wrong for the cube processing task. And the OLTP connection used wrong...

Viewing 15 posts - 11,656 through 11,670 (of 11,677 total)