Viewing 15 posts - 946 through 960 (of 1,183 total)
SELECT
dbo.[Web-Registration-Golf].Delegation AS Facility
,ISNULL(COUNT(dbo.[Web-Registration-Golf].StateID), 0) AS Lvl2NonPlayCount
FROM
dbo.[Web-Registration-Golf]
LEFT JOIN dbo.certifs
-- INNER JOIN dbo.certifs
ON...
June 25, 2007 at 11:18 am
This is a way to have multiple versions of one procedure. For example if you create the three procedures below:
CREATE PROCEDURE dbo.test;1
AS
SELECT 1
June 18, 2007 at 9:16 am
I'm not 100% on this, but I don't think the SSMS will install if 2005 SSMS is already on the machine. I believe, you need to uninstall 2005 SSMS and...
June 15, 2007 at 10:51 am
Ravi, in the release notes it states that you may have to manually removed the registry entry. Check the release notes/known issues for details. ...
[EDIT] From the release...
June 9, 2007 at 9:12 am
Lynn, unfortunately your solution seems to take quite a while to run when there are 100,000 + rows.
mrpolecat, your solution runs...
June 8, 2007 at 8:43 pm
mrpolecat wins a piece of PIE for that one.....
June 8, 2007 at 7:00 pm
OK, this is the 2005 forum, that's why I thought you had it.
As far as the file or string question....I don't know, but I'm someone else will answer that one...
June 7, 2007 at 12:07 pm
Wouldn't VARCHAR(MAX) do the trick?
June 7, 2007 at 11:51 am
I can't help you there, I've only just started .NET ...
June 7, 2007 at 11:46 am
My first thought would be to pull the RDL file into memory and manipulate it then save and call the report. Since they're nothing more than XML files, I'm sure...
June 7, 2007 at 10:51 am
Sorry, Anders is correct. You can use dynamic sql, but I try to avoid it...
June 7, 2007 at 10:39 am
If ALL of your label_value's are known then yes, you can. If not, then it can not be done with PIVOT. That's the one downfall with PIVOT that I've come...
June 6, 2007 at 6:57 pm
Can you post the DDL for your table and some sample data along with required results? Your question is fairly straight forward, but without sample data it's hard to exactly...
June 6, 2007 at 4:59 pm
Use two tables instead of Text boxes. Using two identical datasources with a filter on one for >0 and the other with <0.
May 31, 2007 at 4:11 am
Viewing 15 posts - 946 through 960 (of 1,183 total)