Forum Replies Created

Viewing 15 posts - 5,896 through 5,910 (of 6,031 total)

  • RE: Using a common seed generation for multiple tables.

    A BigInt datatype has max value of 9,223,372,036,854,775,807, so it's large enough to allow several tables to reserve an identity seed of several billion. If you're planning to impelment a...

  • RE: Social Engineering Dangers

    WayneS (9/15/2010)


    Eric Russell 13013 (9/15/2010)


    The problem with social engineering and digital authentication is that it involves information that can be easily forged. If I call someone up and say I'm...

  • RE: Social Engineering Dangers

    krowley (9/15/2010)


    Eric Russell 13013 (9/15/2010)


    The problem with social engineering and digital authentication is that it involves information that can be easily forged. If I call someone up and say I'm...

  • RE: Social Engineering Dangers

    The problem with social engineering and digital authentication is that it involves information that can be easily forged. If I call someone up and say I'm from the bank, they...

  • RE: Social Engineering Dangers

    Based on the cases I've read about, it seems that only a small pecentage of data breaches are the result of someone hacking the actual database server. From what I...

  • RE: Restoring a subset of data to a test server

    Using SQL Server's backup process, you can do what's called a "partial restore", which restores the primary filegroup and whatever secondary filegroups you choose. How useful that would be in...

  • RE: Getting Fired from an Unpaid Job.

    I think that if an organization generally pays contractors to do stuff like fixing their plumbing, mowing the lawn, or book keeping, then they can find a way to fund...

  • RE: SELECT for UPDATE

    SQL Server's default transaction isolation level is READ COMMITTED, and I'd suggest leaving it as is. Also, run the update query through Database Tuning Advisor and see what it reccomends.

  • RE: What login should a DBA use for non-emergency work

    steveb. (9/14/2010)


    torpkev (9/14/2010)


    My biggest annoyance with sa - quite outside of this discussion - is those people who use sa to connect to the database because they don't know...

  • RE: What login should a DBA use for non-emergency work

    I use the following script to grant permission to a "power user" role; which isn't an administrator the database but a user who occasionally needs to do things like troubleshoot...

  • RE: Auditor Knowledge of Database Environment

    JunkMail Victim (9/1/2006)


    I've found them to concentrate on the compiled executables of the client applications, but not think much about the unencrypted business logic that resides in stored procedures and...

  • RE: *****Table Structure and Data ******

    What do you mean by ReadOnly columns?

  • RE: *****Table Structure and Data ******

    If it were me, I'd script it all out. From what I've read, I'd suggest you use the Import and Export Wizzard to copy the required tables. You have the...

  • RE: Query never finishing

    Anders Pedersen (9/13/2010)


    Grant and Eric,

    I would bet you are right about ANSI settings. Didn't even think of that!

    ...

    ...

    A few years back I was trying to debug a...

  • RE: Query never finishing

    Each client tool has it's own connection and maybe even different connection settings. For example different values for ANSI_WARNINGS, ANSI_NULLS, QUOTED_IDENTIFIER, etc. can result in different execution plans. Some settings...

Viewing 15 posts - 5,896 through 5,910 (of 6,031 total)