Viewing 10 posts - 1 through 10 (of 10 total)
Regarding the other "stuff" going on in the plan that uses the missing index recommendation definition (Nested Loops Join and Merge Interval operator branch), it's producing two rows that identify...
March 2, 2021 at 12:30 am
Missing index recommendations do not take into account cardinality, statistics, etc. when generating column order; they're grouped by equality predicate(s), inequality predicate(s), and include column(s) to possibly produce a covering...
March 1, 2021 at 11:42 pm
In short, I am dropping the subscription, removing the article from the publication, dropping the column, performing any DML statements, adding the article back to the publication, and recreating the...
January 20, 2011 at 9:15 am
I tried setting it to false via the GUI and experienced the same results--dropping a column at the publisher replicates to the subscriber.
When I executed the query against the publication...
January 19, 2011 at 4:55 pm
In case anyone is wondering, I was able to find a solution for this.
Drop the subscription(s)
Update the schema
Re-create the subscription setting the property @sync_type to 'replication support only'
See the SQL...
April 6, 2009 at 12:19 pm
I was able to retrieve data using a Linked Server if I specified the security context to use to access the Active Directory server. (The server running SQL Server...
June 27, 2008 at 1:17 pm
I have not tested whether the query will work but shouldn't the locking hint be moved to the FROM statement rather than the GROUP BY statement.
FROM WITH (NOLOCK)
GROUP...
May 7, 2008 at 9:40 pm
I think COUNT(DISTINCT a.SalesID) is needed. Otherwise, the value is 4 instead of 2. At least that is what occurred on my test.
SELECT a.userid,
...
April 3, 2008 at 2:04 pm
When is it appropriate to use code page 850? I cannot seem to find any details on this collation. At my previous employer, it was a company standard...
April 1, 2008 at 10:05 am
Thank you for your reply.
The problem being reported, I believe, was string truncation--which I know has to do with the length of data attempting to be inserted into the column....
April 1, 2008 at 9:00 am
Viewing 10 posts - 1 through 10 (of 10 total)