Viewing 15 posts - 11,971 through 11,985 (of 26,486 total)
Eugene Elutin (5/15/2012)
Transactions that involve table variables last only for the duration of an update on the table variable. Therefore, table variables require less locking and logging resources. Because table...
May 15, 2012 at 9:05 am
ByronOne (5/15/2012)
=Switch(sum(Fields!YTDBudget.Value)/sum(Fields!YTDActual.Value) -1 <-2.5, "Green", sum(Fields!YTDBudget.Value)/sum(Fields!YTDActual.Value) -1 <=-5.0, "Yellow", sum(Fields!YTDBudget.Value)/sum(Fields!YTDActual.Value) -1 <-5, "Red")
I've tried this but it seems to confuse...
May 15, 2012 at 9:02 am
Jeff Moden (5/14/2012)
...
May 15, 2012 at 8:52 am
I am going to just say we are going to have to agree to disagree. I am not going to say that the Primary Key should most of the...
May 15, 2012 at 8:35 am
chandan_jha18 (5/15/2012)
I had a procedure where there was a condition in where clause:
where ISNULL(d.[RejectReason], 0) IN (240,241,300,301)
The column RejectReason is int,null.
After going through several posts in this forum, I started...
May 15, 2012 at 8:23 am
Eugene Elutin (5/15/2012)
...
Now, for whatever reason, Microsoft by default makes it the clustered index. This is 99% of the time wrong.
The clustered index should be on a better choice,...
May 15, 2012 at 8:18 am
Sean Lange (5/15/2012)
Without some details there is <0% chance that anybody will be offer any...
May 15, 2012 at 8:09 am
You might want to try posting this on an Oracle site. Most of us here are using Microsoft tools to support MS SQL Server.
May 15, 2012 at 7:54 am
Been a while sinceI worked with Informatica, but one of things I remember is the lack of a looping construct. If needed, it required some interesting coding to implement.
I...
May 15, 2012 at 7:53 am
erics44 (5/15/2012)
Is there a way of viewing the tables in management studio by schema?
Id like to be able to expand and collapse schemas to limit the number of tables i...
May 15, 2012 at 7:36 am
Simon-413722 (5/14/2012)
I'm not saying its a good practice and Microsoft definitely doesnt support...
May 14, 2012 at 11:37 pm
Jeff Moden (5/14/2012)
dan-572483 (5/14/2012)
May 14, 2012 at 5:49 pm
Tim Walker. (5/13/2012)
The...
May 14, 2012 at 4:52 pm
Well, we are still waiting for the DDL for the tables (including the index definitions), the code you are running, and the actual execution plans.
May 14, 2012 at 4:46 pm
The downside to more indexes is increased time for inserts/updates/deletes as indexes have to be maintained. Hard to say if the impact will be noticable not since we can't...
May 14, 2012 at 3:56 pm
Viewing 15 posts - 11,971 through 11,985 (of 26,486 total)