Forum Replies Created

Viewing 15 posts - 22,111 through 22,125 (of 22,128 total)

  • RE: sp_executesql issue

    Permissions on that proc are set to 'public', so it should work. Can you see it in the master database?

    This worked fine when I tested it locally:

    declare @sql...

  • RE: Moving user roles to another server/database

    I wouldn't add a linked server to production due to the security concerns that could raise.

    Otherwise, the cursor option above or maybe an app that uses SQLDMO. DBArtisan will allow...

  • RE: What is the best solution: a long stored procedure or several sql queries?

    Honest answer... It depends.

    However, if your query is taking 10 minutes, I'd examine exactly what it is that you're doing as far as the basic process goes. Are you moving...

  • RE: Recovery to a Point in Time

    We have an emergency response team that practices recoveries from various issues once a month. Almost all them involves restoring to a point in time. There's nothing worse than have...

  • RE: Recovery to a Point in Time

    One thing not mentioned in the article, if possible, take one more log backup. If not possible, you may lose 9 minutes worth of data.

  • RE: Recovery to a Point in Time

    "Yes, there's the rub. How do you get the users out of the system and lock it down? We do not have a DBA...

  • RE: The DBA Whoops

    Great article. Good advice. Thanks for sharing.

    The only thing worse than noticing the issue right after you hit the Enter key is not noticing the issue. We've had a few...

  • RE: Disappearing DBAs

    I have to say, I think both articles are right. I see the role of Production DBA seeming to shrink in terms of importance even as it becomes a more clearly defined role...

  • RE: Using OpenXML

    That's good to know. We were doing it for performance reasons, not because of failures in the code, but if we dodged a bullet, so much the better.

  • RE: Using OpenXML

    "can we also use a path where the XML file exists."

    I'm pretty sure that you can't reference files directly from within TSQL. If you really, really HAD to do...

  • RE: Using OpenXML

    Nice article.

    You might consider adding information about performance management. For example, maintaining the document handle across multiple queries and/or procedure calls is pretty expensive. Generally, if we run into a...

  • RE: Simon Says

    We've been using SQL Data Compare for a couple of years and SQL Compare for just over a year and we've been extremely happy with the tools. Further, we're happy...

  • RE: Best Practices for Database Design

    By the way, the title of this article is misleading. I expected to see something about natural versus artificial keys, unique constraints, resolving sub-type roll-ups, logical arcs, denormalization by design,...

  • RE: Best Practices for Database Design

    Naming standards are very good things. Common abbreviations are very good things.

    Very good things can, however, be taken to silly extremes. We've got a logical modeling team tasked with, along with...

  • RE: Migration to Production

    Thanks for the input. We are going to look at dbGhost since we're in the process of reworking how we do our development and QA processes and planning on working...

Viewing 15 posts - 22,111 through 22,125 (of 22,128 total)