Viewing 15 posts - 61 through 75 (of 81 total)
There are several things in the code that could be leading to the performance problems.
July 12, 2007 at 11:13 am
One more piece of advice if you haven't thought of it already, especially if you are dealing with very large databases. If you want to minimize down time during the...
July 12, 2007 at 10:08 am
I'm curious as to why you would get 100,000,000 rows after the join. Many to many I suppose.
Otherwise, I'm out of ideas without seeing the structure of the views.
July 11, 2007 at 11:45 pm
You might want to check out the FileSystemObject and the File objects in VBScript. There are lots of methods and properties that will give you more options. And of course...
July 11, 2007 at 11:10 pm
I just want to emphasize the earlier comment about VERIFY not checking the validity of the data contained in the backup. More than a few DBAs have been burned by...
July 11, 2007 at 11:04 pm
Is sql server running on a non-default port? If so, does your XYZ user's machine have an alias set up for the sql server running on the correct port?
July 11, 2007 at 10:39 pm
I think you'll need to post the structure of the 2 views to get any solid advice from this forum.
But... you can look at indexes on join fields and WHERE clauses, both...
July 11, 2007 at 10:07 pm
Personally, I prefer a rebuilt server to an uninstall. (I've never had much confidence in an uninstall of any kind). Of course that depends on your confidence in getting everything...
July 11, 2007 at 9:43 pm
There are quite a few versions of Block Monitoring out on the web. Here is one that I found and doctored up a bit. I have the procedure running in...
July 11, 2007 at 9:36 pm
Ben,
You mentioned that there are indexes on all join columns, but are there indexes on the fields in the WHERE clause?
July 11, 2007 at 9:14 pm
The default directories can be set at the server level.
Go to properties, database settings and you will see a place for Database default locations. This is the same in both...
July 10, 2007 at 11:45 am
/* One way is to use the system tables to find the default constraint name if it exists, then use dynamic sql to drop it.
Of course,...
July 10, 2007 at 11:40 am
Just by eyeballing the code:
June 22, 2007 at 12:19 pm
I prefer to write my own queries off of sysprocesses. If you have lots of users, applications, or databases, filtering things out in a where clause is the way to...
June 19, 2007 at 10:32 pm
Not that I am aware of.
June 1, 2007 at 2:09 pm
Viewing 15 posts - 61 through 75 (of 81 total)