Viewing 15 posts - 5,416 through 5,430 (of 9,643 total)
I believe you need to set the value to be an expression like this:
="A"
April 13, 2009 at 5:56 am
Jeff Moden (4/11/2009)
Looking forward to finally meeting some of you good folks.
So am I. The nice thing is I'm not expecting to be selected so I feel no...
April 11, 2009 at 11:58 am
I didn't even know that GOTO existed in T-SQL until I had been programming in it for 2 years. I can see the possibility for its use as Gail...
April 11, 2009 at 9:45 am
stevet (4/10/2009)
April 10, 2009 at 8:27 pm
I did some studying for the exams for SQL Server 2000 at one point, but so much seemed to be EE, clustering, etc..., all stuff I didn't use that I...
April 10, 2009 at 7:04 pm
I am against encrypting procedures. I understand people being concerned IP rights, but if you are that concerned, put that logic in the application, not the database. The...
April 10, 2009 at 8:16 am
Have you posted the entire set of SQL Statements you are trying to run? I don't see any reference to the column "num" in anything you posted other than...
April 10, 2009 at 7:57 am
You can specify a scope to the SUM function so you could try this in the footer:
=Sum(Fields!Column.Value, "DateGroupName")
April 9, 2009 at 1:23 pm
Here's one where the OP solved his own problem while forming his question.
April 9, 2009 at 11:05 am
Thanks Manie.
You can use the default trace to check for login failures, here's an idea on how:
SELECT
I.*
FROM
sys.traces T CROSS Apply
...
April 9, 2009 at 10:10 am
How about adding a Group Footer for date and doing the SUM there. IF that works you can remove the table footer.
April 9, 2009 at 9:34 am
Are you running McAfee anti-virus? If you are then the "Prevent mass mailing worms from sending mail" Access Protection rule is probably blocking Database Mail. You need to...
April 9, 2009 at 8:49 am
Okay, I think I understand your issue. Based on all you have shared, you are correct in assuming that you are summing the repeating value in each row. ...
April 9, 2009 at 8:46 am
Have you posted all the code you are running? When I run this (I have to create the table first since I don't have it):
IF OBJECT_ID('temp') IS NOT NULL
...
April 9, 2009 at 8:26 am
Are you using an Application Role? If you are you may be able to do something to get the Windows user name based on the BOL entry for sp_setapprole.
April 9, 2009 at 8:11 am
Viewing 15 posts - 5,416 through 5,430 (of 9,643 total)