Forum Replies Created

Viewing 15 posts - 2,146 through 2,160 (of 6,041 total)

  • RE: A Load Of Old Cobols

    samuel.shollenberger (10/20/2016)


    While I agree that much of the "codswallop" could be done away with tomorrow, there is a certain amount of "irreducible minimum" that is needed to be sure it's...

    "Do not seek to follow in the footsteps of the wise. Instead, seek what they sought." - Matsuo Basho

  • RE: How do you work with multiple developers on same DB

    Grant Fritchey (10/19/2016)


    The best way to do this is to give each developer their own local instance and their own local copy of the database. For this to work well,...

    "Do not seek to follow in the footsteps of the wise. Instead, seek what they sought." - Matsuo Basho

  • RE: Remove almost Duplicate Records

    You can do something like this. What it does is delete all rows where there are matching rows having the same key columns but a greater DateAdded. You'll need to...

    "Do not seek to follow in the footsteps of the wise. Instead, seek what they sought." - Matsuo Basho

  • RE: Accidentally Overwrote Stored Procedure

    It's good that you have database backups. However, you also need to script out your database and maintain it a version control system. In addition to recovery of objects, it's...

    "Do not seek to follow in the footsteps of the wise. Instead, seek what they sought." - Matsuo Basho

  • RE: Accidentally Overwrote Stored Procedure

    Before going through the time and trouble of restoring the database just for a single object, the following is worth a shot. What will do is search for any prior...

    "Do not seek to follow in the footsteps of the wise. Instead, seek what they sought." - Matsuo Basho

  • RE: Deleted

    Jeff Moden (10/18/2016)


    Just to throw my opinion into the ring...

    I've been tremendously successful and I barely know how to spell SSIS, SSDT, SSAS, SSRS, or any of the other 4...

    "Do not seek to follow in the footsteps of the wise. Instead, seek what they sought." - Matsuo Basho

  • RE: Deleted

    Business Intelligence is a "tip of the spear" IT role. Not only does it requires someone who has several years of general IT experience in a corporate environment, but it...

    "Do not seek to follow in the footsteps of the wise. Instead, seek what they sought." - Matsuo Basho

  • RE: Business logic

    For consistency and ease of maintenance, you only want a calculation to be performed once. How far up in the stack a particular computed attribute is introduced depends on who...

    "Do not seek to follow in the footsteps of the wise. Instead, seek what they sought." - Matsuo Basho

  • RE: A Load Of Old Cobols

    One thing that can be said for single tier development tools like MS Access and FoxPro, they allow a developer to quickly stove pipe a complete functional solution without being...

    "Do not seek to follow in the footsteps of the wise. Instead, seek what they sought." - Matsuo Basho

  • RE: Fact table with hundred of columns - Any alternative?

    If you havn't already, then read Kimball's book "Data Warehouse Toolkit", particularly chapter 2 which covers various standard approaches to fact and dimensional table design.

    https://www.amazon.com/Data-Warehouse-Toolkit-Complete-Dimensional/dp/0471200247

    "Do not seek to follow in the footsteps of the wise. Instead, seek what they sought." - Matsuo Basho

  • RE: A Load Of Old Cobols

    VB6 and even FoxPro applications still thriving and multiplying in some IT shops despite having no evolution in it's digital DNA for almost 20 years.

    "Do not seek to follow in the footsteps of the wise. Instead, seek what they sought." - Matsuo Basho

  • RE: HELP! I've got to give a talk to our local .NET geek meet on SQL server

    Aside from the probability that the physical model of a "code first" database will suffer (no proper indexing, poorly typed, etc.) another issue is that the logical model itself will...

    "Do not seek to follow in the footsteps of the wise. Instead, seek what they sought." - Matsuo Basho

  • RE: A Load Of Old Cobols

    I occasionally encounter SQL that was originally coded back in the early '90s, even though it has been migrated to newer hardware and RDMS platforms several times since. The way...

    "Do not seek to follow in the footsteps of the wise. Instead, seek what they sought." - Matsuo Basho

  • RE: The 2016 Home Lab

    When I'm experimenting on some project at home, it's usually something vertical like loading my bank statement transactions into SSAS or programming a home automation controller. I'm not trying to...

    "Do not seek to follow in the footsteps of the wise. Instead, seek what they sought." - Matsuo Basho

  • RE: How to get the table name from a objectID?

    It sounds like you have data corruption, but you can also try the following to quickly search for an object_id across a multiple databases.

    exec sp_MsForEachDB

    '

    USE ?;

    print ''Searching ... ?''

    print ''Found:...

    "Do not seek to follow in the footsteps of the wise. Instead, seek what they sought." - Matsuo Basho

Viewing 15 posts - 2,146 through 2,160 (of 6,041 total)