Forum Replies Created

Viewing 15 posts - 16 through 30 (of 49 total)

  • RE: Data Type Money is adding extra zero

    I thought finally found SQL Server bug πŸ™‚ but no, it was another package that was messing with my end table. So, Dwain, it's safe to use Money type.

    Thanks...

  • RE: Data Type Money is adding extra zero

    I thought you'd never ask! #Lady from Glee πŸ˜›

    INSERT INTO [IPTS_Staging].[dbo].[FactSectorKPIHist]

    ([Prospect]

    ...

  • RE: SQL Server 2012 - Column Store Index

    Here you go:

    Creating table:

    ---==Create table

    CREATE TABLE [dbo].[MDCS_GPS_LOG_RECV](

    [Msg_ID] [varchar](50) NULL,

    [Callsign] [varchar](50) NULL,

    [Timestamp] [varchar](50) NULL,

    [Msg_Content] [varchar](2500) NULL

    ) ON [PRIMARY]

    GO

    Sample rows:

    INSERT INTO [dbo].[MDCS_GPS_LOG_RECV]

    ...

  • RE: SQL Server 2012 - Column Store Index

    We've been doing some performance testing for Columnstore indexing using 160 mln rows, 400 mln rows with different kind of reporting queries. The purpose of test was, if it was...

  • RE: Update takes long time

    I've included few of them in attachment.

    I've 2 index on Salesdate table, both of them are non-clustered, one is for DateID and another one is for Short_SKU which is...

  • RE: Use of MDX in SSAS

    You have to go through some tutorial or books on how to build the cubes. You can't directly browse normal database using ssas. You will need to build the cube...

  • RE: Why canΒ΄t I see all dates when creating attribute relationship the "adviced way"?

    Even though I was taught first way, I always use the second way as well πŸ™‚ as I have data consistency issue with the first way in many cases. Your...

  • RE: Need better solution to Import from Oracle

    @cstg85 Good idea, would be great if it worked... But in reality it won't I think, as your query needs 2 different type of data source in one...

  • RE: Need better solution to Import from Oracle

    I sense long list of code πŸ™‚ I've list of tables that I need. 1400 tables are actually 100 tables with 14 different schema. From every schema I use 40...

  • RE: deploying a cube

    You might want to check Datamicron's Performa, but it's not free I guess.

  • RE: Creating Real time DASHBOARDS

    I heard Datamicron's Performa is a good tool for such things. It doesn't depend on SharePoint, it is standalone application, and connects to SSAS cubes and PPivot as well. No...

  • RE: Monthly Aggregation

    Thanks ChrisM@Work, it worked with adding (maxrecursion 365); at the end.

    Later on I'll have to find a way how to do the same thing in the Cube, as it...

  • RE: Monthly Aggregation

    Thanks for idea @demonfox, you have got it right. But how to change it to fit my ChrisM@Work code.

    Here is DDL:

    --===== Create the table

    CREATE TABLE...

  • RE: Monthly Aggregation

    The result is same with my previous query, I think I couldn't explain it right. By requirement for the column remaining it had to sum up all previous remaining cases....

  • RE: Monthly Aggregation

    Thanks ChrisM@Work, it looks promising. I never thought of minus from total πŸ™‚

    just having following error, any idea how to fix that?

    Msg 207, Level 16, State 1, Line 22

    Invalid column...

Viewing 15 posts - 16 through 30 (of 49 total)