Viewing 15 posts - 5,926 through 5,940 (of 14,953 total)
How consistent is the source data? Does it ALWAYS have commas where you've listed them in your samples?
If so, substrings based on the commas should do what you need....
November 22, 2010 at 2:12 pm
Does the union version consistently run indefinitely? Or have you only tried once or twice?
November 22, 2010 at 2:10 pm
How static is the security? Do you have lots of groups, or just a few? Does the group-level security change frequently, or almost never, or somewhere in between?...
November 22, 2010 at 2:08 pm
So, a given date will only have either 2 entries or 4 entries, never 3 or 5 or 6?
Is that correct?
If so, you could use Row_Number() in a CTE to...
November 22, 2010 at 2:05 pm
fn_dblog changed slightly between SQL 2005 and SQL 2008. This was, of course, without notification or documentation. If I remember correctly, it changed from 2000 to 2005 as...
November 22, 2010 at 1:58 pm
You're welcome.
No ratings on this site.
November 22, 2010 at 1:24 pm
I'm not entirely clear on what you mean by "middle dates", but duration queries are usually done by using datediff on the two values.
November 22, 2010 at 1:23 pm
It usually is something as silly and simple as that.
Good job on finding it.
November 22, 2010 at 1:21 pm
You'll probably need to at least pause and restart replication. You might need to drop and re-create subscriptions/publications. It'll be one or the other, most likely.
November 22, 2010 at 1:19 pm
Look at the different execution plans and see what the difference is.
You might end up having to insert into a temp table and then select from that, but most likely...
November 22, 2010 at 12:58 pm
CirquedeSQLeil (11/22/2010)
November 22, 2010 at 12:47 pm
You can partition it based on employee ID and on the date, then order by the time.
Something like this:
-- Test Data: Ignore this and use your table
CREATE TABLE #T (
ID...
November 22, 2010 at 12:45 pm
What you're asking about is called "dynamic SQL".
You'll need to build the query as a string, and then use sp_executesql or exec() to run it.
November 22, 2010 at 12:16 pm
That's why GUIDs are recommended for merge replication.
"Not for replication" will allow replicated rows to be inserted into an identity column, much the same as "set identity_insert on" will. ...
November 22, 2010 at 12:14 pm
Viewing 15 posts - 5,926 through 5,940 (of 14,953 total)