Forum Replies Created

Viewing 15 posts - 8,551 through 8,565 (of 39,804 total)

  • RE: Is TSQLT the tool to use?

    Write your tests so they can be run manually or automated.

    It's a similar effort. You'll run manual tests many times anyway.

  • RE: Not receiving daily newsletters

    Today is late. My fault. I scheduled everything in the newsletter and assumed I'd done the newsletter as well.

    Sending

  • RE: Are the posted questions getting worse?

    jasona.work (2/24/2016)


    So a question to everyone: Would you prefer if someone posts a quick "reported as spam" reply to the spam topics after they report them, or nothing? ...

  • RE: usp stored procedure prefix

    Interesting thread. Just found it, and decided to add a few thoughts.

    I don't think there's fundamentally anything wrong with usp_, but I'm not sure it's helpful. These days we have...

  • RE: SCAN vs. SEEK

    As an example, here's DDL with data.

    CREATE TABLE dbo.MyTable ( mystring VARCHAR(200) );

    GO

    INSERT dbo.MyTable

    ( mystring )

    VALUES

    ( 'This is a 7'...

  • RE: Export TIFF files from DB

    The TIFF file should be in a binary format (binary or varbinary). This means you need to extract the binary data and write it to a file.

    I'm guessing that...

  • RE: Automatic update of outdated statistics

    The answers have been updated, and I'm awarding back points to this time.

    Steve

  • RE: Fragmentation carried forward?

    A backup is copy of the pages. There is no effort made to recompute anything or look at the contents. They are copied to disk on backup, copied back on...

  • RE: table design

    The main reasons have been listed. Using normalized storage gives you slightly more complex queries with joins, but easier updates, easier and simpler growth if you expand the model, less...

  • RE: Is TSQLT the tool to use?

    I know, lots of management doesn't. However devs still get value. Write the tests to exercise your code, so that when you alter it, you know if it still works.

  • RE: Are the posted questions getting worse?

    Alan.B (2/23/2016)


    I don't know if anyone is aware of this but I noticed Dwain Camps hadn't posted anything in awhile so I checked his blog (dwaincsql.com), simple-talk, twitter, linkedin... then...

  • RE: A Lightweight, Self-adjusting, Baseline-less Data Monitor

    The R or Python stuff is useful if the statistical work is more complex. Most of what can be done in R can easily work in Python, which is a...

  • RE: replication on 1 table between 3 active environments

    Insert is a modification. In this case, you shouldn't have collisions, but there are ways to handle things. I'd urge you to look at replication.

  • RE: Raspberry PI as test box

    Eric M Russell (2/23/2016)


    Assuming you could load GB of disk storage, GB of RAM, Windows, and SQL Server, a Raspberry PI would be severely under powered for even single user...

  • RE: Data for Ransom

    kiwood (2/23/2016)


    I think the government needs to do the right thing and get involved in the hospital's operations for awhile. It should start with a fine for not having things...

Viewing 15 posts - 8,551 through 8,565 (of 39,804 total)