Forum Replies Created

Viewing 15 posts - 22,081 through 22,095 (of 22,102 total)

  • RE: finding out WHY the app won''''t connect

    Do you get an error, or just a blank screen? I ask because I've been getting network packet size errors when trying to connect and found that there's apparently an...

  • RE: C# SQL Server Project in VS 2005

    I don't think it installs a full version of VS. I got VS as a seperate install and did that on top of the SQL Server install and then had...

  • RE: nested stored procedure compile

    I don't know the answer to this question, but it intrigued me so I did a quick experiment. I ran this query:

    select

    o.name

  • RE: Moving user roles to another server/database

    True. And, assuming you're only going to run the scripts and then drop the linked server, it's not that big a deal. However, it is a bad practice from a...

  • 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...

Viewing 15 posts - 22,081 through 22,095 (of 22,102 total)