Viewing 15 posts - 121 through 135 (of 519 total)
A covered index is one which contains all fields referenced by the query. In this case, the query gets ALL its data from the index, and never touches the table...
April 10, 2003 at 10:51 am
I look at execution plans with temp tables in them all the time. I do not know of any reason you should not be able to do the same. Or...
April 10, 2003 at 10:41 am
The bookmark lookup can be eliminated altogether by modifying your index to be a covered index and I noticed that no-one had mentioned that. There's no guarantee that it would...
April 9, 2003 at 11:33 am
Let me go about explaining this in a diffeent manner, as I think you are missing my point.
A primary key uniquely identifies a row in a table by definition. In...
April 8, 2003 at 7:03 pm
Yep, once for each article.
The idea of metadata has been around for many many years. I just apply it to this the same as anything else, and I really can't...
April 8, 2003 at 6:50 pm
Yes, but you have to itterate through the articles you want the subscriptions to.
Use:
sp_addsubscription @publication = 'publication'
, @article = 'article'
...
April 7, 2003 at 2:43 pm
So long as it is truely a dedicated SQL Server, I have never had any problem with eliminating it altogether, or reducing it to absolute minimum. Start running IIS, or...
April 7, 2003 at 8:33 am
You were not rude, and I certianly didn't take it that way. I honestly wanted to know why it wouldn't work for you, as I felt I might learn somrthing....
April 4, 2003 at 7:15 pm
LMAO....excellent points.....and I can't argue what IS in the world.
I guess I'm just too much a stickler on what should be, and best practice.
April 4, 2003 at 12:03 pm
That's what I was talking about. And yes, this weekend I will write it up as a document and publish it here for everyone. I verified yesterday that nothing goes...
April 4, 2003 at 7:58 am
If you use the filter options I referred to and used push replication, the filter would be applied at the publisher. Also, a good approach if you do not intend...
April 4, 2003 at 7:53 am
Due to ANSI standards the order of records returned to you is not guaranteed by SQL Server. This is true. Using an order by clause is the proper way to...
April 4, 2003 at 2:04 am
Shoot me an e-mail with the detials, my address is in my profile. I am interested enough to look at it.
April 4, 2003 at 1:33 am
In the situations I've seen, the values were calculated from the previous days values, so If a value changed two weeks ago, every value from that point forward would have...
April 4, 2003 at 1:26 am
Viewing 15 posts - 121 through 135 (of 519 total)