Viewing 15 posts - 1 through 15 (of 20 total)
LOL, I know, I am guessing it's a FUNCTION!!!
September 14, 2005 at 9:38 am
Nope, this proc was undocumented until the last release of books online.
September 14, 2005 at 9:25 am
When the optimizer runs the query, it will first look at the constraints and should rule out using the tables that do not fulfill the contraint. From that it will use...
August 23, 2005 at 9:34 am
Then I would use govinn's solution. I believe you would have to apply a clustered index to the fax number to order the data the way you need it when...
August 23, 2005 at 9:14 am
You sure will receive that error if you transaction fills up. That is why you try to find the max size of your transaction log and set an alert to...
August 23, 2005 at 9:11 am
Wouldn't it be a problem using those sequence numbers if output was in fax number order? What happens when new fax number is added?
August 23, 2005 at 9:06 am
Adding another sequenced number would probably make things more complex.
Given the information I have, I would think you would have to count these records as you go through the resultset...
August 23, 2005 at 9:04 am
First thing is that you want to avoid using auto grow on your transaction logs. Set a hard limit and have SQL report when it is within 10-15% hitting that...
August 23, 2005 at 8:50 am
I am not sure the fax number will help you, but what kind of unique reference are you using?
August 23, 2005 at 8:40 am
I don't think anything is documented. We are implementing SOX too and I am guessing most of these "rules" are coming from someone's hiney. It's all subjective at this point. ...
August 23, 2005 at 8:36 am
If you place constraints on each of your partitioned tables, only the table that matches the constraint will be queried. This is from what I remember from a Seminar at...
August 19, 2005 at 8:58 am
You could try backing up the database and restoring it on your system.
August 19, 2005 at 8:41 am
I agree with Jo, upgrade memory. But you also want to research the offending query.
Questions
What is the level of the locks?
What kind of locks are you experiencing?
August 19, 2005 at 8:40 am
Viewing 15 posts - 1 through 15 (of 20 total)