Forum Replies Created

Viewing 15 posts - 991 through 1,005 (of 2,612 total)

  • RE: Compare two lists and email results from SSIS.

    At http://www.sqlbi.com/%5B/url%5D you can download a TableDifference component for free. It is essentially a MERGE JOIN and a Conditional Split in a single component. It will allow you...

  • RE: Exporting to Excel

    Not that I would go through the work, but you could make the sub-totals an actual sub report. The excel export will not export the sub report (although it...

  • RE: User Access to SQL Server Jobs

    I have written small web application to do just this. It is worth creating an application that you can control a bit better than giving someone access to the...

  • RE: Table Partioning on Single Disk

    A lot of factors will determine if it will help, hurt, or do nothing.

    However, it is not going to wander far into the better or worse category, so I would...

  • RE: Table partition

    Table partitioning would move partitioned records onto different pages, so if you are getting deadlocks because of page locks, it is possible that partitioning may help, but it is pretty...

  • RE: Install problems on Vista, please help

    Are the services there and running?

    My first guess would be you installed the server components and did not install the client components.

  • RE: A Good Case For Reference

    I guess I would like to see some relatively simple, expandable tools included.

    For example, a good Service Broker example is needed. So, a small windows application that displays jobs...

  • RE: String compare: 'a' = 'a' ==>True or False?

    It is part of the ANSI standard to ignore these trailing spaces. It is done automatically in joins as well. If you find yourself in a situation in...

  • RE: View vs Join

    A view is just a stored query. They are cached and perform the same as if you just ran the query itself unless you have schema-bound and indexed it.

    So,...

  • RE: Many-to-Many relationships with foreign key constraints?

    So you have type-2 SCD attributes on your snowflaked dimension, but you want the snowflake attribute to basically be a type-1 SCD.

    Since your Product dimension has a CustomerKey, if you...

  • RE: Timestamp

    It is generally used for dealing with concurrency. It is not a date, but it is automatically changed each time a record is updated. So, a method of...

  • RE: When does SQL Server execute a Checkpoint

    Ok, I have to ask, what possible method of tracking changes could you be using that would be impacted by when a checkpoint happens?

  • RE: When does SQL Server execute a Checkpoint

    Simple recovery does not just checkpoint when a backup is taken. Simple recovery mode really moves the pointer in the log file to the beginning of the file (effectively...

  • RE: How Do You Calculate Last Mondays Date

    Subtract the day of the week from the current date and then add the number of days from the beginning of the week to the day you want. Assuming...

  • RE: Partially update a table row

    As I look more carefully at Grant's solution, it is determining that the field changed in one of the application layers (setting the value to NULL if it has not...

Viewing 15 posts - 991 through 1,005 (of 2,612 total)