Forum Replies Created

Viewing 15 posts - 16,996 through 17,010 (of 39,902 total)

  • RE: Critique - Common SQL Server Mistakes

    Good point. I'll change the wording to say what the mistake is. Do you think

    - writing single row triggers

    or

    - not coding triggers for multiple rows

    is better?

  • RE: Is this a Proper Backup?

    If you have a second server, then I would raise the potential issues, but not too hard. Likely you are protected enough for now.

    I would make sure the backups move...

  • RE: Critique - Common SQL Server Mistakes

    The NULL mistake is that people often write

    where a.col = null

    instead of

    where a.col is null

    The multi-row trigger is the same. Developers assume triggers fire once per row, instead of...

  • RE: Is this a Proper Backup?

    You really need to read up on how backups work, but here's the basic theory. Lets' assume you back up on Sat for your full. You then have

    - Sat Full

    -...

  • RE: Is this a Proper Backup?

    1) Is that all I need to safeguard the database given that I only need to restore, if necessary, to the previous day or am I missing something?

    - All you...

  • RE: Why Doesnt This Work?

    Justin 17041 (1/20/2011)


    I have it not i am using a program that auto populates a data base but it doesn't put data where it should like even though it says...

  • RE: Critique - The Modern Resume

    Thanks, will be interested to hear if it matches the talk.

  • RE: Copying MDF causes it to become read-only

    Add the permissions for full control to the Network Service account for that file or folder. Perhaps they are not there.

  • RE: Critique - Common SQL Server Mistakes

    Good feedback on this, however I'm more wondering if you think the abstract is well written. Does it make you want to go, or not go, to the session?

  • RE: Copying MDF causes it to become read-only

    Check under Configuration Manager for the instance and see which account SQL Server runs under. Then check the permissions for that account on that folder.

  • RE: The Importance of My Cloud Data

    One caveat here, it might be good for some things. So maybe you want your remote application to look up product information from a cloud db instead of coming back...

  • RE: Why Doesnt This Work?

    You likely need something like this:

    From Orders o

    Inner Join OrderDetails od

    ON o.orderid = od.orderid

    Inner Join Products p

    on...

  • RE: Are the posted questions getting worse?

    New forum for speakers. Critique abstracts and titles. I would love the feedback from people that actually go to sessions and try to decide what's good and bad.

    http://www.sqlservercentral.com/Forums/Forum2889-1.aspx

  • RE: Are the posted questions getting worse?

    Stefan Krzywicki (1/20/2011)


    My favorite was one that wanted 5+ years experience in VB.Net in 2001.

    I think that I saw that job as well. Saw a few similar ones asking for...

  • RE: Restore

    SanDroid (1/20/2011)


    That is understood an not relevant in the least to my point.

    The question was the types of restore supported, not the restore commands supported. Wording is everyting in...

Viewing 15 posts - 16,996 through 17,010 (of 39,902 total)