Viewing 15 posts - 1 through 15 (of 31 total)
From what I see, all you need to do is to remove the first table previous to the comma. I did so below. Since they were both aliased...
May 14, 2015 at 7:26 pm
From my point of view, since there are not any DDL triggers that handle job and job history and you cannot add triggers to system tables, you are really only...
May 13, 2015 at 10:41 pm
Not sure if these are your only problems, but there are too many case keywords in your query, plus way too many elses. I also noted that the first...
May 13, 2015 at 10:13 pm
A couple of things to remember on availability groups. These groups are cluster resources themselves, and thus each server must belong to the same cluster (remote servers are allowed).
Since...
May 13, 2015 at 9:55 pm
Talk about job security, I feel like I have been doing hand to hand combat versus CRM 2013 and it's deficiencies for 2 weeks now.
Here are some of the things...
October 17, 2014 at 8:22 pm
Yes, I use Ola's index tools to work on things.
What I do is dump the output to a table and keep watching things, and adjust the fill factor on the...
October 15, 2014 at 4:43 pm
Things are still not much better in CRM2013, as I hae been supporting this CRM instance from CRM 4 to now. Just finished a dual hop upgrade from CRM...
October 15, 2014 at 11:57 am
I agree, CRM code is bad. So since the sp_executesql was parameterized, and one of the parameters was the filter field of the filtered index, and...
October 15, 2014 at 11:05 am
Hold the control key - and hit zero. Exit the cell to make sure that it changes to null.
September 12, 2005 at 4:52 am
Darren,
I spent a lot of time doing what you have asked at my last job, and found that there are only really a few ways, and they depend on the...
September 7, 2005 at 7:33 am
While you can create three seperate datasets for each item you need, you can also use the following query.
DECLARE @Table1 TABLE (col1 VARCHAR(50),col2 VARCHAR(50),col3 VARCHAR(50),creationdate DATETIME)
DECLARE @Table2 TABLE (col1...
September 7, 2005 at 7:20 am
Have you thought about rebuilding the app to not depend on this identity? That would be the first choice. Failing this, and believe it - that is by far the...
September 2, 2005 at 7:31 am
Thank you again, sushila. And you are correct, the Select Should be as you stated it.
Now...
September 1, 2005 at 7:28 am
Just be forwarned - I despise cursors - and kill them any chance I get.
In any situation that that seems to require cursors - a table variable populated with the...
September 1, 2005 at 7:00 am
Viewing 15 posts - 1 through 15 (of 31 total)