Viewing 15 posts - 14,176 through 14,190 (of 14,953 total)
You might also want to take a look at the Pivot command in Books Online. That might do what you need.
April 16, 2008 at 1:29 pm
http://www.Simple-Talk.com (another of RedGate's pages), has an "SQL Pretifier" on it. There's a link on the front page. It will do that kind of color-coding.
April 16, 2008 at 1:20 pm
Just to be clear: Are you doing this calculation in a query in the database, or in some reporting application?
If it's a query in the database, I can probably help...
April 16, 2008 at 1:18 pm
Jeff Moden (4/16/2008)
April 16, 2008 at 1:11 pm
Take a look at IsNull() and Coalesce() in Books Online. They'll do what you need.
April 16, 2008 at 12:56 pm
What I'm seeing in the execution plan is mainly a cursor that should probably be replaced with an update command. If you're having trouble with the query, most likely...
April 16, 2008 at 11:19 am
There are a couple of ways to do this. One is:
select sum(col1), sum(col2),...
from
(select col1, col2, ...
from dbo.table1
union all
select -1 * col1, -1 * col2, ...
from dbo.table2) Sub
That will...
April 16, 2008 at 11:15 am
Jeff, I love it! I'd reverse the 2nd and 3rd, but it's still quite good.
On the article, I agree with the philosophy that the software exists only to serve...
April 16, 2008 at 9:17 am
I don't think it's possible. (Based on your post title, not the text. What you ask in the actual post is definitely possible.)
April 16, 2008 at 8:32 am
Glad we could help.
April 16, 2008 at 8:26 am
I have something similar happen before when one or more of the variables was null. Can you check for that?
April 16, 2008 at 8:26 am
SQL Server Express doesn't include SQL Server Agent. That's one possibility here.
April 16, 2008 at 8:24 am
Another option is to add a Timestamp (rowversion) column to the table, record that as varbinary in the history table, and compare records on that. Since the timestamp column...
April 16, 2008 at 8:22 am
The reason it's not working is because you can't have "select @TempTable.*" in a query. Also can't use the table variable name that way in Where, Having, Group By...
April 16, 2008 at 8:15 am
Since the temp table is created by dynamic SQL, it is only accessible within the same dynamic SQL.
You either need to add your inserts/updates/deletes and your final select, to the...
April 16, 2008 at 8:09 am
Viewing 15 posts - 14,176 through 14,190 (of 14,953 total)