Forum Replies Created

Viewing 15 posts - 721 through 735 (of 1,246 total)

  • RE: A Single-Parameter Date Range in SQL Server Reporting Services

    Good concept and idea. I had implemented something similar. I am sure we have all seen the choose a month to report from . In these cases I instructions in...

    ----------------------------------------------------

  • RE: .rdl opens to XML code. Need Report Layout view.

    Try to start clean,in these cases. Create a SSRS project named like TempSSRShold for example. Then Right click the Reports node, add > existing item. From here navigate to the...

    ----------------------------------------------------

  • RE: Something just is not clicking with me

    Just to add a little here, recall that a FACT is just that. It captures something that happened at a point in time. There is really no updating here (unless...

    ----------------------------------------------------

  • RE: Could use some advice

    Just start writing, anything, everything and maybe something will catch fire

    The problem is once you begin something there is this inertia that keeps you from wanting to go back and...

    ----------------------------------------------------

  • RE: Could use some advice

    I agree with the prior posts that the Kimball books outline well the approach to creating a data warehouse from the ground up. Be careful with defining the "grain." Some...

    ----------------------------------------------------

  • RE: Some problem in SSIS 2008 when Excel is used

    I dont exactly have SSIS 2005 handy, though in 2008 if it is not too different ...

    Right click the project name in the solution explorer > properties > debugging ?(in...

    ----------------------------------------------------

  • RE: Difference between ODS and Datawarehouse

    Strange... I was trying to imagine when and how this could be the case.

    Data Marts are usually populated from the DW (Inmon or Data Vault), or form the DW...

    ----------------------------------------------------

  • RE: Baseball Standings Calculating GB

    You can think of the table depicted here as merely a daily snapshot. It is based on actual records of games played. To consider only the last ten games I...

    ----------------------------------------------------

  • RE: weekly data load into SQL

    In SQL SERVER 2008 and above you have the MERGE statement. Unfortunately that does not apply to your version of SQL SERVER. For this you should stick with the three...

    ----------------------------------------------------

  • RE: Redirect bad rows from Execute SQL Task

    I got to wonder why create the temp tables to then only pass through a subset of those. Maybe the base tables lacks an index but I dont see the...

    ----------------------------------------------------

  • RE: SSRS Page Scroll Issue

    I imagine you could add a click event watcher to do this in the CODE window within SSRS. I believe in 2012 you may even be able to use C#...

    ----------------------------------------------------

  • RE: Type 2 SCD

    Currently in our model, every table has a surrogate PK and at least one natural key enforced by a unique constrain

    I am wondering about the unique constraint set around the...

    ----------------------------------------------------

  • RE: What are the differences in data types are there between SQL 2005 and SQL 2008 R2?

    Alvin Ramard (7/8/2015)


    I doubt there's data type changes that would make it hard to move this to SQL2008.

    I agree with Sean. I'd focus on getting as much of the logic...

    ----------------------------------------------------

  • RE: Creating a view or procedure from a dynamic pivot table

    Just to make your code a little cleaner,

    DECLARE @T AS TABLE (y INT NOT NULL PRIMARY KEY);

    DECLARE @cols AS NVARCHAR(MAX)

    ,@y AS INT /* not used */

    ,@sql AS NVARCHAR(MAX);

    Note that...

    ----------------------------------------------------

  • RE: Writing Better T-SQL: Top-Down Design May Not be the Best Choice

    If you are referencing a large dataset through a linked server, especially if used multiple times in a join condition, you are better served with a temp table. Also a...

    ----------------------------------------------------

Viewing 15 posts - 721 through 735 (of 1,246 total)