Forum Replies Created

Viewing 15 posts - 91 through 105 (of 469 total)

  • RE: Self Service SQL

    Peter Trast (5/15/2012)


    Don't trust users with infrastructure.

    That's a great general rule but there can be places it works well. The trick is that it's going to take work up...

  • RE: SQL Server Agent Proxies

    HanShi (5/15/2012)


    I answered this from the top of my head and thought the folder would be visible but not able to expand and/or view.

    I was wondering if that was the...

  • RE: Weird SQl server reboots, what to look for?

    Are there any indications when it's in single user mode that something is trying to run in that DB? Something may be running in the context of that DB...

  • RE: SQL Injection Vulnerability Question

    GilaMonster (5/9/2012)


    No, that code as you posted can't have any SQL injected.

    ....

    To have a SQL Injection vulnerability requires that some user input be concatenated into an build up string which...

  • RE: help with date query

    GETDATE() returns a datetime type that does include the time. Try this instead to get just the date:

    convert(date,GETDATE())

  • RE: Testing restore...

    One thing you may want to do beyond just the restore is run a checkdb against the restored database. That way you know not only that it restores but...

  • RE: MS or 3rd party tools for Hardening / Auditing SQL Server

    You may also want to check out Securing SQL Server by Denny Cherry[/url]. There's a new edition coming out soon with SQL 2012 and a bunch of other new...

  • RE: Promoting Engineers

    I actually have moved to management and then back down at the same company. I and three others got promoted to Team Leads as our support team grew. ...

  • RE: Error 502: Bad Gateway

    Well that's not terribly useful then, is it. There must be something that the app is doing differently than when you are calling it through SSMS. If possible...

  • RE: copy database

    The database name you put in isn't there. Either there's a typo or you're on a case sensitive install. Try putting the name in exactly as it appears...

  • RE: Backups and log shipping

    Once they have been restored the backups can be deleted. However, it may be wise to keep them around for a time in case you need to restore to...

  • RE: Clustering Services

    There is a "Cluster Service" in Windows for a cluster and that may be what they're referring to. If there's any doubt I would ask them to clarify to...

  • RE: Error 502: Bad Gateway

    If you run the query in SSMS what's the error you get?

  • RE: Blocking problem

    I'm assuming the update is doing a seek and only updating one row. If not you want to take a look at the query and see what you can...

  • RE: Blocking problem

    How bad is the blocking? If the transaction just has that one statement in it it'll be fairly short lived and shouldn't block anything for long. What's the...

Viewing 15 posts - 91 through 105 (of 469 total)