Viewing 15 posts - 22,081 through 22,095 (of 22,102 total)
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...
June 20, 2005 at 6:41 am
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...
June 20, 2005 at 6:39 am
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
June 20, 2005 at 6:30 am
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...
June 17, 2005 at 9:33 am
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...
June 17, 2005 at 9:17 am
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...
June 17, 2005 at 9:02 am
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...
June 17, 2005 at 6:58 am
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...
June 16, 2005 at 8:12 am
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.
June 16, 2005 at 7:41 am
"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...
June 16, 2005 at 7:38 am
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...
June 16, 2005 at 7:25 am
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...
June 2, 2005 at 6:16 am
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.
May 12, 2005 at 11:28 am
"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...
May 12, 2005 at 7:28 am
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...
May 12, 2005 at 6:29 am
Viewing 15 posts - 22,081 through 22,095 (of 22,102 total)