Forum Replies Created

Viewing 15 posts - 2,641 through 2,655 (of 6,041 total)

  • RE: Today's Random Word!

    Ed Wagner (5/3/2016)


    ThomasRushton (5/3/2016)


    mjagadeeswari (5/3/2016)


    Ray K (5/2/2016)


    Ed Wagner (5/2/2016)


    DonlSimpson (5/2/2016)


    IOS

    Unix

    Linux

    OS

    Two

    Fish

    Red Fish Blue Fish

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

  • RE: DBA Career Moves for Next 5 Years!

    Abrar Ahmad_ (5/2/2016)


    [font="Verdana"]After working in DBs (DEV - DBA) and specialized in SQL SERVER product for last 8 years, I tend to have expert opinion from board members that in...

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

  • RE: Stress Testing

    stakes (5/2/2016)


    Eric M Russell (5/2/2016)


    However, the downside of this architectural approach is that I see a lot of queries written by the application developing teams that (in all fairness by...

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

  • RE: Where was the output from a SELECT go in a trigger?

    Consider PRINT-ing the text to the SSMS Message window.

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

  • RE: Today's Random Word!

    malefactor

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

  • RE: Today's Random Word!

    Revenant (5/2/2016)


    Ed Wagner (5/2/2016)


    Luis Cazares (5/2/2016)


    DonlSimpson (5/2/2016)


    whereisSQL? (5/2/2016)


    Ed Wagner (5/2/2016)


    Grumpy DBA (5/2/2016)


    eccentricDBA (5/2/2016)


    Ed Wagner (5/2/2016)


    Grumpy DBA (5/2/2016)


    crookj (4/29/2016)


    whereisSQL? (4/29/2016)


    Freak

    Quasimodo

    Hunchback

    Notre Dame

    Fighting Irish

    Rudy!

    New York

    Yankees

    Rebels

    Empire

    Death Star

    Tractor [beam]

    [Mr.] Data

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

  • RE: Stress Testing

    Where I work now, most instances are virtualized and that's the default configuration for all new instances, so we can scale them up if needed. What that means is that...

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

  • RE: Does T-SQL have a means of iterating over the columns of a table?

    pietlinden (4/30/2016)


    LOL...

    <insert TERRIBLE advice here> ... and don't forget to ascribe to someone who actually knows what he's talking about.

    Sorry, couldn't resist!

    The question reminded me of some "documentation" of a...

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

  • RE: Storing encypted SSN's

    Yes, you can prevent the web application from interrogating employee SSNs by implementing role based security and abstracting the application from the employee table(s) by using stored proceure(s). Ideally, you...

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

  • RE: Using reserved words as column names

    If you really want, you can also model an entire database containing objects with only spaces for names.

    create database [ ];

    GO

    use [ ];

    GO

    create schema [ ];

    GO

    create table [...

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

  • RE: Does T-SQL have a means of iterating over the columns of a table?

    Jeff Moden (4/28/2016)


    Apologies. I'm not going to get to this tonight or tomorrow. I'm in the middle of a server migration and I need to sanitize the code...

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

  • RE: Storing encypted SSN's

    Sergiy (4/28/2016)


    http://opendata.stackexchange.com/questions/5595/how-should-us-ssn-be-anonimized

    Since SSN has only 9 digits, changing hash function will not suffice because attacker can simply apply the function to all 10^9 SSN's and match the result against the...

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

  • RE: index size greater than 2GB

    You don't want indexes on a table that arn't being used (don't benefit queries or insure uniqueness), because they require I/O to maintain whenever the table is inserted, updated, or...

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

  • RE: Certification for MSBI

    Implementing a Data Warehouse with Microsoft SQL Server 2012/2014

    https://www.microsoft.com/en-us/learning/exam-70-463.aspx

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

  • RE: Looking for opinions on updating data and minimizing locking

    A table lock (TABLOCK) will improve the performance of a bulk table insert, but it will also hold a lock on the entire table. If you can tolerate somewhat longer...

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

Viewing 15 posts - 2,641 through 2,655 (of 6,041 total)